From 178aea91060572671270db3960fb9ced535d550a Mon Sep 17 00:00:00 2001
From: George Fu
Date: Fri, 6 Oct 2023 15:49:32 -0400
Subject: [PATCH 01/35] test: add more randomness to bucketNames (#5332)
---
.../src/region-redirect-middleware.e2e.spec.ts | 15 ++++++++++-----
1 file changed, 10 insertions(+), 5 deletions(-)
diff --git a/packages/middleware-sdk-s3/src/region-redirect-middleware.e2e.spec.ts b/packages/middleware-sdk-s3/src/region-redirect-middleware.e2e.spec.ts
index 7d68644570d0b..7c075f61680d3 100644
--- a/packages/middleware-sdk-s3/src/region-redirect-middleware.e2e.spec.ts
+++ b/packages/middleware-sdk-s3/src/region-redirect-middleware.e2e.spec.ts
@@ -15,10 +15,15 @@ describe("S3 Global Client Test", () => {
let callerID = null as unknown as GetCallerIdentityCommandOutput;
let bucketNames = [] as string[];
+ // random element limited to 2 letters to avoid concurrent IO, and
+ // to limit bucket count to 676 if there is failure to delete them.
+ const alphabet = "abcdefghijklmnopqrstuvwxyz";
+ const randId = alphabet[(Math.random() * alphabet.length) | 0] + alphabet[(Math.random() * alphabet.length) | 0];
+
beforeAll(async () => {
- jest.setTimeout(500000);
+ jest.setTimeout(60000);
callerID = await stsClient.getCallerIdentity({});
- bucketNames = regionConfigs.map((config) => `${callerID.Account}-redirect-${config.region}`);
+ bucketNames = regionConfigs.map((config) => `${callerID.Account}-${randId}-redirect-${config.region}`);
await Promise.all(bucketNames.map((bucketName, index) => deleteBucket(s3Clients[index], bucketName)));
await Promise.all(bucketNames.map((bucketName, index) => s3Clients[index].createBucket({ Bucket: bucketName })));
});
@@ -35,7 +40,7 @@ describe("S3 Global Client Test", () => {
await s3Client.putObject({ Bucket: bucketName, Key: objKey, Body: testValue });
}
}
- }, 50000);
+ }, 60000);
it("Should be able to get objects following region redirect", async () => {
// Fetch and assert objects
@@ -47,7 +52,7 @@ describe("S3 Global Client Test", () => {
expect(data).toEqual(testValue);
}
}
- }, 50000);
+ }, 60000);
it("Should delete objects following region redirect", async () => {
for (const bucketName of bucketNames) {
@@ -56,7 +61,7 @@ describe("S3 Global Client Test", () => {
await s3Client.deleteObject({ Bucket: bucketName, Key: objKey });
}
}
- }, 50000);
+ }, 60000);
});
async function deleteBucket(s3: S3, bucketName: string) {
From d0978841d16f6a1293b7350863c1c4f8545a75e8 Mon Sep 17 00:00:00 2001
From: George Fu
Date: Fri, 6 Oct 2023 15:49:49 -0400
Subject: [PATCH 02/35] chore: update bug-report.yml (#5314)
---
.github/ISSUE_TEMPLATE/bug-report.yml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml
index 8a9c9f6be6f4b..3f6e340918e9d 100644
--- a/.github/ISSUE_TEMPLATE/bug-report.yml
+++ b/.github/ISSUE_TEMPLATE/bug-report.yml
@@ -94,6 +94,7 @@ body:
attributes:
label: Additional Information/Context
description: |
- Anything else that might be relevant for troubleshooting this bug. Providing context helps us come up with a solution that is most useful in the real world.
+ Anything else that might be relevant for troubleshooting this bug. Providing context helps us come up with a solution that is most useful in the real world.
+ If you believe the issue may be related to Smithy code generation, add the smithy-codegen label.
validations:
required: false
From 7cac08f9d0fca42cd28f35002c0c306fc1ef419f Mon Sep 17 00:00:00 2001
From: George Fu
Date: Fri, 6 Oct 2023 15:52:05 -0400
Subject: [PATCH 03/35] docs: update README.md in smithy-aws-typescript (#5316)
* docs: update README.md in smithy-aws-typescript
* docs: update README.md
---
codegen/README.md | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/codegen/README.md b/codegen/README.md
index 20dedc5876303..adc5d0b5041ce 100644
--- a/codegen/README.md
+++ b/codegen/README.md
@@ -2,6 +2,12 @@
This package is used to build each client in the SDK.
+The code generation stack is made up of 3 components:
+
+ 1. [Smithy](https://github.com/smithy-lang/smithy) - the core libraries for code generation. They are not intended to contain anything specific to TypeScript or AWS SDKs.
+ 2. [Smithy-TypeScript](https://github.com/awslabs/smithy-typescript) - This uses Smithy to generate code for the TypeScript (JavaScript) language runtimes. While this is maintained by AWS, it is not intended to contain anything specific to AWS.
+ 3. [Smithy-AWS-TypeScript](https://github.com/aws/aws-sdk-js-v3/tree/docs/readme/codegen) - This is the component here in the AWS SDK for JavaScript (v3) repository. It uses the two upstream components, Smithy and Smithy-TypeScript, to generate the AWS SDK for JavaScript (v3). Anything specific to AWS should only be found in this package.
+
## Building
By running `./gradlew :sdk-codegen:build`, this package will:
From 2fe0a883f8e5bb8ab855874072be62bc07441762 Mon Sep 17 00:00:00 2001
From: George Fu
Date: Fri, 6 Oct 2023 15:52:42 -0400
Subject: [PATCH 04/35] fix(lib-dynamodb): add e2e suite and bug fixes for
lib-dynamodb (#5306)
* fix(lib-dynamodb): add e2e suite for lib-dynamodb
* fix(lib-dynamodb): passing e2e tests
* fix(lib-dynamodb): fix unit tests
* fix(lib-dynamodb): make utils.spec non-generated
* fix(lib-dynamodb): add additional e2e tests
* fix: remove unused imports
* test: more e2e cases
* fix(lib-dynamodb): e2e scenarios WIP
* fix(lib-dynamodb): use more readable keynode format
* fix: update packages/util-dynamodb/src/unmarshall.ts
Co-authored-by: Trivikram Kamat <16024985+trivikr@users.noreply.github.com>
* fix(lib-dynamodb): use random table name and drop table after test
---------
Co-authored-by: Trivikram Kamat <16024985+trivikr@users.noreply.github.com>
---
.../codegen/AddDocumentClientPlugin.java | 14 -
.../DocumentClientCommandGenerator.java | 53 +-
.../codegen/doc-client-utils.spec.ts | 144 -----
.../typescript/codegen/doc-client-utils.ts | 60 --
lib/lib-dynamodb/jest.config.e2e.js | 5 +
lib/lib-dynamodb/package.json | 3 +-
.../DynamoDBDocumentClientCommand.spec.ts | 6 +-
.../DynamoDBDocumentClientCommand.ts | 11 +-
.../commands/BatchExecuteStatementCommand.ts | 22 +-
.../src/commands/BatchGetCommand.ts | 33 +-
.../src/commands/BatchWriteCommand.ts | 52 +-
.../src/commands/DeleteCommand.ts | 27 +-
.../src/commands/ExecuteStatementCommand.ts | 12 +-
.../src/commands/ExecuteTransactionCommand.ts | 17 +-
lib/lib-dynamodb/src/commands/GetCommand.ts | 9 +-
lib/lib-dynamodb/src/commands/PutCommand.ts | 27 +-
lib/lib-dynamodb/src/commands/QueryCommand.ts | 30 +-
lib/lib-dynamodb/src/commands/ScanCommand.ts | 23 +-
.../src/commands/TransactGetCommand.ts | 19 +-
.../src/commands/TransactWriteCommand.ts | 45 +-
.../src/commands/UpdateCommand.ts | 34 +-
.../src/commands/marshallInput.spec.ts | 50 +-
lib/lib-dynamodb/src/commands/utils.spec.ts | 129 ++--
lib/lib-dynamodb/src/commands/utils.ts | 105 +++-
.../src/test/lib-dynamodb.e2e.spec.ts | 570 ++++++++++++++++++
packages/util-dynamodb/src/convertToAttr.ts | 6 +-
packages/util-dynamodb/src/convertToNative.ts | 4 +-
packages/util-dynamodb/src/marshall.ts | 14 +-
packages/util-dynamodb/src/unmarshall.ts | 24 +-
scripts/generate-clients/single-service.js | 10 +
30 files changed, 1060 insertions(+), 498 deletions(-)
delete mode 100644 codegen/smithy-aws-typescript-codegen/src/main/resources/software/amazon/smithy/aws/typescript/codegen/doc-client-utils.spec.ts
delete mode 100644 codegen/smithy-aws-typescript-codegen/src/main/resources/software/amazon/smithy/aws/typescript/codegen/doc-client-utils.ts
create mode 100644 lib/lib-dynamodb/jest.config.e2e.js
create mode 100644 lib/lib-dynamodb/src/test/lib-dynamodb.e2e.spec.ts
diff --git a/codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/AddDocumentClientPlugin.java b/codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/AddDocumentClientPlugin.java
index 941ee73e494f5..2e06fdc516d2a 100644
--- a/codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/AddDocumentClientPlugin.java
+++ b/codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/AddDocumentClientPlugin.java
@@ -33,7 +33,6 @@
import software.amazon.smithy.typescript.codegen.TypeScriptSettings;
import software.amazon.smithy.typescript.codegen.TypeScriptWriter;
import software.amazon.smithy.typescript.codegen.integration.TypeScriptIntegration;
-import software.amazon.smithy.utils.IoUtils;
import software.amazon.smithy.utils.SmithyInternalApi;
/**
@@ -125,19 +124,6 @@ private void writeAdditionalFiles(
writer.write("export * from './$L';", DocumentClientUtils.CLIENT_NAME);
writer.write("export * from './$L';", DocumentClientUtils.CLIENT_FULL_NAME);
});
-
- String utilsFileLocation = String.format("%s%s", DocumentClientUtils.DOC_CLIENT_PREFIX,
- DocumentClientUtils.CLIENT_UTILS_FILE);
- writerFactory.accept(String.format("%s%s/%s.ts", DocumentClientUtils.DOC_CLIENT_PREFIX,
- DocumentClientUtils.CLIENT_COMMANDS_FOLDER, DocumentClientUtils.CLIENT_UTILS_FILE), writer -> {
- writer.write(IoUtils.readUtf8Resource(AddDocumentClientPlugin.class,
- String.format("%s.ts", utilsFileLocation)));
- });
- writerFactory.accept(String.format("%s%s/%s.spec.ts", DocumentClientUtils.DOC_CLIENT_PREFIX,
- DocumentClientUtils.CLIENT_COMMANDS_FOLDER, DocumentClientUtils.CLIENT_UTILS_FILE), writer -> {
- writer.write(IoUtils.readUtf8Resource(AddDocumentClientPlugin.class,
- String.format("%s.spec.ts", utilsFileLocation)));
- });
}
}
diff --git a/codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/DocumentClientCommandGenerator.java b/codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/DocumentClientCommandGenerator.java
index 947ffbf2feb09..4815634a06620 100644
--- a/codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/DocumentClientCommandGenerator.java
+++ b/codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/DocumentClientCommandGenerator.java
@@ -134,10 +134,10 @@ public void run() {
() -> {
// Section for adding custom command properties.
writer.pushState(COMMAND_PROPERTIES_SECTION);
- writer.openBlock("protected readonly $L = [", "];", COMMAND_INPUT_KEYNODES, () -> {
+ writer.openBlock("protected readonly $L = {", "};", COMMAND_INPUT_KEYNODES, () -> {
writeKeyNodes(inputMembersWithAttr);
});
- writer.openBlock("protected readonly $L = [", "];", COMMAND_OUTPUT_KEYNODES, () -> {
+ writer.openBlock("protected readonly $L = {", "};", COMMAND_OUTPUT_KEYNODES, () -> {
writeKeyNodes(outputMembersWithAttr);
});
writer.popState();
@@ -220,7 +220,7 @@ private void generateCommandMiddlewareResolver(String configType) {
private void writeKeyNodes(List membersWithAttr) {
for (MemberShape member: membersWithAttr) {
- writer.openBlock("{key: '$L', ", "},", symbolProvider.toMemberName(member), () -> {
+ writer.openBlock("'$L': ", ",", symbolProvider.toMemberName(member), () -> {
writeKeyNode(member);
});
}
@@ -230,9 +230,21 @@ private void writeKeyNode(MemberShape member) {
Shape memberTarget = model.expectShape(member.getTarget());
if (memberTarget instanceof CollectionShape) {
MemberShape collectionMember = ((CollectionShape) memberTarget).getMember();
- writeKeyNode(collectionMember);
+ Shape collectionMemberTarget = model.expectShape(collectionMember.getTarget());
+ if (collectionMemberTarget.isUnionShape()
+ && symbolProvider.toSymbol(collectionMemberTarget).getName().equals("AttributeValue")) {
+ writer.addImport("ALL_MEMBERS", null, "../src/commands/utils");
+ writer.write("ALL_MEMBERS // set/list of AttributeValue");
+ return;
+ }
+ writer.openBlock("{", "}", () -> {
+ writer.write("'*':");
+ writeKeyNode(collectionMember);
+ });
} else if (memberTarget.isUnionShape()) {
if (symbolProvider.toSymbol(memberTarget).getName().equals("AttributeValue")) {
+ writer.addImport("SELF", null, "../src/commands/utils");
+ writer.write("SELF");
return;
} else {
// An AttributeValue inside Union is not present as of Q1 2021, and is less
@@ -241,29 +253,30 @@ private void writeKeyNode(MemberShape member) {
"AttributeValue inside Union is not supported, attempted for %s", memberTarget.getType()
));
}
- } else {
- if (memberTarget.isMapShape()) {
- MemberShape mapMember = ((MapShape) memberTarget).getValue();
- Shape mapMemberTarget = model.expectShape(mapMember.getTarget());
- if (mapMemberTarget.isUnionShape()
- && symbolProvider.toSymbol(mapMemberTarget).getName().equals("AttributeValue")) {
- return;
- } else {
- writer.openBlock("children: {", "},", () -> {
- writeKeyNode(mapMember);
- });
- }
- } else if (memberTarget.isStructureShape()) {
- writeStructureKeyNode((StructureShape) memberTarget);
+ } else if (memberTarget.isMapShape()) {
+ MemberShape mapMember = ((MapShape) memberTarget).getValue();
+ Shape mapMemberTarget = model.expectShape(mapMember.getTarget());
+ if (mapMemberTarget.isUnionShape()
+ && symbolProvider.toSymbol(mapMemberTarget).getName().equals("AttributeValue")) {
+ writer.addImport("ALL_VALUES", null, "../src/commands/utils");
+ writer.write("ALL_VALUES // map with AttributeValue");
+ return;
+ } else {
+ writer.openBlock("{", "}", () -> {
+ writer.write("'*':");
+ writeKeyNode(mapMember);
+ });
}
+ } else if (memberTarget.isStructureShape()) {
+ writeStructureKeyNode((StructureShape) memberTarget);
}
}
private void writeStructureKeyNode(StructureShape structureTarget) {
List membersWithAttr = getStructureMembersWithAttr(Optional.of(structureTarget));
- writer.openBlock("children: [", "],", () -> {
+ writer.openBlock("{", "}", () -> {
for (MemberShape member: membersWithAttr) {
- writer.openBlock("{key: '$L', ", "},", symbolProvider.toMemberName(member), () -> {
+ writer.openBlock("'$L': ", ",", symbolProvider.toMemberName(member), () -> {
writeKeyNode(member);
});
}
diff --git a/codegen/smithy-aws-typescript-codegen/src/main/resources/software/amazon/smithy/aws/typescript/codegen/doc-client-utils.spec.ts b/codegen/smithy-aws-typescript-codegen/src/main/resources/software/amazon/smithy/aws/typescript/codegen/doc-client-utils.spec.ts
deleted file mode 100644
index aaff6ed98d14d..0000000000000
--- a/codegen/smithy-aws-typescript-codegen/src/main/resources/software/amazon/smithy/aws/typescript/codegen/doc-client-utils.spec.ts
+++ /dev/null
@@ -1,144 +0,0 @@
-import { marshall, unmarshall } from "@aws-sdk/util-dynamodb";
-
-import { marshallInput, unmarshallOutput } from "./utils";
-
-jest.mock("@aws-sdk/util-dynamodb");
-
-describe("utils", () => {
- const notAttrValue = { NotAttrValue: "NotAttrValue" };
-
- const attrValue = (num: number) => ({ id: { N: num } });
- const nativeAttrValue = (num: number) => ({ id: num });
-
- const testCases = [
- {
- testName: "single key",
- keyNodes: [{ key: "Item" }],
- attrObj: { Item: attrValue(1), ...notAttrValue },
- nativeAttrObj: { Item: nativeAttrValue(1), ...notAttrValue },
- processCalledTimes: 1,
- },
- {
- testName: "multiple keys",
- keyNodes: [{ key: "Item1" }, { key: "Item2" }],
- attrObj: { Item1: attrValue(1), Item2: attrValue(2), ...notAttrValue },
- nativeAttrObj: { Item1: nativeAttrValue(1), Item2: nativeAttrValue(2), ...notAttrValue },
- processCalledTimes: 2,
- },
- {
- testName: "array",
- keyNodes: [{ key: "Items" }],
- attrObj: { Items: [attrValue(1), attrValue(2)], ...notAttrValue },
- nativeAttrObj: { Items: [nativeAttrValue(1), nativeAttrValue(2)], ...notAttrValue },
- processCalledTimes: 2,
- },
- {
- testName: "secondary level",
- keyNodes: [{ key: "Parent", children: [{ key: "Item" }] }],
- attrObj: { Parent: { Item: attrValue(1), ...notAttrValue }, ...notAttrValue },
- nativeAttrObj: { Parent: { Item: nativeAttrValue(1), ...notAttrValue }, ...notAttrValue },
- processCalledTimes: 1,
- },
- {
- testName: "secondary level array",
- keyNodes: [{ key: "Parent", children: [{ key: "Items" }] }],
- attrObj: { Parent: { Items: [attrValue(1), attrValue(2)], ...notAttrValue }, ...notAttrValue },
- nativeAttrObj: { Parent: { Items: [nativeAttrValue(1), nativeAttrValue(2)], ...notAttrValue }, ...notAttrValue },
- processCalledTimes: 2,
- },
- {
- testName: "all entries",
- keyNodes: [{ key: "Parent", children: {} }],
- attrObj: { Parent: { key1: attrValue(1), key2: attrValue(2) }, ...notAttrValue },
- nativeAttrObj: { Parent: { key1: nativeAttrValue(1), key2: nativeAttrValue(2) }, ...notAttrValue },
- processCalledTimes: 2,
- },
- {
- testName: "all entries single key",
- keyNodes: [{ key: "Parent", children: { children: [{ key: "Item" }] } }],
- attrObj: {
- Parent: {
- key1: { Item: attrValue(1), ...notAttrValue },
- key2: { Item: attrValue(2), ...notAttrValue },
- },
- ...notAttrValue,
- },
- nativeAttrObj: {
- Parent: {
- key1: { Item: nativeAttrValue(1), ...notAttrValue },
- key2: { Item: nativeAttrValue(2), ...notAttrValue },
- },
- ...notAttrValue,
- },
- processCalledTimes: 2,
- },
- {
- testName: "all entries multiple keys",
- keyNodes: [{ key: "Parent", children: { children: [{ key: "Item1" }, { key: "Item2" }] } }],
- attrObj: {
- Parent: {
- key1: { Item1: attrValue(1), Item2: attrValue(2), ...notAttrValue },
- key2: { Item1: attrValue(3), Item2: attrValue(4), ...notAttrValue },
- },
- ...notAttrValue,
- },
- nativeAttrObj: {
- Parent: {
- key1: { Item1: nativeAttrValue(1), Item2: nativeAttrValue(2), ...notAttrValue },
- key2: { Item1: nativeAttrValue(3), Item2: nativeAttrValue(4), ...notAttrValue },
- },
- ...notAttrValue,
- },
- processCalledTimes: 4,
- },
- {
- testName: "all entries array",
- keyNodes: [{ key: "Parent", children: { children: [{ key: "Items" }] } }],
- attrObj: {
- Parent: {
- key1: { Items: [attrValue(1), attrValue(2)], ...notAttrValue },
- key2: { Items: [attrValue(3), attrValue(4)], ...notAttrValue },
- },
- ...notAttrValue,
- },
- nativeAttrObj: {
- Parent: {
- key1: { Items: [nativeAttrValue(1), nativeAttrValue(2)], ...notAttrValue },
- key2: { Items: [nativeAttrValue(3), nativeAttrValue(4)], ...notAttrValue },
- },
- ...notAttrValue,
- },
- processCalledTimes: 4,
- },
- ];
-
- afterEach(() => {
- jest.clearAllMocks();
- });
-
- testCases.forEach(({ testName, keyNodes, attrObj, nativeAttrObj, processCalledTimes }) => {
- describe(testName, () => {
- it(marshallInput.name, () => {
- for (let i = 1; i <= processCalledTimes; i++) {
- (marshall as jest.Mock).mockReturnValueOnce(attrValue(i));
- }
- expect(marshallInput(nativeAttrObj, keyNodes)).toEqual(attrObj);
- expect(marshall).toHaveBeenCalledTimes(processCalledTimes);
- for (let i = 1; i <= processCalledTimes; i++) {
- expect(marshall).toHaveBeenNthCalledWith(i, nativeAttrValue(i), undefined);
- }
- });
-
- it(unmarshallOutput.name, () => {
- for (let i = 1; i <= processCalledTimes; i++) {
- (unmarshall as jest.Mock).mockReturnValueOnce(nativeAttrValue(i));
- }
- expect(unmarshallOutput(attrObj, keyNodes)).toEqual(nativeAttrObj);
- expect(unmarshall).toHaveBeenCalledTimes(processCalledTimes);
- for (let i = 1; i <= processCalledTimes; i++) {
- expect(unmarshall).toHaveBeenNthCalledWith(i, attrValue(i), undefined);
- }
- });
- });
- });
-});
diff --git a/codegen/smithy-aws-typescript-codegen/src/main/resources/software/amazon/smithy/aws/typescript/codegen/doc-client-utils.ts b/codegen/smithy-aws-typescript-codegen/src/main/resources/software/amazon/smithy/aws/typescript/codegen/doc-client-utils.ts
deleted file mode 100644
index 9e6dc5b449017..0000000000000
--- a/codegen/smithy-aws-typescript-codegen/src/main/resources/software/amazon/smithy/aws/typescript/codegen/doc-client-utils.ts
+++ /dev/null
@@ -1,60 +0,0 @@
-import { marshall, marshallOptions, unmarshall, unmarshallOptions } from "@aws-sdk/util-dynamodb";
-
-export type KeyNode = {
- key: string;
- children?: KeyNode[] | AllNodes;
-};
-
-export type AllNodes = {
- children?: KeyNode[] | AllNodes;
-};
-
-const processObj = (obj: any, processFunc: Function, children?: KeyNode[] | AllNodes): any => {
- if (obj !== undefined) {
- if (!children || (Array.isArray(children) && children.length === 0)) {
- // Leaf of KeyNode, process the object.
- return processFunc(obj);
- } else {
- // Not leaf node, process the children.
- if (Array.isArray(children)) {
- // Specific keys of children need to be processed.
- return processKeysInObj(obj, processFunc, children);
- } else {
- // All children require processing.
- return processAllKeysInObj(obj, processFunc, children.children);
- }
- }
- }
- return undefined;
-};
-
-const processKeyInObj = (obj: any, processFunc: Function, children?: KeyNode[] | AllNodes): any => {
- if (Array.isArray(obj)) {
- return obj.map((item: any) => processObj(item, processFunc, children));
- }
- return processObj(obj, processFunc, children);
-};
-
-const processKeysInObj = (obj: any, processFunc: Function, keyNodes: KeyNode[]) => {
- const accumulator = { ...obj };
- return keyNodes.reduce((acc, { key, children }) => {
- acc[key] = processKeyInObj(acc[key], processFunc, children);
- return acc;
- }, accumulator);
-};
-
-const processAllKeysInObj = (obj: any, processFunc: Function, children?: KeyNode[] | AllNodes): any =>
- Object.entries(obj).reduce((acc, [key, value]) => {
- acc[key] = processKeyInObj(value, processFunc, children);
- return acc;
- }, {} as any);
-
-export const marshallInput = (obj: any, keyNodes: KeyNode[], options?: marshallOptions) => {
- const marshallFunc = (toMarshall: any) => marshall(toMarshall, options);
- return processKeysInObj(obj, marshallFunc, keyNodes);
-};
-
-export const unmarshallOutput = (obj: any, keyNodes: KeyNode[], options?: unmarshallOptions) => {
- const unmarshallFunc = (toMarshall: any) => unmarshall(toMarshall, options);
- return processKeysInObj(obj, unmarshallFunc, keyNodes);
-};
diff --git a/lib/lib-dynamodb/jest.config.e2e.js b/lib/lib-dynamodb/jest.config.e2e.js
new file mode 100644
index 0000000000000..c3aa6055ef756
--- /dev/null
+++ b/lib/lib-dynamodb/jest.config.e2e.js
@@ -0,0 +1,5 @@
+module.exports = {
+ preset: "ts-jest",
+ testMatch: ["**/*.e2e.spec.ts"],
+ bail: true,
+};
diff --git a/lib/lib-dynamodb/package.json b/lib/lib-dynamodb/package.json
index cffa1f44ca470..265156583f2d7 100644
--- a/lib/lib-dynamodb/package.json
+++ b/lib/lib-dynamodb/package.json
@@ -14,7 +14,8 @@
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
"extract:docs": "api-extractor run --local",
- "test": "jest"
+ "test": "jest",
+ "test:e2e": "jest --config jest.config.e2e.js"
},
"engines": {
"node": ">=14.0.0"
diff --git a/lib/lib-dynamodb/src/baseCommand/DynamoDBDocumentClientCommand.spec.ts b/lib/lib-dynamodb/src/baseCommand/DynamoDBDocumentClientCommand.spec.ts
index 427038392ec31..fbb60ba2acca3 100644
--- a/lib/lib-dynamodb/src/baseCommand/DynamoDBDocumentClientCommand.spec.ts
+++ b/lib/lib-dynamodb/src/baseCommand/DynamoDBDocumentClientCommand.spec.ts
@@ -1,13 +1,13 @@
import { Handler, MiddlewareStack } from "@smithy/types";
-import { KeyNode } from "../commands/utils";
+import { KeyNodeChildren } from "../commands/utils";
import { DynamoDBDocumentClientCommand } from "./DynamoDBDocumentClientCommand";
class AnyCommand extends DynamoDBDocumentClientCommand<{}, {}, {}, {}, {}> {
public middlewareStack: MiddlewareStack<{}, {}>;
public input: {};
- protected inputKeyNodes: KeyNode[] = [];
- protected outputKeyNodes: KeyNode[] = [];
+ protected inputKeyNodes: KeyNodeChildren = {};
+ protected outputKeyNodes: KeyNodeChildren = {};
public argCaptor: [Function, object][] = [];
diff --git a/lib/lib-dynamodb/src/baseCommand/DynamoDBDocumentClientCommand.ts b/lib/lib-dynamodb/src/baseCommand/DynamoDBDocumentClientCommand.ts
index 5e7f54ef5d677..94cf791d14887 100644
--- a/lib/lib-dynamodb/src/baseCommand/DynamoDBDocumentClientCommand.ts
+++ b/lib/lib-dynamodb/src/baseCommand/DynamoDBDocumentClientCommand.ts
@@ -10,7 +10,7 @@ import {
MiddlewareStack,
} from "@smithy/types";
-import { KeyNode, marshallInput, unmarshallOutput } from "../commands/utils";
+import { KeyNodeChildren, marshallInput, unmarshallOutput } from "../commands/utils";
import { DynamoDBDocumentClientResolvedConfig } from "../DynamoDBDocumentClient";
// /** @public */
@@ -29,8 +29,8 @@ export abstract class DynamoDBDocumentClientCommand<
BaseOutput extends object,
ResolvedClientConfiguration
> extends $Command {
- protected abstract readonly inputKeyNodes: KeyNode[];
- protected abstract readonly outputKeyNodes: KeyNode[];
+ protected abstract readonly inputKeyNodes: KeyNodeChildren;
+ protected abstract readonly outputKeyNodes: KeyNodeChildren;
protected abstract clientCommand: $Command ;
public abstract middlewareStack: MiddlewareStack ;
@@ -41,7 +41,10 @@ export abstract class DynamoDBDocumentClientCommand<
};
protected addMarshallingMiddleware(configuration: DynamoDBDocumentClientResolvedConfig): void {
- const { marshallOptions, unmarshallOptions } = configuration.translateConfig || {};
+ const { marshallOptions = {}, unmarshallOptions = {} } = configuration.translateConfig || {};
+
+ marshallOptions.convertTopLevelContainer = marshallOptions.convertTopLevelContainer ?? true;
+ unmarshallOptions.convertWithoutMapWrapper = unmarshallOptions.convertWithoutMapWrapper ?? true;
this.clientCommand.middlewareStack.addRelativeTo(
(next: InitializeHandler , context: HandlerExecutionContext) =>
diff --git a/lib/lib-dynamodb/src/commands/BatchExecuteStatementCommand.ts b/lib/lib-dynamodb/src/commands/BatchExecuteStatementCommand.ts
index c5921850556b4..3e7ba0e7b1688 100644
--- a/lib/lib-dynamodb/src/commands/BatchExecuteStatementCommand.ts
+++ b/lib/lib-dynamodb/src/commands/BatchExecuteStatementCommand.ts
@@ -11,6 +11,7 @@ import { NativeAttributeValue } from "@aws-sdk/util-dynamodb";
import { Command as $Command } from "@smithy/smithy-client";
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@smithy/types";
+import { ALL_MEMBERS, ALL_VALUES } from "../../src/commands/utils";
import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand";
import { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient";
@@ -58,10 +59,23 @@ export class BatchExecuteStatementCommand extends DynamoDBDocumentClientCommand<
__BatchExecuteStatementCommandOutput,
DynamoDBDocumentClientResolvedConfig
> {
- protected readonly inputKeyNodes = [{ key: "Statements", children: [{ key: "Parameters" }] }];
- protected readonly outputKeyNodes = [
- { key: "Responses", children: [{ key: "Error", children: [{ key: "Item" }] }, { key: "Item" }] },
- ];
+ protected readonly inputKeyNodes = {
+ Statements: {
+ "*": {
+ Parameters: ALL_MEMBERS, // set/list of AttributeValue
+ },
+ },
+ };
+ protected readonly outputKeyNodes = {
+ Responses: {
+ "*": {
+ Error: {
+ Item: ALL_VALUES, // map with AttributeValue
+ },
+ Item: ALL_VALUES, // map with AttributeValue
+ },
+ },
+ };
protected readonly clientCommand: __BatchExecuteStatementCommand;
public readonly middlewareStack: MiddlewareStack<
diff --git a/lib/lib-dynamodb/src/commands/BatchGetCommand.ts b/lib/lib-dynamodb/src/commands/BatchGetCommand.ts
index 6e6bd12a8cce9..2d2c7b1d6bfc4 100644
--- a/lib/lib-dynamodb/src/commands/BatchGetCommand.ts
+++ b/lib/lib-dynamodb/src/commands/BatchGetCommand.ts
@@ -9,6 +9,7 @@ import { NativeAttributeValue } from "@aws-sdk/util-dynamodb";
import { Command as $Command } from "@smithy/smithy-client";
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@smithy/types";
+import { ALL_VALUES } from "../../src/commands/utils";
import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand";
import { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient";
@@ -60,23 +61,29 @@ export class BatchGetCommand extends DynamoDBDocumentClientCommand<
__BatchGetItemCommandOutput,
DynamoDBDocumentClientResolvedConfig
> {
- protected readonly inputKeyNodes = [
- {
- key: "RequestItems",
- children: {
- children: [{ key: "Keys" }],
+ protected readonly inputKeyNodes = {
+ RequestItems: {
+ "*": {
+ Keys: {
+ "*": ALL_VALUES, // map with AttributeValue
+ },
},
},
- ];
- protected readonly outputKeyNodes = [
- { key: "Responses", children: {} },
- {
- key: "UnprocessedKeys",
- children: {
- children: [{ key: "Keys" }],
+ };
+ protected readonly outputKeyNodes = {
+ Responses: {
+ "*": {
+ "*": ALL_VALUES, // map with AttributeValue
},
},
- ];
+ UnprocessedKeys: {
+ "*": {
+ Keys: {
+ "*": ALL_VALUES, // map with AttributeValue
+ },
+ },
+ },
+ };
protected readonly clientCommand: __BatchGetItemCommand;
public readonly middlewareStack: MiddlewareStack<
diff --git a/lib/lib-dynamodb/src/commands/BatchWriteCommand.ts b/lib/lib-dynamodb/src/commands/BatchWriteCommand.ts
index 350ea92f7f474..da06cac6d9c65 100644
--- a/lib/lib-dynamodb/src/commands/BatchWriteCommand.ts
+++ b/lib/lib-dynamodb/src/commands/BatchWriteCommand.ts
@@ -12,6 +12,7 @@ import { NativeAttributeValue } from "@aws-sdk/util-dynamodb";
import { Command as $Command } from "@smithy/smithy-client";
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@smithy/types";
+import { ALL_VALUES } from "../../src/commands/utils";
import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand";
import { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient";
@@ -81,34 +82,41 @@ export class BatchWriteCommand extends DynamoDBDocumentClientCommand<
__BatchWriteItemCommandOutput,
DynamoDBDocumentClientResolvedConfig
> {
- protected readonly inputKeyNodes = [
- {
- key: "RequestItems",
- children: {
- children: [
- { key: "PutRequest", children: [{ key: "Item" }] },
- { key: "DeleteRequest", children: [{ key: "Key" }] },
- ],
+ protected readonly inputKeyNodes = {
+ RequestItems: {
+ "*": {
+ "*": {
+ PutRequest: {
+ Item: ALL_VALUES, // map with AttributeValue
+ },
+ DeleteRequest: {
+ Key: ALL_VALUES, // map with AttributeValue
+ },
+ },
},
},
- ];
- protected readonly outputKeyNodes = [
- {
- key: "UnprocessedItems",
- children: {
- children: [
- { key: "PutRequest", children: [{ key: "Item" }] },
- { key: "DeleteRequest", children: [{ key: "Key" }] },
- ],
+ };
+ protected readonly outputKeyNodes = {
+ UnprocessedItems: {
+ "*": {
+ "*": {
+ PutRequest: {
+ Item: ALL_VALUES, // map with AttributeValue
+ },
+ DeleteRequest: {
+ Key: ALL_VALUES, // map with AttributeValue
+ },
+ },
},
},
- {
- key: "ItemCollectionMetrics",
- children: {
- children: [{ key: "ItemCollectionKey" }],
+ ItemCollectionMetrics: {
+ "*": {
+ "*": {
+ ItemCollectionKey: ALL_VALUES, // map with AttributeValue
+ },
},
},
- ];
+ };
protected readonly clientCommand: __BatchWriteItemCommand;
public readonly middlewareStack: MiddlewareStack<
diff --git a/lib/lib-dynamodb/src/commands/DeleteCommand.ts b/lib/lib-dynamodb/src/commands/DeleteCommand.ts
index 9adb79dcea0d9..4399439fe1b18 100644
--- a/lib/lib-dynamodb/src/commands/DeleteCommand.ts
+++ b/lib/lib-dynamodb/src/commands/DeleteCommand.ts
@@ -10,6 +10,7 @@ import { NativeAttributeValue } from "@aws-sdk/util-dynamodb";
import { Command as $Command } from "@smithy/smithy-client";
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@smithy/types";
+import { ALL_MEMBERS, ALL_VALUES, SELF } from "../../src/commands/utils";
import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand";
import { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient";
@@ -59,20 +60,22 @@ export class DeleteCommand extends DynamoDBDocumentClientCommand<
__DeleteItemCommandOutput,
DynamoDBDocumentClientResolvedConfig
> {
- protected readonly inputKeyNodes = [
- { key: "Key" },
- {
- key: "Expected",
- children: {
- children: [{ key: "Value" }, { key: "AttributeValueList" }],
+ protected readonly inputKeyNodes = {
+ Key: ALL_VALUES, // map with AttributeValue
+ Expected: {
+ "*": {
+ Value: SELF,
+ AttributeValueList: ALL_MEMBERS, // set/list of AttributeValue
},
},
- { key: "ExpressionAttributeValues" },
- ];
- protected readonly outputKeyNodes = [
- { key: "Attributes" },
- { key: "ItemCollectionMetrics", children: [{ key: "ItemCollectionKey" }] },
- ];
+ ExpressionAttributeValues: ALL_VALUES, // map with AttributeValue
+ };
+ protected readonly outputKeyNodes = {
+ Attributes: ALL_VALUES, // map with AttributeValue
+ ItemCollectionMetrics: {
+ ItemCollectionKey: ALL_VALUES, // map with AttributeValue
+ },
+ };
protected readonly clientCommand: __DeleteItemCommand;
public readonly middlewareStack: MiddlewareStack<
diff --git a/lib/lib-dynamodb/src/commands/ExecuteStatementCommand.ts b/lib/lib-dynamodb/src/commands/ExecuteStatementCommand.ts
index 937dfead31bcd..4dcdbcf7a67e8 100644
--- a/lib/lib-dynamodb/src/commands/ExecuteStatementCommand.ts
+++ b/lib/lib-dynamodb/src/commands/ExecuteStatementCommand.ts
@@ -8,6 +8,7 @@ import { NativeAttributeValue } from "@aws-sdk/util-dynamodb";
import { Command as $Command } from "@smithy/smithy-client";
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@smithy/types";
+import { ALL_MEMBERS, ALL_VALUES } from "../../src/commands/utils";
import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand";
import { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient";
@@ -47,8 +48,15 @@ export class ExecuteStatementCommand extends DynamoDBDocumentClientCommand<
__ExecuteStatementCommandOutput,
DynamoDBDocumentClientResolvedConfig
> {
- protected readonly inputKeyNodes = [{ key: "Parameters" }];
- protected readonly outputKeyNodes = [{ key: "Items" }, { key: "LastEvaluatedKey" }];
+ protected readonly inputKeyNodes = {
+ Parameters: ALL_MEMBERS, // set/list of AttributeValue
+ };
+ protected readonly outputKeyNodes = {
+ Items: {
+ "*": ALL_VALUES, // map with AttributeValue
+ },
+ LastEvaluatedKey: ALL_VALUES, // map with AttributeValue
+ };
protected readonly clientCommand: __ExecuteStatementCommand;
public readonly middlewareStack: MiddlewareStack<
diff --git a/lib/lib-dynamodb/src/commands/ExecuteTransactionCommand.ts b/lib/lib-dynamodb/src/commands/ExecuteTransactionCommand.ts
index afea40d815c16..f74575239d2b5 100644
--- a/lib/lib-dynamodb/src/commands/ExecuteTransactionCommand.ts
+++ b/lib/lib-dynamodb/src/commands/ExecuteTransactionCommand.ts
@@ -10,6 +10,7 @@ import { NativeAttributeValue } from "@aws-sdk/util-dynamodb";
import { Command as $Command } from "@smithy/smithy-client";
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@smithy/types";
+import { ALL_MEMBERS, ALL_VALUES } from "../../src/commands/utils";
import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand";
import { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient";
@@ -54,8 +55,20 @@ export class ExecuteTransactionCommand extends DynamoDBDocumentClientCommand<
__ExecuteTransactionCommandOutput,
DynamoDBDocumentClientResolvedConfig
> {
- protected readonly inputKeyNodes = [{ key: "TransactStatements", children: [{ key: "Parameters" }] }];
- protected readonly outputKeyNodes = [{ key: "Responses", children: [{ key: "Item" }] }];
+ protected readonly inputKeyNodes = {
+ TransactStatements: {
+ "*": {
+ Parameters: ALL_MEMBERS, // set/list of AttributeValue
+ },
+ },
+ };
+ protected readonly outputKeyNodes = {
+ Responses: {
+ "*": {
+ Item: ALL_VALUES, // map with AttributeValue
+ },
+ },
+ };
protected readonly clientCommand: __ExecuteTransactionCommand;
public readonly middlewareStack: MiddlewareStack<
diff --git a/lib/lib-dynamodb/src/commands/GetCommand.ts b/lib/lib-dynamodb/src/commands/GetCommand.ts
index b30b985ffcad1..4f2dd07b61f1a 100644
--- a/lib/lib-dynamodb/src/commands/GetCommand.ts
+++ b/lib/lib-dynamodb/src/commands/GetCommand.ts
@@ -8,6 +8,7 @@ import { NativeAttributeValue } from "@aws-sdk/util-dynamodb";
import { Command as $Command } from "@smithy/smithy-client";
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@smithy/types";
+import { ALL_VALUES } from "../../src/commands/utils";
import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand";
import { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient";
@@ -46,8 +47,12 @@ export class GetCommand extends DynamoDBDocumentClientCommand<
__GetItemCommandOutput,
DynamoDBDocumentClientResolvedConfig
> {
- protected readonly inputKeyNodes = [{ key: "Key" }];
- protected readonly outputKeyNodes = [{ key: "Item" }];
+ protected readonly inputKeyNodes = {
+ Key: ALL_VALUES, // map with AttributeValue
+ };
+ protected readonly outputKeyNodes = {
+ Item: ALL_VALUES, // map with AttributeValue
+ };
protected readonly clientCommand: __GetItemCommand;
public readonly middlewareStack: MiddlewareStack<
diff --git a/lib/lib-dynamodb/src/commands/PutCommand.ts b/lib/lib-dynamodb/src/commands/PutCommand.ts
index 1ffbb3456d855..920000ed30727 100644
--- a/lib/lib-dynamodb/src/commands/PutCommand.ts
+++ b/lib/lib-dynamodb/src/commands/PutCommand.ts
@@ -10,6 +10,7 @@ import { NativeAttributeValue } from "@aws-sdk/util-dynamodb";
import { Command as $Command } from "@smithy/smithy-client";
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@smithy/types";
+import { ALL_MEMBERS, ALL_VALUES, SELF } from "../../src/commands/utils";
import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand";
import { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient";
@@ -59,20 +60,22 @@ export class PutCommand extends DynamoDBDocumentClientCommand<
__PutItemCommandOutput,
DynamoDBDocumentClientResolvedConfig
> {
- protected readonly inputKeyNodes = [
- { key: "Item" },
- {
- key: "Expected",
- children: {
- children: [{ key: "Value" }, { key: "AttributeValueList" }],
+ protected readonly inputKeyNodes = {
+ Item: ALL_VALUES, // map with AttributeValue
+ Expected: {
+ "*": {
+ Value: SELF,
+ AttributeValueList: ALL_MEMBERS, // set/list of AttributeValue
},
},
- { key: "ExpressionAttributeValues" },
- ];
- protected readonly outputKeyNodes = [
- { key: "Attributes" },
- { key: "ItemCollectionMetrics", children: [{ key: "ItemCollectionKey" }] },
- ];
+ ExpressionAttributeValues: ALL_VALUES, // map with AttributeValue
+ };
+ protected readonly outputKeyNodes = {
+ Attributes: ALL_VALUES, // map with AttributeValue
+ ItemCollectionMetrics: {
+ ItemCollectionKey: ALL_VALUES, // map with AttributeValue
+ },
+ };
protected readonly clientCommand: __PutItemCommand;
public readonly middlewareStack: MiddlewareStack<
diff --git a/lib/lib-dynamodb/src/commands/QueryCommand.ts b/lib/lib-dynamodb/src/commands/QueryCommand.ts
index 829a580a12b1c..80003eb6de310 100644
--- a/lib/lib-dynamodb/src/commands/QueryCommand.ts
+++ b/lib/lib-dynamodb/src/commands/QueryCommand.ts
@@ -9,6 +9,7 @@ import { NativeAttributeValue } from "@aws-sdk/util-dynamodb";
import { Command as $Command } from "@smithy/smithy-client";
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@smithy/types";
+import { ALL_MEMBERS, ALL_VALUES } from "../../src/commands/utils";
import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand";
import { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient";
@@ -64,23 +65,26 @@ export class QueryCommand extends DynamoDBDocumentClientCommand<
__QueryCommandOutput,
DynamoDBDocumentClientResolvedConfig
> {
- protected readonly inputKeyNodes = [
- {
- key: "KeyConditions",
- children: {
- children: [{ key: "AttributeValueList" }],
+ protected readonly inputKeyNodes = {
+ KeyConditions: {
+ "*": {
+ AttributeValueList: ALL_MEMBERS, // set/list of AttributeValue
},
},
- {
- key: "QueryFilter",
- children: {
- children: [{ key: "AttributeValueList" }],
+ QueryFilter: {
+ "*": {
+ AttributeValueList: ALL_MEMBERS, // set/list of AttributeValue
},
},
- { key: "ExclusiveStartKey" },
- { key: "ExpressionAttributeValues" },
- ];
- protected readonly outputKeyNodes = [{ key: "Items" }, { key: "LastEvaluatedKey" }];
+ ExclusiveStartKey: ALL_VALUES, // map with AttributeValue
+ ExpressionAttributeValues: ALL_VALUES, // map with AttributeValue
+ };
+ protected readonly outputKeyNodes = {
+ Items: {
+ "*": ALL_VALUES, // map with AttributeValue
+ },
+ LastEvaluatedKey: ALL_VALUES, // map with AttributeValue
+ };
protected readonly clientCommand: __QueryCommand;
public readonly middlewareStack: MiddlewareStack<
diff --git a/lib/lib-dynamodb/src/commands/ScanCommand.ts b/lib/lib-dynamodb/src/commands/ScanCommand.ts
index 3a29809c639bc..b4c89e45aeef7 100644
--- a/lib/lib-dynamodb/src/commands/ScanCommand.ts
+++ b/lib/lib-dynamodb/src/commands/ScanCommand.ts
@@ -9,6 +9,7 @@ import { NativeAttributeValue } from "@aws-sdk/util-dynamodb";
import { Command as $Command } from "@smithy/smithy-client";
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@smithy/types";
+import { ALL_MEMBERS, ALL_VALUES } from "../../src/commands/utils";
import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand";
import { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient";
@@ -58,17 +59,21 @@ export class ScanCommand extends DynamoDBDocumentClientCommand<
__ScanCommandOutput,
DynamoDBDocumentClientResolvedConfig
> {
- protected readonly inputKeyNodes = [
- {
- key: "ScanFilter",
- children: {
- children: [{ key: "AttributeValueList" }],
+ protected readonly inputKeyNodes = {
+ ScanFilter: {
+ "*": {
+ AttributeValueList: ALL_MEMBERS, // set/list of AttributeValue
},
},
- { key: "ExclusiveStartKey" },
- { key: "ExpressionAttributeValues" },
- ];
- protected readonly outputKeyNodes = [{ key: "Items" }, { key: "LastEvaluatedKey" }];
+ ExclusiveStartKey: ALL_VALUES, // map with AttributeValue
+ ExpressionAttributeValues: ALL_VALUES, // map with AttributeValue
+ };
+ protected readonly outputKeyNodes = {
+ Items: {
+ "*": ALL_VALUES, // map with AttributeValue
+ },
+ LastEvaluatedKey: ALL_VALUES, // map with AttributeValue
+ };
protected readonly clientCommand: __ScanCommand;
public readonly middlewareStack: MiddlewareStack<
diff --git a/lib/lib-dynamodb/src/commands/TransactGetCommand.ts b/lib/lib-dynamodb/src/commands/TransactGetCommand.ts
index 071fc0ac577ac..c4b7a37928450 100644
--- a/lib/lib-dynamodb/src/commands/TransactGetCommand.ts
+++ b/lib/lib-dynamodb/src/commands/TransactGetCommand.ts
@@ -11,6 +11,7 @@ import { NativeAttributeValue } from "@aws-sdk/util-dynamodb";
import { Command as $Command } from "@smithy/smithy-client";
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@smithy/types";
+import { ALL_VALUES } from "../../src/commands/utils";
import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand";
import { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient";
@@ -59,8 +60,22 @@ export class TransactGetCommand extends DynamoDBDocumentClientCommand<
__TransactGetItemsCommandOutput,
DynamoDBDocumentClientResolvedConfig
> {
- protected readonly inputKeyNodes = [{ key: "TransactItems", children: [{ key: "Get", children: [{ key: "Key" }] }] }];
- protected readonly outputKeyNodes = [{ key: "Responses", children: [{ key: "Item" }] }];
+ protected readonly inputKeyNodes = {
+ TransactItems: {
+ "*": {
+ Get: {
+ Key: ALL_VALUES, // map with AttributeValue
+ },
+ },
+ },
+ };
+ protected readonly outputKeyNodes = {
+ Responses: {
+ "*": {
+ Item: ALL_VALUES, // map with AttributeValue
+ },
+ },
+ };
protected readonly clientCommand: __TransactGetItemsCommand;
public readonly middlewareStack: MiddlewareStack<
diff --git a/lib/lib-dynamodb/src/commands/TransactWriteCommand.ts b/lib/lib-dynamodb/src/commands/TransactWriteCommand.ts
index 5cc98b3f83c46..36a6e86af05dc 100644
--- a/lib/lib-dynamodb/src/commands/TransactWriteCommand.ts
+++ b/lib/lib-dynamodb/src/commands/TransactWriteCommand.ts
@@ -14,6 +14,7 @@ import { NativeAttributeValue } from "@aws-sdk/util-dynamodb";
import { Command as $Command } from "@smithy/smithy-client";
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@smithy/types";
+import { ALL_VALUES } from "../../src/commands/utils";
import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand";
import { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient";
@@ -76,25 +77,37 @@ export class TransactWriteCommand extends DynamoDBDocumentClientCommand<
__TransactWriteItemsCommandOutput,
DynamoDBDocumentClientResolvedConfig
> {
- protected readonly inputKeyNodes = [
- {
- key: "TransactItems",
- children: [
- { key: "ConditionCheck", children: [{ key: "Key" }, { key: "ExpressionAttributeValues" }] },
- { key: "Put", children: [{ key: "Item" }, { key: "ExpressionAttributeValues" }] },
- { key: "Delete", children: [{ key: "Key" }, { key: "ExpressionAttributeValues" }] },
- { key: "Update", children: [{ key: "Key" }, { key: "ExpressionAttributeValues" }] },
- ],
+ protected readonly inputKeyNodes = {
+ TransactItems: {
+ "*": {
+ ConditionCheck: {
+ Key: ALL_VALUES, // map with AttributeValue
+ ExpressionAttributeValues: ALL_VALUES, // map with AttributeValue
+ },
+ Put: {
+ Item: ALL_VALUES, // map with AttributeValue
+ ExpressionAttributeValues: ALL_VALUES, // map with AttributeValue
+ },
+ Delete: {
+ Key: ALL_VALUES, // map with AttributeValue
+ ExpressionAttributeValues: ALL_VALUES, // map with AttributeValue
+ },
+ Update: {
+ Key: ALL_VALUES, // map with AttributeValue
+ ExpressionAttributeValues: ALL_VALUES, // map with AttributeValue
+ },
+ },
},
- ];
- protected readonly outputKeyNodes = [
- {
- key: "ItemCollectionMetrics",
- children: {
- children: [{ key: "ItemCollectionKey" }],
+ };
+ protected readonly outputKeyNodes = {
+ ItemCollectionMetrics: {
+ "*": {
+ "*": {
+ ItemCollectionKey: ALL_VALUES, // map with AttributeValue
+ },
},
},
- ];
+ };
protected readonly clientCommand: __TransactWriteItemsCommand;
public readonly middlewareStack: MiddlewareStack<
diff --git a/lib/lib-dynamodb/src/commands/UpdateCommand.ts b/lib/lib-dynamodb/src/commands/UpdateCommand.ts
index a52475c64348b..add23bdb9539b 100644
--- a/lib/lib-dynamodb/src/commands/UpdateCommand.ts
+++ b/lib/lib-dynamodb/src/commands/UpdateCommand.ts
@@ -11,6 +11,7 @@ import { NativeAttributeValue } from "@aws-sdk/util-dynamodb";
import { Command as $Command } from "@smithy/smithy-client";
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@smithy/types";
+import { ALL_MEMBERS, ALL_VALUES, SELF } from "../../src/commands/utils";
import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand";
import { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient";
@@ -69,26 +70,27 @@ export class UpdateCommand extends DynamoDBDocumentClientCommand<
__UpdateItemCommandOutput,
DynamoDBDocumentClientResolvedConfig
> {
- protected readonly inputKeyNodes = [
- { key: "Key" },
- {
- key: "AttributeUpdates",
- children: {
- children: [{ key: "Value" }],
+ protected readonly inputKeyNodes = {
+ Key: ALL_VALUES, // map with AttributeValue
+ AttributeUpdates: {
+ "*": {
+ Value: SELF,
},
},
- {
- key: "Expected",
- children: {
- children: [{ key: "Value" }, { key: "AttributeValueList" }],
+ Expected: {
+ "*": {
+ Value: SELF,
+ AttributeValueList: ALL_MEMBERS, // set/list of AttributeValue
},
},
- { key: "ExpressionAttributeValues" },
- ];
- protected readonly outputKeyNodes = [
- { key: "Attributes" },
- { key: "ItemCollectionMetrics", children: [{ key: "ItemCollectionKey" }] },
- ];
+ ExpressionAttributeValues: ALL_VALUES, // map with AttributeValue
+ };
+ protected readonly outputKeyNodes = {
+ Attributes: ALL_VALUES, // map with AttributeValue
+ ItemCollectionMetrics: {
+ ItemCollectionKey: ALL_VALUES, // map with AttributeValue
+ },
+ };
protected readonly clientCommand: __UpdateItemCommand;
public readonly middlewareStack: MiddlewareStack<
diff --git a/lib/lib-dynamodb/src/commands/marshallInput.spec.ts b/lib/lib-dynamodb/src/commands/marshallInput.spec.ts
index 17890ff2838b3..c6df6f96e4e43 100644
--- a/lib/lib-dynamodb/src/commands/marshallInput.spec.ts
+++ b/lib/lib-dynamodb/src/commands/marshallInput.spec.ts
@@ -2,9 +2,13 @@ import { marshallInput } from "./utils";
describe("marshallInput and processObj", () => {
it("marshallInput should not ignore falsy values", () => {
- expect(marshallInput({ Items: [0, false, null, ""] }, [{ key: "Items" }])).toEqual({
- Items: [{ N: "0" }, { BOOL: false }, { NULL: true }, { S: "" }],
- });
+ expect(marshallInput({ Items: [0, false, null, ""] }, { Items: null }, { convertTopLevelContainer: true })).toEqual(
+ {
+ Items: {
+ L: [{ N: "0" }, { BOOL: false }, { NULL: true }, { S: "" }],
+ },
+ }
+ );
});
});
@@ -19,22 +23,20 @@ describe("marshallInput for commands", () => {
},
},
};
- const inputKeyNodes = [
- {
- key: "KeyConditions",
- children: {
- children: [{ key: "AttributeValueList" }],
+ const inputKeyNodes = {
+ KeyConditions: {
+ "*": {
+ AttributeValueList: [],
},
},
- {
- key: "QueryFilter",
- children: {
- children: [{ key: "AttributeValueList" }],
+ QueryFilter: {
+ "*": {
+ AttributeValueList: null,
},
},
- { key: "ExclusiveStartKey" },
- { key: "ExpressionAttributeValues" },
- ];
+ ExclusiveStartKey: null,
+ ExpressionAttributeValues: null,
+ };
const output = {
TableName: "TestTable",
KeyConditions: { id: { AttributeValueList: [{ S: "test" }], ComparisonOperator: "EQ" } },
@@ -42,7 +44,7 @@ describe("marshallInput for commands", () => {
ExclusiveStartKey: undefined,
ExpressionAttributeValues: undefined,
};
- expect(marshallInput(input, inputKeyNodes)).toEqual(output);
+ expect(marshallInput(input, inputKeyNodes, { convertTopLevelContainer: true })).toEqual(output);
});
it("marshals ExecuteStatementCommand input", () => {
const input = {
@@ -51,12 +53,14 @@ describe("marshallInput for commands", () => {
WHERE contains("col_1", ?)`,
Parameters: ["some_param"],
};
- const inputKeyNodes = [{ key: "Parameters" }];
+ const inputKeyNodes = {
+ Parameters: [],
+ };
const output = {
Statement: input.Statement,
Parameters: [{ S: "some_param" }],
};
- expect(marshallInput(input, inputKeyNodes)).toEqual(output);
+ expect(marshallInput(input, inputKeyNodes, { convertTopLevelContainer: true })).toEqual(output);
});
it("marshals BatchExecuteStatementCommand input", () => {
const input = {
@@ -72,7 +76,13 @@ describe("marshallInput for commands", () => {
},
],
};
- const inputKeyNodes = [{ key: "Statements", children: [{ key: "Parameters" }] }];
+ const inputKeyNodes = {
+ Statements: {
+ "*": {
+ Parameters: [],
+ },
+ },
+ };
const output = {
Statements: [
{
@@ -87,6 +97,6 @@ describe("marshallInput for commands", () => {
},
],
};
- expect(marshallInput(input, inputKeyNodes)).toEqual(output);
+ expect(marshallInput(input, inputKeyNodes, { convertTopLevelContainer: true })).toEqual(output);
});
});
diff --git a/lib/lib-dynamodb/src/commands/utils.spec.ts b/lib/lib-dynamodb/src/commands/utils.spec.ts
index cee2e0a966c23..dad1cfa939f8d 100644
--- a/lib/lib-dynamodb/src/commands/utils.spec.ts
+++ b/lib/lib-dynamodb/src/commands/utils.spec.ts
@@ -1,68 +1,70 @@
-// smithy-typescript generated code
-import { marshall, unmarshall } from "@aws-sdk/util-dynamodb";
-
import { marshallInput, unmarshallOutput } from "./utils";
-jest.mock("@aws-sdk/util-dynamodb");
-
describe("utils", () => {
const notAttrValue = { NotAttrValue: "NotAttrValue" };
- const attrValue = (num: number) => ({ id: { N: num } });
+ const attrValue = (num: number) => ({ id: { N: String(num) } });
const nativeAttrValue = (num: number) => ({ id: num });
const testCases = [
{
testName: "single key",
- keyNodes: [{ key: "Item" }],
- attrObj: { Item: attrValue(1), ...notAttrValue },
+ keyNodes: { Item: {} },
nativeAttrObj: { Item: nativeAttrValue(1), ...notAttrValue },
- processCalledTimes: 1,
+ attrObj: { Item: attrValue(1), ...notAttrValue },
},
{
testName: "multiple keys",
- keyNodes: [{ key: "Item1" }, { key: "Item2" }],
- attrObj: { Item1: attrValue(1), Item2: attrValue(2), ...notAttrValue },
+ keyNodes: { Item1: {}, Item2: {} },
nativeAttrObj: { Item1: nativeAttrValue(1), Item2: nativeAttrValue(2), ...notAttrValue },
- processCalledTimes: 2,
+ attrObj: { Item1: attrValue(1), Item2: attrValue(2), ...notAttrValue },
},
{
testName: "array",
- keyNodes: [{ key: "Items" }],
- attrObj: { Items: [attrValue(1), attrValue(2)], ...notAttrValue },
+ keyNodes: { Items: { "*": {} } },
nativeAttrObj: { Items: [nativeAttrValue(1), nativeAttrValue(2)], ...notAttrValue },
- processCalledTimes: 2,
+ attrObj: { Items: [attrValue(1), attrValue(2)], ...notAttrValue },
},
{
testName: "secondary level",
- keyNodes: [{ key: "Parent", children: [{ key: "Item" }] }],
- attrObj: { Parent: { Item: attrValue(1), ...notAttrValue }, ...notAttrValue },
+ keyNodes: {
+ Parent: {
+ Item: {},
+ },
+ },
nativeAttrObj: { Parent: { Item: nativeAttrValue(1), ...notAttrValue }, ...notAttrValue },
- processCalledTimes: 1,
+ attrObj: { Parent: { Item: attrValue(1), ...notAttrValue }, ...notAttrValue },
},
{
testName: "secondary level array",
- keyNodes: [{ key: "Parent", children: [{ key: "Items" }] }],
- attrObj: { Parent: { Items: [attrValue(1), attrValue(2)], ...notAttrValue }, ...notAttrValue },
+ keyNodes: {
+ Parent: {
+ Items: {
+ "*": [],
+ },
+ },
+ },
nativeAttrObj: { Parent: { Items: [nativeAttrValue(1), nativeAttrValue(2)], ...notAttrValue }, ...notAttrValue },
- processCalledTimes: 2,
+ attrObj: { Parent: { Items: [attrValue(1), attrValue(2)], ...notAttrValue }, ...notAttrValue },
},
{
testName: "all entries",
- keyNodes: [{ key: "Parent", children: {} }],
- attrObj: { Parent: { key1: attrValue(1), key2: attrValue(2) }, ...notAttrValue },
+ keyNodes: {
+ Parent: {
+ "*": {},
+ },
+ },
nativeAttrObj: { Parent: { key1: nativeAttrValue(1), key2: nativeAttrValue(2) }, ...notAttrValue },
- processCalledTimes: 2,
+ attrObj: { Parent: { key1: attrValue(1), key2: attrValue(2) }, ...notAttrValue },
},
{
testName: "all entries single key",
- keyNodes: [{ key: "Parent", children: { children: [{ key: "Item" }] } }],
- attrObj: {
+ keyNodes: {
Parent: {
- key1: { Item: attrValue(1), ...notAttrValue },
- key2: { Item: attrValue(2), ...notAttrValue },
+ "*": {
+ Item: {},
+ },
},
- ...notAttrValue,
},
nativeAttrObj: {
Parent: {
@@ -71,17 +73,23 @@ describe("utils", () => {
},
...notAttrValue,
},
- processCalledTimes: 2,
+ attrObj: {
+ Parent: {
+ key1: { Item: attrValue(1), ...notAttrValue },
+ key2: { Item: attrValue(2), ...notAttrValue },
+ },
+ ...notAttrValue,
+ },
},
{
testName: "all entries multiple keys",
- keyNodes: [{ key: "Parent", children: { children: [{ key: "Item1" }, { key: "Item2" }] } }],
- attrObj: {
+ keyNodes: {
Parent: {
- key1: { Item1: attrValue(1), Item2: attrValue(2), ...notAttrValue },
- key2: { Item1: attrValue(3), Item2: attrValue(4), ...notAttrValue },
+ "*": {
+ Item1: {},
+ Item2: {},
+ },
},
- ...notAttrValue,
},
nativeAttrObj: {
Parent: {
@@ -90,17 +98,24 @@ describe("utils", () => {
},
...notAttrValue,
},
- processCalledTimes: 4,
+ attrObj: {
+ Parent: {
+ key1: { Item1: attrValue(1), Item2: attrValue(2), ...notAttrValue },
+ key2: { Item1: attrValue(3), Item2: attrValue(4), ...notAttrValue },
+ },
+ ...notAttrValue,
+ },
},
{
testName: "all entries array",
- keyNodes: [{ key: "Parent", children: { children: [{ key: "Items" }] } }],
- attrObj: {
+ keyNodes: {
Parent: {
- key1: { Items: [attrValue(1), attrValue(2)], ...notAttrValue },
- key2: { Items: [attrValue(3), attrValue(4)], ...notAttrValue },
+ "*": {
+ Items: {
+ "*": [],
+ },
+ },
},
- ...notAttrValue,
},
nativeAttrObj: {
Parent: {
@@ -109,36 +124,24 @@ describe("utils", () => {
},
...notAttrValue,
},
- processCalledTimes: 4,
+ attrObj: {
+ Parent: {
+ key1: { Items: [attrValue(1), attrValue(2)], ...notAttrValue },
+ key2: { Items: [attrValue(3), attrValue(4)], ...notAttrValue },
+ },
+ ...notAttrValue,
+ },
},
];
- afterEach(() => {
- jest.clearAllMocks();
- });
-
- testCases.forEach(({ testName, keyNodes, attrObj, nativeAttrObj, processCalledTimes }) => {
+ testCases.forEach(({ testName, keyNodes, attrObj, nativeAttrObj }) => {
describe(testName, () => {
it(marshallInput.name, () => {
- for (let i = 1; i <= processCalledTimes; i++) {
- (marshall as jest.Mock).mockReturnValueOnce(attrValue(i));
- }
- expect(marshallInput(nativeAttrObj, keyNodes)).toEqual(attrObj);
- expect(marshall).toHaveBeenCalledTimes(processCalledTimes);
- for (let i = 1; i <= processCalledTimes; i++) {
- expect(marshall).toHaveBeenNthCalledWith(i, nativeAttrValue(i), undefined);
- }
+ expect(marshallInput(nativeAttrObj, keyNodes, { convertTopLevelContainer: true })).toEqual(attrObj);
});
it(unmarshallOutput.name, () => {
- for (let i = 1; i <= processCalledTimes; i++) {
- (unmarshall as jest.Mock).mockReturnValueOnce(nativeAttrValue(i));
- }
- expect(unmarshallOutput(attrObj, keyNodes)).toEqual(nativeAttrObj);
- expect(unmarshall).toHaveBeenCalledTimes(processCalledTimes);
- for (let i = 1; i <= processCalledTimes; i++) {
- expect(unmarshall).toHaveBeenNthCalledWith(i, attrValue(i), undefined);
- }
+ expect(unmarshallOutput(attrObj, keyNodes, { convertWithoutMapWrapper: true })).toEqual(nativeAttrObj);
});
});
});
diff --git a/lib/lib-dynamodb/src/commands/utils.ts b/lib/lib-dynamodb/src/commands/utils.ts
index 6a621a167d994..2765aa5dc959e 100644
--- a/lib/lib-dynamodb/src/commands/utils.ts
+++ b/lib/lib-dynamodb/src/commands/utils.ts
@@ -1,61 +1,104 @@
-// smithy-typescript generated code
import { marshall, marshallOptions, unmarshall, unmarshallOptions } from "@aws-sdk/util-dynamodb";
-export type KeyNode = {
- key: string;
- children?: KeyNode[] | AllNodes;
-};
+/**
+ * @internal
+ */
+export type KeyNodeSelf = null;
+/**
+ * @internal
+ */
+export const SELF: KeyNodeSelf = null;
-export type AllNodes = {
- children?: KeyNode[] | AllNodes;
-};
+/**
+ * @internal
+ */
+export type KeyNodeChildren = Record;
+/**
+ * @internal
+ */
+export const ALL_VALUES: KeyNodeChildren = {};
+/**
+ * @internal
+ */
+export const ALL_MEMBERS: KeyNodeChildren = [];
+/**
+ * @internal
+ */
+const NEXT_LEVEL = "*";
-const processObj = (obj: any, processFunc: Function, children?: KeyNode[] | AllNodes): any => {
+/**
+ * @internal
+ */
+export type KeyNodes = KeyNodeSelf | KeyNodeChildren;
+
+const processObj = (obj: any, processFunc: Function, keyNodes?: KeyNodes): any => {
if (obj !== undefined) {
- if (!children || (Array.isArray(children) && children.length === 0)) {
+ if (keyNodes == null) {
// Leaf of KeyNode, process the object.
return processFunc(obj);
} else {
+ const keys = Object.keys(keyNodes);
+
+ const goToNextLevel = keys.length === 1 && keys[0] === NEXT_LEVEL;
+ const someChildren = keys.length >= 1 && !goToNextLevel;
+ const allChildren = keys.length === 0;
+
// Not leaf node, process the children.
- if (Array.isArray(children)) {
- // Specific keys of children need to be processed.
- return processKeysInObj(obj, processFunc, children);
- } else {
- // All children require processing.
- return processAllKeysInObj(obj, processFunc, children.children);
+ if (someChildren) {
+ return processKeysInObj(obj, processFunc, keyNodes as KeyNodeChildren);
+ } else if (allChildren) {
+ return processAllKeysInObj(obj, processFunc, SELF);
+ } else if (goToNextLevel) {
+ return Object.entries(obj ?? {}).reduce((acc, [k, v]) => {
+ acc[k] = processObj(v, processFunc, keyNodes[NEXT_LEVEL]);
+ return acc;
+ }, (Array.isArray(obj) ? [] : {}) as any);
}
}
}
return undefined;
};
-const processKeyInObj = (obj: any, processFunc: Function, children?: KeyNode[] | AllNodes): any => {
+const processKeysInObj = (obj: any, processFunc: Function, keyNodes: KeyNodeChildren) => {
+ let accumulator: any;
if (Array.isArray(obj)) {
- return obj.map((item: any) => processObj(item, processFunc, children));
+ accumulator = [...obj];
+ } else {
+ accumulator = { ...obj };
}
- return processObj(obj, processFunc, children);
-};
-const processKeysInObj = (obj: any, processFunc: Function, keyNodes: KeyNode[]) => {
- const accumulator = { ...obj };
- return keyNodes.reduce((acc, { key, children }) => {
- acc[key] = processKeyInObj(acc[key], processFunc, children);
- return acc;
- }, accumulator);
+ for (const [nodeKey, nodes] of Object.entries(keyNodes)) {
+ const processedValue = processObj(obj[nodeKey], processFunc, nodes);
+ if (processedValue !== undefined) {
+ accumulator[nodeKey] = processedValue;
+ }
+ }
+
+ return accumulator;
};
-const processAllKeysInObj = (obj: any, processFunc: Function, children?: KeyNode[] | AllNodes): any =>
- Object.entries(obj).reduce((acc, [key, value]) => {
- acc[key] = processKeyInObj(value, processFunc, children);
+const processAllKeysInObj = (obj: any, processFunc: Function, keyNodes: KeyNodes): any => {
+ if (Array.isArray(obj)) {
+ return obj.map((item) => processObj(item, processFunc, keyNodes));
+ }
+ return Object.entries(obj).reduce((acc, [key, value]) => {
+ acc[key] = processObj(value, processFunc, keyNodes);
return acc;
}, {} as any);
+};
-export const marshallInput = (obj: any, keyNodes: KeyNode[], options?: marshallOptions) => {
+/**
+ * @internal
+ */
+export const marshallInput = (obj: any, keyNodes: KeyNodeChildren, options?: marshallOptions) => {
const marshallFunc = (toMarshall: any) => marshall(toMarshall, options);
return processKeysInObj(obj, marshallFunc, keyNodes);
};
-export const unmarshallOutput = (obj: any, keyNodes: KeyNode[], options?: unmarshallOptions) => {
+/**
+ * @internal
+ */
+export const unmarshallOutput = (obj: any, keyNodes: KeyNodeChildren, options?: unmarshallOptions) => {
const unmarshallFunc = (toMarshall: any) => unmarshall(toMarshall, options);
return processKeysInObj(obj, unmarshallFunc, keyNodes);
};
diff --git a/lib/lib-dynamodb/src/test/lib-dynamodb.e2e.spec.ts b/lib/lib-dynamodb/src/test/lib-dynamodb.e2e.spec.ts
new file mode 100644
index 0000000000000..0bb80af2fed60
--- /dev/null
+++ b/lib/lib-dynamodb/src/test/lib-dynamodb.e2e.spec.ts
@@ -0,0 +1,570 @@
+import {
+ BillingMode,
+ CreateTableCommandOutput,
+ DeleteItemCommandOutput,
+ DescribeTableCommandOutput,
+ DynamoDB,
+ GetItemCommandOutput,
+ waitUntilTableExists,
+} from "@aws-sdk/client-dynamodb";
+import {
+ BatchExecuteStatementCommandOutput,
+ BatchGetCommandOutput,
+ BatchWriteCommandOutput,
+ DynamoDBDocument,
+ ExecuteStatementCommandOutput,
+ ExecuteTransactionCommandOutput,
+ GetCommandOutput,
+ PutCommandOutput,
+ QueryCommandOutput,
+ ScanCommandOutput,
+ TransactGetCommandOutput,
+ TransactWriteCommandOutput,
+ UpdateCommandOutput,
+} from "@aws-sdk/lib-dynamodb";
+
+jest.setTimeout(60000); // expected running time: 10s
+
+describe(DynamoDBDocument.name, () => {
+ const dynamodb = new DynamoDB({ region: "us-west-2", maxAttempts: 10 });
+ const doc = DynamoDBDocument.from(dynamodb, {
+ marshallOptions: {
+ convertTopLevelContainer: true,
+ },
+ });
+
+ function throwIfError(e: unknown) {
+ if (e instanceof Error) {
+ throw e;
+ }
+ }
+
+ // Random element limited to 0-99 to avoid concurrent build IO.
+ // Tables will be dropped at the end of the test.
+ // For faster test development, remove this random suffix and
+ // don't delete the table in afterAll().
+ // The table will in that case be re-used.
+ const randId = String((Math.random() * 99) | 0);
+
+ const TableName = `js-sdk-dynamodb-test-${randId}`;
+
+ const log = {
+ describe: null as null | DescribeTableCommandOutput,
+ create: null as null | CreateTableCommandOutput,
+ write: {} as Record,
+ read: {} as Record,
+ batchWrite: null as null | BatchWriteCommandOutput,
+ batchRead: null as null | BatchGetCommandOutput,
+ transactWrite: null as null | TransactWriteCommandOutput,
+ transactRead: null as null | TransactGetCommandOutput,
+ executeTransaction: null as null | ExecuteTransactionCommandOutput,
+ executeTransactionReadBack: {} as Record,
+ executeStatement: {} as Record,
+ executeStatementReadBack: {} as Record,
+ batchExecuteStatement: null as null | BatchExecuteStatementCommandOutput,
+ batchExecuteStatementReadBack: null as null | BatchExecuteStatementCommandOutput,
+ query: null as null | QueryCommandOutput,
+ scan: null as null | ScanCommandOutput,
+ update: {} as Record,
+ updateReadBack: {} as Record,
+ delete: {} as Record,
+ };
+
+ const data = {
+ null: null,
+ string: "myString",
+ number: 1,
+ boolean: true,
+ sSet: new Set(["my", "string", "set"]),
+ nSet: new Set([2, 3, 4]),
+ list: [
+ null,
+ "myString",
+ 1,
+ true,
+ new Set(["my", "string", "set"]),
+ new Set([2, 3, 4]),
+ ["listInList", 1, null],
+ {
+ mapInList: "mapInList",
+ },
+ ],
+ map: {
+ null: null,
+ string: "myString",
+ number: 1,
+ boolean: true,
+ sSet: new Set(["my", "string", "set"]),
+ nSet: new Set([2, 3, 4]),
+ listInMap: ["listInMap", 1, null],
+ mapInMap: { mapInMap: "mapInMap" },
+ },
+ };
+
+ const updateTransform = (input: T): T => {
+ switch (typeof input) {
+ case "object":
+ if (input === null) {
+ return null as T;
+ }
+ if (Array.isArray(input)) {
+ return input.map(updateTransform) as T;
+ }
+ if (input instanceof Set) {
+ return new Set([...input].map(updateTransform)) as T;
+ }
+ return Object.entries(input).reduce((acc, [k, v]) => {
+ acc[updateTransform(k)] = updateTransform(v);
+ return acc;
+ }, {}) as T;
+ case "boolean":
+ return !input as T;
+ case "number":
+ return (input + 1) as T;
+ case "string":
+ return (input + "-x") as T;
+ }
+ return input;
+ };
+
+ const passError = (e) => e;
+
+ beforeAll(async () => {
+ log.describe = await dynamodb
+ .describeTable({
+ TableName,
+ })
+ .catch((e) => {
+ return null;
+ });
+ if (!log.describe?.Table) {
+ log.create = await dynamodb
+ .createTable({
+ TableName,
+ AttributeDefinitions: [
+ {
+ AttributeName: "id",
+ AttributeType: "S",
+ },
+ ],
+ KeySchema: [
+ {
+ AttributeName: "id",
+ KeyType: "HASH",
+ },
+ ],
+ BillingMode: BillingMode.PAY_PER_REQUEST,
+ })
+ .catch(passError);
+ await waitUntilTableExists(
+ { client: dynamodb, maxWaitTime: 60 },
+ {
+ TableName,
+ }
+ );
+ }
+
+ for (const [id, value] of [["1", data as any], ...Object.entries(data)]) {
+ log.write[id] = await doc
+ .put({
+ TableName,
+ Item: {
+ id,
+ data: value,
+ },
+ })
+ .catch(passError);
+
+ log.read[id] = await doc
+ .get({
+ TableName,
+ Key: {
+ id,
+ },
+ })
+ .catch(passError);
+ }
+
+ log.batchWrite = await doc
+ .batchWrite({
+ RequestItems: {
+ [TableName]: [
+ ...Object.entries(data).map(([k, v]) => {
+ return {
+ PutRequest: {
+ Item: {
+ id: k + "-batch",
+ data: v,
+ },
+ },
+ };
+ }),
+ ],
+ },
+ })
+ .catch(passError);
+
+ log.batchRead = await doc
+ .batchGet({
+ RequestItems: {
+ [TableName]: {
+ Keys: [
+ ...Object.keys(data).map((key) => {
+ return { id: key + "-batch" };
+ }),
+ ],
+ },
+ },
+ })
+ .catch(passError);
+
+ log.transactWrite = await doc
+ .transactWrite({
+ TransactItems: [
+ ...Object.entries(data).map(([k, v]) => {
+ return {
+ Put: {
+ TableName,
+ Key: {
+ id: k + "-transact",
+ },
+ Item: {
+ id: k + "-transact",
+ data: v,
+ },
+ },
+ };
+ }),
+ ],
+ })
+ .catch(passError);
+
+ log.transactRead = await doc
+ .transactGet({
+ TransactItems: [
+ ...Object.keys(data).map((k) => {
+ return {
+ Get: {
+ TableName,
+ Key: {
+ id: k + "-transact",
+ },
+ },
+ };
+ }),
+ ],
+ })
+ .catch(passError);
+
+ log.executeTransaction = await doc
+ .executeTransaction({
+ TransactStatements: [
+ ...Object.entries(data).map(([k, v]) => {
+ return {
+ Statement: `INSERT INTO "${TableName}" value {'id':?,'data':?}`,
+ Parameters: [k + "-exec-transact", v],
+ };
+ }),
+ ],
+ })
+ .catch(passError);
+ for (const [k] of Object.entries(data)) {
+ log.executeTransactionReadBack[k] = await doc
+ .get({
+ TableName,
+ Key: {
+ id: k + "-exec-transact",
+ },
+ })
+ .catch(passError);
+ }
+
+ for (const [k, v] of Object.entries(data)) {
+ log.executeStatement[k] = await doc
+ .executeStatement({
+ Statement: `INSERT INTO "${TableName}" value {'id':?,'data':?}`,
+ Parameters: [k + "-statement", v],
+ })
+ .catch(passError);
+ }
+ for (const [k] of Object.entries(data)) {
+ log.executeStatementReadBack[k] = await doc
+ .get({
+ TableName,
+ Key: {
+ id: k + "-statement",
+ },
+ })
+ .catch(passError);
+ }
+
+ log.batchExecuteStatement = await doc
+ .batchExecuteStatement({
+ Statements: [
+ ...Object.entries(data).map(([k, v]) => {
+ return {
+ Statement: `INSERT INTO "${TableName}" value {'id':?,'data':?}`,
+ Parameters: [k + "-batch-statement", v],
+ };
+ }),
+ ],
+ })
+ .catch(passError);
+
+ log.batchExecuteStatementReadBack = await doc
+ .batchExecuteStatement({
+ Statements: [
+ ...Object.entries(data).map(([k, v]) => {
+ return {
+ Statement: `SELECT * FROM ${TableName} WHERE "id" = ?`,
+ Parameters: [k + "-batch-statement"],
+ };
+ }),
+ ],
+ })
+ .catch(passError);
+
+ log.query = await doc
+ .query({
+ TableName,
+ KeyConditionExpression: `id = :id`,
+ ExpressionAttributeValues: {
+ ":id": "map",
+ },
+ ConsistentRead: true,
+ })
+ .catch(passError);
+
+ log.scan = await doc
+ .scan({
+ TableName,
+ FilterExpression: `#data = :data1 OR #data = :data2`,
+ ExpressionAttributeNames: {
+ "#data": "data",
+ },
+ ExpressionAttributeValues: {
+ ":data1": data.list,
+ ":data2": data.map,
+ },
+ })
+ .catch(passError);
+
+ for (const [id, value] of [["1", data as any], ...Object.entries(data)]) {
+ log.update[id] = await doc
+ .update({
+ TableName,
+ Key: {
+ id,
+ },
+ AttributeUpdates: {
+ data: {
+ Action: "PUT",
+ Value: updateTransform(value),
+ },
+ },
+ })
+ .catch(passError);
+
+ log.updateReadBack[id] = await doc
+ .get({
+ TableName,
+ Key: {
+ id,
+ },
+ })
+ .catch(passError);
+
+ log.delete[id] = await (async () => {
+ for (const suffix of ["-batch", "-transact", "-exec-transact", "-statement", "-batch-statement"]) {
+ doc
+ .delete({
+ TableName,
+ Key: {
+ id: id + suffix,
+ },
+ })
+ .catch(() => {});
+ }
+ return doc.delete({
+ TableName,
+ Key: { id },
+ });
+ })().catch(passError);
+ }
+ });
+
+ afterAll(async () => {
+ await dynamodb.deleteTable({
+ TableName,
+ });
+ });
+
+ describe("updateTransformFunction", () => {
+ it("modifies all fields of an object", () => {
+ expect(updateTransform(data)).toEqual({
+ "null-x": null,
+ "string-x": "myString-x",
+ "number-x": 2,
+ "boolean-x": false,
+ "sSet-x": new Set(["my-x", "string-x", "set-x"]),
+ "nSet-x": new Set([3, 4, 5]),
+ "list-x": [
+ null,
+ "myString-x",
+ 2,
+ false,
+ new Set(["my-x", "string-x", "set-x"]),
+ new Set([3, 4, 5]),
+ ["listInList-x", 2, null],
+ { "mapInList-x": "mapInList-x" },
+ ],
+ "map-x": {
+ "null-x": null,
+ "string-x": "myString-x",
+ "number-x": 2,
+ "boolean-x": false,
+ "sSet-x": new Set(["my-x", "string-x", "set-x"]),
+ "nSet-x": new Set([3, 4, 5]),
+ "listInMap-x": ["listInMap-x", 2, null],
+ "mapInMap-x": { "mapInMap-x": "mapInMap-x" },
+ },
+ });
+ });
+ });
+
+ it("initializes using the static constructor", async () => {
+ expect(doc).toBeInstanceOf(DynamoDBDocument);
+ });
+
+ it(`is using a random TableName=${TableName}`, async () => {
+ // to report the table name
+ });
+
+ it("describes the test table tables", async () => {
+ if (log.describe) {
+ expect(log.describe?.Table?.TableName).toEqual(TableName);
+ }
+ });
+
+ it("creates the test table if it does not exist", async () => {
+ if (log.describe) {
+ throwIfError(log.describe);
+ expect(log.describe?.Table?.TableName).toEqual(TableName);
+ } else {
+ throwIfError(log.create);
+ expect(log.create?.TableDescription?.TableName).toEqual(TableName);
+ }
+ });
+
+ it("can batch write", async () => {
+ throwIfError(log.batchWrite);
+ });
+
+ it("can batch read", async () => {
+ throwIfError(log.batchRead);
+ const results = log.batchRead?.Responses?.[TableName] ?? [];
+
+ for (const result of results) {
+ expect(result.data).toEqual(data[result.id.replace("-batch", "")]);
+ }
+ });
+
+ it("can transact write", async () => {
+ throwIfError(log.transactWrite);
+ });
+
+ it("can transact read", async () => {
+ throwIfError(log.transactRead);
+ const results = log.transactRead?.Responses ?? [];
+
+ for (const result of results) {
+ expect(result.Item?.data).toEqual(data[result.Item?.id.replace("-transact", "")]);
+ }
+ });
+
+ it("can execute transactions", async () => {
+ throwIfError(log.executeTransaction);
+ });
+
+ it("can batch execute statements", async () => {
+ throwIfError(log.batchExecuteStatement);
+
+ expect(log.batchExecuteStatementReadBack?.Responses).toBeInstanceOf(Array);
+ expect(log.batchExecuteStatementReadBack?.Responses?.length).toBeGreaterThan(0);
+ for (const response of log.batchExecuteStatementReadBack?.Responses ?? []) {
+ expect(response.Item?.data).toEqual(data[response.Item?.id?.replace("-batch-statement", "")]);
+ }
+ });
+
+ it("can query", async () => {
+ throwIfError(log.query);
+ expect(log.query?.Items).toContainEqual({
+ id: "map",
+ data: data.map,
+ });
+ });
+
+ it("can scan", async () => {
+ throwIfError(log.scan);
+ expect(log.scan?.Items).toContainEqual({
+ id: "map",
+ data: data.map,
+ });
+
+ expect(log.scan?.Items).toContainEqual({
+ id: "list",
+ data: data.list,
+ });
+ });
+
+ for (const [key, value] of Object.entries(data)) {
+ it(`can write data of type ${key}`, async () => {
+ throwIfError(log.write[key]);
+ expect(log.write[key].$metadata).toBeDefined();
+ });
+
+ it(`can execute statement inserting type ${key}`, async () => {
+ const match = log.executeStatement[key];
+ expect(match).toBeDefined();
+
+ throwIfError(match);
+ });
+
+ it(`can read back data inserted via ExecuteStatement of type ${key}`, async () => {
+ throwIfError(log.executeStatementReadBack[key]);
+ expect(log.executeStatementReadBack[key].Item).toEqual({
+ id: key + "-statement",
+ data: value,
+ });
+ });
+
+ it(`can read back data inserted via ExecuteTransaction of type ${key}`, async () => {
+ throwIfError(log.executeTransactionReadBack[key]);
+ expect(log.executeTransactionReadBack[key].Item).toEqual({
+ id: key + "-exec-transact",
+ data: value,
+ });
+ });
+
+ it(`can read data of type ${key}`, async () => {
+ throwIfError(log.read[key]);
+ expect(log.read[key].Item).toEqual({
+ id: key,
+ data: value,
+ });
+ });
+
+ it(`can update data of type ${key}`, async () => {
+ throwIfError(log.updateReadBack[key]);
+ expect(log.updateReadBack[key].Item).toEqual({
+ id: key,
+ data: updateTransform(value),
+ });
+ });
+
+ it(`can delete data of type ${key}`, async () => {
+ throwIfError(log.delete[key]);
+ expect(log.delete[key].$metadata).toBeDefined();
+ });
+ }
+});
diff --git a/packages/util-dynamodb/src/convertToAttr.ts b/packages/util-dynamodb/src/convertToAttr.ts
index 27c492491949a..d73527401b0e6 100644
--- a/packages/util-dynamodb/src/convertToAttr.ts
+++ b/packages/util-dynamodb/src/convertToAttr.ts
@@ -4,10 +4,10 @@ import { marshallOptions } from "./marshall";
import { NativeAttributeBinary, NativeAttributeValue, NativeScalarAttributeValue } from "./models";
/**
- * Convert a JavaScript value to its equivalent DynamoDB AttributeValue type
+ * Convert a JavaScript value to its equivalent DynamoDB AttributeValue type.
*
- * @param {NativeAttributeValue} data - The data to convert to a DynamoDB AttributeValue
- * @param {marshallOptions} options - An optional configuration object for `convertToAttr`
+ * @param data - The data to convert to a DynamoDB AttributeValue.
+ * @param options - An optional configuration object for `convertToAttr`.
*/
export const convertToAttr = (data: NativeAttributeValue, options?: marshallOptions): AttributeValue => {
if (data === undefined) {
diff --git a/packages/util-dynamodb/src/convertToNative.ts b/packages/util-dynamodb/src/convertToNative.ts
index a22c525d2b802..89ab5777fe6a9 100644
--- a/packages/util-dynamodb/src/convertToNative.ts
+++ b/packages/util-dynamodb/src/convertToNative.ts
@@ -6,8 +6,8 @@ import { unmarshallOptions } from "./unmarshall";
/**
* Convert a DynamoDB AttributeValue object to its equivalent JavaScript type.
*
- * @param {AttributeValue} data - The DynamoDB record to convert to JavaScript type.
- * @param {unmarshallOptions} options - An optional configuration object for `convertToNative`.
+ * @param data - The DynamoDB record to convert to JavaScript type.
+ * @param options - An optional configuration object for `convertToNative`.
*/
export const convertToNative = (data: AttributeValue, options?: unmarshallOptions): NativeAttributeValue => {
for (const [key, value] of Object.entries(data)) {
diff --git a/packages/util-dynamodb/src/marshall.ts b/packages/util-dynamodb/src/marshall.ts
index 8139f583a07fc..717838d564d2e 100644
--- a/packages/util-dynamodb/src/marshall.ts
+++ b/packages/util-dynamodb/src/marshall.ts
@@ -19,13 +19,21 @@ export interface marshallOptions {
* Whether to convert typeof object to map attribute.
*/
convertClassInstanceToMap?: boolean;
+ /**
+ * Whether to convert the top level container
+ * if it is a map or list.
+ *
+ * Default is true when using the DynamoDBDocumentClient,
+ * but false if directly using the marshall function (backwards compatibility).
+ */
+ convertTopLevelContainer?: boolean;
}
/**
* Convert a JavaScript object into a DynamoDB record.
*
- * @param {any} data - The data to convert to a DynamoDB record
- * @param {marshallOptions} options - An optional configuration object for `marshall`
+ * @param data - The data to convert to a DynamoDB record
+ * @param options - An optional configuration object for `marshall`
*
*/
export function marshall(data: Set, options?: marshallOptions): AttributeValue.SSMember;
@@ -49,7 +57,7 @@ export function marshall(data: unknown, options?: marshallOptions) {
switch (key) {
case "M":
case "L":
- return value;
+ return options?.convertTopLevelContainer ? attributeValue : value;
case "SS":
case "NS":
case "BS":
diff --git a/packages/util-dynamodb/src/unmarshall.ts b/packages/util-dynamodb/src/unmarshall.ts
index 3ef8e93befe32..c705e93ea70f7 100644
--- a/packages/util-dynamodb/src/unmarshall.ts
+++ b/packages/util-dynamodb/src/unmarshall.ts
@@ -12,16 +12,30 @@ export interface unmarshallOptions {
* This allows for the safe round-trip transport of numbers of arbitrary size.
*/
wrapNumbers?: boolean;
+ /**
+ * When true, skip wrapping the data in `{ M: data }` before converting.
+ *
+ * Default is true when using the DynamoDBDocumentClient,
+ * but false if directly using the unmarshall function (backwards compatibility).
+ */
+ convertWithoutMapWrapper?: boolean;
}
/**
* Convert a DynamoDB record into a JavaScript object.
*
- * @param {any} data - The DynamoDB record
- * @param {unmarshallOptions} options - An optional configuration object for `unmarshall`
+ * @param data - The DynamoDB record
+ * @param options - An optional configuration object for `unmarshall`
*/
export const unmarshall = (
- data: Record,
+ data: Record | AttributeValue,
options?: unmarshallOptions
-): Record =>
- convertToNative({ M: data }, options) as Record;
+): Record => {
+ if (options?.convertWithoutMapWrapper) {
+ return convertToNative(data as AttributeValue, options);
+ }
+ return convertToNative({ M: data as Record }, options) as Record<
+ string,
+ NativeAttributeValue
+ >;
+};
diff --git a/scripts/generate-clients/single-service.js b/scripts/generate-clients/single-service.js
index bba72ec51a429..b8f0dd24a7964 100644
--- a/scripts/generate-clients/single-service.js
+++ b/scripts/generate-clients/single-service.js
@@ -24,6 +24,7 @@ const { solo } = yargs(process.argv.slice(2))
// post-generation transforms
const clientFolder = join(SDK_CLIENTS_DIR, `client-${solo}`);
+ const libFolder = join(SDK_CLIENTS_DIR, "..", "lib", `lib-${solo}`);
// examples merging
require("../api-examples/get-examples");
@@ -34,6 +35,12 @@ const { solo } = yargs(process.argv.slice(2))
await spawnProcess("npx", ["eslint", "--quiet", "--fix", `${clientFolder}/src/**/*`]);
} catch (ignored) {}
+ if (solo === "dynamodb") {
+ try {
+ await spawnProcess("npx", ["eslint", "--quiet", "--fix", `${libFolder}/src/**/*`]);
+ } catch (ignored) {}
+ }
+
console.log("================ starting prettier ================", "\n", new Date().toString(), solo);
await spawnProcess("npx", [
"prettier",
@@ -43,6 +50,9 @@ const { solo } = yargs(process.argv.slice(2))
`${clientFolder}/src/**/*.{md,js,ts,json}`,
]);
await spawnProcess("npx", ["prettier", "--write", "--loglevel", "warn", `${clientFolder}/README.md`]);
+ if (solo === "dynamodb") {
+ await spawnProcess("npx", ["prettier", "--write", "--loglevel", "warn", `${libFolder}/src/**/*.{md,js,ts,json}`]);
+ }
const compress = require("../endpoints-ruleset/compress");
compress(solo);
From 1ccfce17e1c96c83ba19cbe197c6973e7774495b Mon Sep 17 00:00:00 2001
From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com>
Date: Mon, 9 Oct 2023 06:33:58 -0700
Subject: [PATCH 05/35] chore(clients): support reading ini subsections and get
entire config in configSelector (#5330)
---
clients/client-accessanalyzer/package.json | 36 +-
clients/client-account/package.json | 36 +-
clients/client-acm-pca/package.json | 38 +-
clients/client-acm/package.json | 38 +-
.../client-alexa-for-business/package.json | 36 +-
clients/client-amp/package.json | 38 +-
clients/client-amplify/package.json | 36 +-
clients/client-amplifybackend/package.json | 36 +-
clients/client-amplifyuibuilder/package.json | 36 +-
clients/client-api-gateway/package.json | 38 +-
.../package.json | 36 +-
clients/client-apigatewayv2/package.json | 38 +-
clients/client-app-mesh/package.json | 36 +-
clients/client-appconfig/package.json | 38 +-
clients/client-appconfigdata/package.json | 38 +-
clients/client-appfabric/package.json | 36 +-
clients/client-appflow/package.json | 36 +-
clients/client-appintegrations/package.json | 36 +-
.../package.json | 36 +-
.../package.json | 36 +-
.../client-application-insights/package.json | 36 +-
.../package.json | 36 +-
clients/client-apprunner/package.json | 36 +-
clients/client-appstream/package.json | 38 +-
clients/client-appsync/package.json | 38 +-
clients/client-arc-zonal-shift/package.json | 36 +-
clients/client-athena/package.json | 36 +-
clients/client-auditmanager/package.json | 36 +-
.../client-auto-scaling-plans/package.json | 36 +-
clients/client-auto-scaling/package.json | 38 +-
clients/client-backup-gateway/package.json | 36 +-
clients/client-backup/package.json | 36 +-
clients/client-backupstorage/package.json | 38 +-
clients/client-batch/package.json | 36 +-
clients/client-bedrock-runtime/package.json | 44 +-
clients/client-bedrock/package.json | 36 +-
clients/client-billingconductor/package.json | 36 +-
clients/client-braket/package.json | 36 +-
clients/client-budgets/package.json | 36 +-
.../client-chime-sdk-identity/package.json | 36 +-
.../package.json | 36 +-
.../client-chime-sdk-meetings/package.json | 36 +-
.../client-chime-sdk-messaging/package.json | 36 +-
clients/client-chime-sdk-voice/package.json | 36 +-
clients/client-chime/package.json | 36 +-
clients/client-cleanrooms/package.json | 36 +-
clients/client-cloud9/package.json | 36 +-
clients/client-cloudcontrol/package.json | 38 +-
clients/client-clouddirectory/package.json | 36 +-
clients/client-cloudformation/package.json | 38 +-
clients/client-cloudfront/package.json | 40 +-
clients/client-cloudhsm-v2/package.json | 36 +-
clients/client-cloudhsm/package.json | 36 +-
.../client-cloudsearch-domain/package.json | 36 +-
clients/client-cloudsearch/package.json | 36 +-
clients/client-cloudtrail-data/package.json | 36 +-
clients/client-cloudtrail/package.json | 36 +-
clients/client-cloudwatch-events/package.json | 36 +-
clients/client-cloudwatch-logs/package.json | 36 +-
clients/client-cloudwatch/package.json | 38 +-
clients/client-codeartifact/package.json | 38 +-
clients/client-codebuild/package.json | 36 +-
clients/client-codecatalyst/package.json | 36 +-
clients/client-codecommit/package.json | 36 +-
clients/client-codedeploy/package.json | 38 +-
clients/client-codeguru-reviewer/package.json | 38 +-
clients/client-codeguru-security/package.json | 36 +-
clients/client-codeguruprofiler/package.json | 38 +-
clients/client-codepipeline/package.json | 36 +-
.../client-codestar-connections/package.json | 36 +-
.../package.json | 36 +-
clients/client-codestar/package.json | 36 +-
.../package.json | 36 +-
clients/client-cognito-identity/package.json | 36 +-
clients/client-cognito-sync/package.json | 36 +-
clients/client-comprehend/package.json | 36 +-
clients/client-comprehendmedical/package.json | 36 +-
clients/client-compute-optimizer/package.json | 36 +-
clients/client-config-service/package.json | 36 +-
.../client-connect-contact-lens/package.json | 36 +-
clients/client-connect/package.json | 36 +-
clients/client-connectcampaigns/package.json | 36 +-
clients/client-connectcases/package.json | 36 +-
.../client-connectparticipant/package.json | 36 +-
clients/client-controltower/package.json | 36 +-
.../package.json | 36 +-
clients/client-cost-explorer/package.json | 36 +-
clients/client-customer-profiles/package.json | 36 +-
clients/client-data-pipeline/package.json | 36 +-
.../package.json | 38 +-
clients/client-databrew/package.json | 36 +-
clients/client-dataexchange/package.json | 36 +-
clients/client-datasync/package.json | 36 +-
clients/client-datazone/package.json | 36 +-
clients/client-dax/package.json | 36 +-
clients/client-detective/package.json | 36 +-
clients/client-device-farm/package.json | 36 +-
clients/client-devops-guru/package.json | 36 +-
clients/client-direct-connect/package.json | 36 +-
clients/client-directory-service/package.json | 36 +-
clients/client-dlm/package.json | 36 +-
clients/client-docdb-elastic/package.json | 36 +-
clients/client-docdb/package.json | 38 +-
clients/client-drs/package.json | 36 +-
clients/client-dynamodb-streams/package.json | 36 +-
clients/client-dynamodb/package.json | 38 +-
clients/client-ebs/package.json | 38 +-
.../client-ec2-instance-connect/package.json | 36 +-
clients/client-ec2/package.json | 38 +-
clients/client-ecr-public/package.json | 36 +-
clients/client-ecr/package.json | 38 +-
clients/client-ecs/package.json | 38 +-
clients/client-efs/package.json | 36 +-
clients/client-eks/package.json | 38 +-
clients/client-elastic-beanstalk/package.json | 38 +-
clients/client-elastic-inference/package.json | 36 +-
.../package.json | 38 +-
.../package.json | 38 +-
.../client-elastic-transcoder/package.json | 38 +-
clients/client-elasticache/package.json | 38 +-
.../client-elasticsearch-service/package.json | 36 +-
clients/client-emr-containers/package.json | 36 +-
clients/client-emr-serverless/package.json | 36 +-
clients/client-emr/package.json | 38 +-
clients/client-entityresolution/package.json | 36 +-
clients/client-eventbridge/package.json | 36 +-
clients/client-evidently/package.json | 36 +-
clients/client-finspace-data/package.json | 36 +-
clients/client-finspace/package.json | 36 +-
clients/client-firehose/package.json | 36 +-
clients/client-fis/package.json | 36 +-
clients/client-fms/package.json | 36 +-
clients/client-forecast/package.json | 36 +-
clients/client-forecastquery/package.json | 36 +-
clients/client-frauddetector/package.json | 36 +-
clients/client-fsx/package.json | 36 +-
clients/client-gamelift/package.json | 36 +-
clients/client-gamesparks/package.json | 36 +-
clients/client-glacier/package.json | 40 +-
.../client-global-accelerator/package.json | 36 +-
clients/client-glue/package.json | 36 +-
clients/client-grafana/package.json | 36 +-
clients/client-greengrass/package.json | 36 +-
clients/client-greengrassv2/package.json | 36 +-
clients/client-groundstation/package.json | 38 +-
clients/client-guardduty/package.json | 36 +-
clients/client-health/package.json | 36 +-
clients/client-healthlake/package.json | 36 +-
clients/client-honeycode/package.json | 36 +-
clients/client-iam/package.json | 38 +-
clients/client-identitystore/package.json | 36 +-
clients/client-imagebuilder/package.json | 36 +-
clients/client-inspector/package.json | 36 +-
clients/client-inspector2/package.json | 36 +-
clients/client-internetmonitor/package.json | 36 +-
.../package.json | 36 +-
.../client-iot-1click-projects/package.json | 36 +-
clients/client-iot-data-plane/package.json | 38 +-
clients/client-iot-events-data/package.json | 36 +-
clients/client-iot-events/package.json | 36 +-
.../client-iot-jobs-data-plane/package.json | 36 +-
clients/client-iot-roborunner/package.json | 36 +-
clients/client-iot-wireless/package.json | 38 +-
clients/client-iot/package.json | 36 +-
clients/client-iotanalytics/package.json | 36 +-
clients/client-iotdeviceadvisor/package.json | 36 +-
clients/client-iotfleethub/package.json | 36 +-
clients/client-iotfleetwise/package.json | 36 +-
.../client-iotsecuretunneling/package.json | 36 +-
clients/client-iotsitewise/package.json | 38 +-
clients/client-iotthingsgraph/package.json | 36 +-
clients/client-iottwinmaker/package.json | 36 +-
clients/client-ivs-realtime/package.json | 36 +-
clients/client-ivs/package.json | 36 +-
clients/client-ivschat/package.json | 36 +-
clients/client-kafka/package.json | 36 +-
clients/client-kafkaconnect/package.json | 36 +-
clients/client-kendra-ranking/package.json | 36 +-
clients/client-kendra/package.json | 36 +-
clients/client-keyspaces/package.json | 36 +-
.../client-kinesis-analytics-v2/package.json | 36 +-
clients/client-kinesis-analytics/package.json | 36 +-
.../package.json | 38 +-
.../client-kinesis-video-media/package.json | 38 +-
.../package.json | 36 +-
.../package.json | 36 +-
clients/client-kinesis-video/package.json | 36 +-
clients/client-kinesis/package.json | 44 +-
clients/client-kms/package.json | 36 +-
clients/client-lakeformation/package.json | 38 +-
clients/client-lambda/package.json | 46 +-
.../package.json | 36 +-
clients/client-lex-models-v2/package.json | 38 +-
.../client-lex-runtime-service/package.json | 38 +-
clients/client-lex-runtime-v2/package.json | 44 +-
.../package.json | 36 +-
.../package.json | 36 +-
clients/client-license-manager/package.json | 36 +-
clients/client-lightsail/package.json | 36 +-
clients/client-location/package.json | 38 +-
clients/client-lookoutequipment/package.json | 36 +-
clients/client-lookoutmetrics/package.json | 36 +-
clients/client-lookoutvision/package.json | 36 +-
clients/client-m2/package.json | 36 +-
clients/client-machine-learning/package.json | 38 +-
clients/client-macie/package.json | 36 +-
clients/client-macie2/package.json | 38 +-
.../package.json | 36 +-
clients/client-managedblockchain/package.json | 36 +-
.../client-marketplace-catalog/package.json | 36 +-
.../package.json | 36 +-
.../package.json | 36 +-
.../client-marketplace-metering/package.json | 36 +-
clients/client-mediaconnect/package.json | 38 +-
clients/client-mediaconvert/package.json | 36 +-
clients/client-medialive/package.json | 40 +-
clients/client-mediapackage-vod/package.json | 36 +-
clients/client-mediapackage/package.json | 36 +-
clients/client-mediapackagev2/package.json | 36 +-
clients/client-mediastore-data/package.json | 38 +-
clients/client-mediastore/package.json | 36 +-
clients/client-mediatailor/package.json | 36 +-
clients/client-medical-imaging/package.json | 38 +-
clients/client-memorydb/package.json | 36 +-
clients/client-mgn/package.json | 36 +-
.../package.json | 36 +-
clients/client-migration-hub/package.json | 36 +-
.../client-migrationhub-config/package.json | 36 +-
.../package.json | 36 +-
.../client-migrationhubstrategy/package.json | 36 +-
clients/client-mobile/package.json | 36 +-
clients/client-mq/package.json | 36 +-
clients/client-mturk/package.json | 36 +-
clients/client-mwaa/package.json | 36 +-
clients/client-neptune/package.json | 38 +-
clients/client-neptunedata/package.json | 38 +-
clients/client-network-firewall/package.json | 36 +-
clients/client-networkmanager/package.json | 36 +-
clients/client-nimble/package.json | 38 +-
clients/client-oam/package.json | 36 +-
clients/client-omics/package.json | 40 +-
clients/client-opensearch/package.json | 36 +-
.../client-opensearchserverless/package.json | 36 +-
clients/client-opsworks/package.json | 38 +-
clients/client-opsworkscm/package.json | 38 +-
clients/client-organizations/package.json | 36 +-
clients/client-osis/package.json | 36 +-
clients/client-outposts/package.json | 36 +-
clients/client-panorama/package.json | 36 +-
.../package.json | 36 +-
.../client-payment-cryptography/package.json | 36 +-
clients/client-pca-connector-ad/package.json | 36 +-
.../client-personalize-events/package.json | 36 +-
.../client-personalize-runtime/package.json | 36 +-
clients/client-personalize/package.json | 36 +-
clients/client-pi/package.json | 36 +-
clients/client-pinpoint-email/package.json | 36 +-
.../client-pinpoint-sms-voice-v2/package.json | 36 +-
.../client-pinpoint-sms-voice/package.json | 36 +-
clients/client-pinpoint/package.json | 36 +-
clients/client-pipes/package.json | 36 +-
clients/client-polly/package.json | 38 +-
clients/client-pricing/package.json | 36 +-
clients/client-privatenetworks/package.json | 36 +-
clients/client-proton/package.json | 38 +-
clients/client-qldb-session/package.json | 36 +-
clients/client-qldb/package.json | 36 +-
clients/client-quicksight/package.json | 36 +-
clients/client-ram/package.json | 36 +-
clients/client-rbin/package.json | 36 +-
clients/client-rds-data/package.json | 36 +-
clients/client-rds/package.json | 38 +-
clients/client-redshift-data/package.json | 36 +-
.../client-redshift-serverless/package.json | 36 +-
clients/client-redshift/package.json | 38 +-
clients/client-rekognition/package.json | 38 +-
.../client-rekognitionstreaming/package.json | 42 +-
clients/client-resiliencehub/package.json | 36 +-
.../client-resource-explorer-2/package.json | 36 +-
.../package.json | 36 +-
clients/client-resource-groups/package.json | 36 +-
clients/client-robomaker/package.json | 36 +-
clients/client-rolesanywhere/package.json | 36 +-
clients/client-route-53-domains/package.json | 36 +-
clients/client-route-53/package.json | 38 +-
.../package.json | 36 +-
.../package.json | 38 +-
.../package.json | 36 +-
clients/client-route53resolver/package.json | 36 +-
clients/client-rum/package.json | 36 +-
clients/client-s3-control/package.json | 44 +-
clients/client-s3/package.json | 52 +-
clients/client-s3outposts/package.json | 36 +-
.../client-sagemaker-a2i-runtime/package.json | 36 +-
clients/client-sagemaker-edge/package.json | 36 +-
.../package.json | 36 +-
.../client-sagemaker-geospatial/package.json | 38 +-
clients/client-sagemaker-metrics/package.json | 36 +-
clients/client-sagemaker-runtime/package.json | 44 +-
clients/client-sagemaker/package.json | 38 +-
clients/client-savingsplans/package.json | 36 +-
clients/client-scheduler/package.json | 36 +-
clients/client-schemas/package.json | 40 +-
clients/client-secrets-manager/package.json | 36 +-
clients/client-securityhub/package.json | 36 +-
clients/client-securitylake/package.json | 36 +-
.../package.json | 36 +-
.../package.json | 36 +-
clients/client-service-catalog/package.json | 36 +-
clients/client-service-quotas/package.json | 36 +-
clients/client-servicediscovery/package.json | 36 +-
clients/client-ses/package.json | 38 +-
clients/client-sesv2/package.json | 36 +-
clients/client-sfn/package.json | 36 +-
clients/client-shield/package.json | 36 +-
clients/client-signer/package.json | 38 +-
clients/client-simspaceweaver/package.json | 36 +-
clients/client-sms/package.json | 36 +-
.../package.json | 36 +-
clients/client-snowball/package.json | 36 +-
clients/client-sns/package.json | 36 +-
clients/client-sqs/package.json | 38 +-
clients/client-ssm-contacts/package.json | 36 +-
clients/client-ssm-incidents/package.json | 38 +-
clients/client-ssm-sap/package.json | 36 +-
clients/client-ssm/package.json | 38 +-
clients/client-sso-admin/package.json | 36 +-
clients/client-sso-oidc/package.json | 36 +-
clients/client-sso/package.json | 36 +-
clients/client-storage-gateway/package.json | 36 +-
clients/client-sts/package.json | 36 +-
clients/client-support-app/package.json | 36 +-
clients/client-support/package.json | 36 +-
clients/client-swf/package.json | 36 +-
clients/client-synthetics/package.json | 36 +-
clients/client-textract/package.json | 36 +-
clients/client-timestream-query/package.json | 36 +-
clients/client-timestream-write/package.json | 36 +-
clients/client-tnb/package.json | 38 +-
.../client-transcribe-streaming/package.json | 42 +-
clients/client-transcribe/package.json | 36 +-
clients/client-transfer/package.json | 38 +-
clients/client-translate/package.json | 36 +-
.../client-verifiedpermissions/package.json | 36 +-
clients/client-voice-id/package.json | 36 +-
clients/client-vpc-lattice/package.json | 36 +-
clients/client-waf-regional/package.json | 36 +-
clients/client-waf/package.json | 36 +-
clients/client-wafv2/package.json | 36 +-
clients/client-wellarchitected/package.json | 36 +-
clients/client-wisdom/package.json | 36 +-
clients/client-workdocs/package.json | 36 +-
clients/client-worklink/package.json | 36 +-
clients/client-workmail/package.json | 36 +-
.../client-workmailmessageflow/package.json | 38 +-
clients/client-workspaces-web/package.json | 36 +-
clients/client-workspaces/package.json | 36 +-
clients/client-xray/package.json | 36 +-
lib/lib-dynamodb/package.json | 4 +-
lib/lib-storage/package.json | 6 +-
packages/body-checksum-browser/package.json | 4 +-
packages/body-checksum-node/package.json | 4 +-
packages/cloudfront-signer/package.json | 2 +-
.../package.json | 2 +-
packages/credential-provider-env/package.json | 2 +-
.../credential-provider-http/package.json | 8 +-
packages/credential-provider-ini/package.json | 2 +-
.../credential-provider-node/package.json | 2 +-
.../credential-provider-process/package.json | 2 +-
packages/credential-provider-sso/package.json | 2 +-
.../package.json | 2 +-
packages/credential-providers/package.json | 2 +-
.../eventstream-handler-node/package.json | 2 +-
packages/middleware-api-key/package.json | 6 +-
.../middleware-bucket-endpoint/package.json | 6 +-
.../package.json | 6 +-
packages/middleware-eventstream/package.json | 4 +-
.../middleware-expect-continue/package.json | 4 +-
.../package.json | 6 +-
packages/middleware-host-header/package.json | 4 +-
.../package.json | 2 +-
packages/middleware-logger/package.json | 2 +-
.../package.json | 4 +-
.../middleware-sdk-api-gateway/package.json | 4 +-
packages/middleware-sdk-ec2/package.json | 8 +-
packages/middleware-sdk-glacier/package.json | 4 +-
.../package.json | 4 +-
packages/middleware-sdk-rds/package.json | 6 +-
packages/middleware-sdk-route53/package.json | 2 +-
.../middleware-sdk-s3-control/package.json | 6 +-
packages/middleware-sdk-s3/package.json | 6 +-
packages/middleware-sdk-sqs/package.json | 2 +-
packages/middleware-sdk-sts/package.json | 2 +-
.../package.json | 6 +-
packages/middleware-signing/package.json | 6 +-
packages/middleware-ssec/package.json | 2 +-
packages/middleware-token/package.json | 6 +-
packages/middleware-user-agent/package.json | 4 +-
packages/middleware-websocket/package.json | 8 +-
packages/polly-request-presigner/package.json | 4 +-
packages/rds-signer/package.json | 12 +-
packages/region-config-resolver/package.json | 6 +-
packages/s3-presigned-post/package.json | 4 +-
packages/s3-request-presigner/package.json | 10 +-
packages/sha256-tree-hash/package.json | 2 +-
packages/signature-v4-crt/package.json | 6 +-
.../signature-v4-multi-region/package.json | 4 +-
packages/smithy-client/package.json | 2 +-
packages/token-providers/package.json | 36 +-
packages/types/package.json | 2 +-
packages/util-create-request/package.json | 8 +-
packages/util-endpoints/package.json | 2 +-
packages/util-format-url/package.json | 4 +-
packages/util-user-agent-browser/package.json | 2 +-
packages/util-user-agent-node/package.json | 4 +-
packages/xhr-http-handler/package.json | 6 +-
private/aws-client-api-test/package.json | 26 +-
private/aws-client-retry-test/package.json | 6 +-
private/aws-echo-service/package.json | 34 +-
private/aws-middleware-test/package.json | 6 +-
private/aws-protocoltests-ec2/package.json | 34 +-
.../aws-protocoltests-json-10/package.json | 34 +-
private/aws-protocoltests-json/package.json | 34 +-
private/aws-protocoltests-query/package.json | 34 +-
.../aws-protocoltests-restjson/package.json | 46 +-
.../aws-protocoltests-restxml/package.json | 38 +-
private/aws-restjson-server/package.json | 30 +-
.../package.json | 30 +-
private/aws-util-test/package.json | 4 +-
private/weather/package.json | 36 +-
scripts/generate-clients/config.js | 2 +-
yarn.lock | 492 +++++++++---------
432 files changed, 7146 insertions(+), 7146 deletions(-)
diff --git a/clients/client-accessanalyzer/package.json b/clients/client-accessanalyzer/package.json
index 73ff5e4b4c7b9..10654fa85c0ec 100644
--- a/clients/client-accessanalyzer/package.json
+++ b/clients/client-accessanalyzer/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-account/package.json b/clients/client-account/package.json
index 12e354e23f368..4a7b5e1994137 100644
--- a/clients/client-account/package.json
+++ b/clients/client-account/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-acm-pca/package.json b/clients/client-acm-pca/package.json
index 8621eca071c5c..1fd5605962ff1 100644
--- a/clients/client-acm-pca/package.json
+++ b/clients/client-acm-pca/package.json
@@ -33,29 +33,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/clients/client-acm/package.json b/clients/client-acm/package.json
index 3169e1fc0ac6b..a149557674259 100644
--- a/clients/client-acm/package.json
+++ b/clients/client-acm/package.json
@@ -33,29 +33,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/clients/client-alexa-for-business/package.json b/clients/client-alexa-for-business/package.json
index bf1dd44951a58..4b4a40535fd30 100644
--- a/clients/client-alexa-for-business/package.json
+++ b/clients/client-alexa-for-business/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-amp/package.json b/clients/client-amp/package.json
index 9e0207cbc2896..285fccff042d8 100644
--- a/clients/client-amp/package.json
+++ b/clients/client-amp/package.json
@@ -33,29 +33,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
},
diff --git a/clients/client-amplify/package.json b/clients/client-amplify/package.json
index 6832873a09682..d73d7239e4161 100644
--- a/clients/client-amplify/package.json
+++ b/clients/client-amplify/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-amplifybackend/package.json b/clients/client-amplifybackend/package.json
index 4d39ef3216241..21979e925f0af 100644
--- a/clients/client-amplifybackend/package.json
+++ b/clients/client-amplifybackend/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-amplifyuibuilder/package.json b/clients/client-amplifyuibuilder/package.json
index 6e1aef1eced43..f3f98b1b95822 100644
--- a/clients/client-amplifyuibuilder/package.json
+++ b/clients/client-amplifyuibuilder/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-api-gateway/package.json b/clients/client-api-gateway/package.json
index 2adb97ae02d30..a28bf35a8bb6c 100644
--- a/clients/client-api-gateway/package.json
+++ b/clients/client-api-gateway/package.json
@@ -34,28 +34,28 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
- "@smithy/util-stream": "^2.0.14",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
+ "@smithy/util-stream": "^2.0.15",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-apigatewaymanagementapi/package.json b/clients/client-apigatewaymanagementapi/package.json
index a71a2a7e6b495..1b36f83bea4b8 100644
--- a/clients/client-apigatewaymanagementapi/package.json
+++ b/clients/client-apigatewaymanagementapi/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-apigatewayv2/package.json b/clients/client-apigatewayv2/package.json
index e4d897592d50c..07b3f51b2b390 100644
--- a/clients/client-apigatewayv2/package.json
+++ b/clients/client-apigatewayv2/package.json
@@ -33,28 +33,28 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
- "@smithy/util-stream": "^2.0.14",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
+ "@smithy/util-stream": "^2.0.15",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-app-mesh/package.json b/clients/client-app-mesh/package.json
index 907cdec5192ac..25f1a7aebde1d 100644
--- a/clients/client-app-mesh/package.json
+++ b/clients/client-app-mesh/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-appconfig/package.json b/clients/client-appconfig/package.json
index d5ca5ed8d17a8..a708bb43bfd53 100644
--- a/clients/client-appconfig/package.json
+++ b/clients/client-appconfig/package.json
@@ -33,28 +33,28 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
- "@smithy/util-stream": "^2.0.14",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
+ "@smithy/util-stream": "^2.0.15",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-appconfigdata/package.json b/clients/client-appconfigdata/package.json
index 18b017de2bf70..5a1125aa2254e 100644
--- a/clients/client-appconfigdata/package.json
+++ b/clients/client-appconfigdata/package.json
@@ -33,28 +33,28 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
- "@smithy/util-stream": "^2.0.14",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
+ "@smithy/util-stream": "^2.0.15",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-appfabric/package.json b/clients/client-appfabric/package.json
index 86c3cb749cd85..77f38bf4402da 100644
--- a/clients/client-appfabric/package.json
+++ b/clients/client-appfabric/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-appflow/package.json b/clients/client-appflow/package.json
index 518600c21a982..50a138beacdbc 100644
--- a/clients/client-appflow/package.json
+++ b/clients/client-appflow/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-appintegrations/package.json b/clients/client-appintegrations/package.json
index 0787708961543..009475870bfc9 100644
--- a/clients/client-appintegrations/package.json
+++ b/clients/client-appintegrations/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-application-auto-scaling/package.json b/clients/client-application-auto-scaling/package.json
index f3cb49fc7bc94..d8da8146a4912 100644
--- a/clients/client-application-auto-scaling/package.json
+++ b/clients/client-application-auto-scaling/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-application-discovery-service/package.json b/clients/client-application-discovery-service/package.json
index 210ab44258a4c..2f000a8ab366c 100644
--- a/clients/client-application-discovery-service/package.json
+++ b/clients/client-application-discovery-service/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-application-insights/package.json b/clients/client-application-insights/package.json
index 6394f1341e932..b3b1453e31460 100644
--- a/clients/client-application-insights/package.json
+++ b/clients/client-application-insights/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-applicationcostprofiler/package.json b/clients/client-applicationcostprofiler/package.json
index d2f1c9957792e..e6f6335a06978 100644
--- a/clients/client-applicationcostprofiler/package.json
+++ b/clients/client-applicationcostprofiler/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-apprunner/package.json b/clients/client-apprunner/package.json
index 43227864a2f09..aabd57121b271 100644
--- a/clients/client-apprunner/package.json
+++ b/clients/client-apprunner/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-appstream/package.json b/clients/client-appstream/package.json
index 31170137d1825..d19b9d3153005 100644
--- a/clients/client-appstream/package.json
+++ b/clients/client-appstream/package.json
@@ -33,29 +33,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/clients/client-appsync/package.json b/clients/client-appsync/package.json
index b580dd1ad2aad..3a9bf72570066 100644
--- a/clients/client-appsync/package.json
+++ b/clients/client-appsync/package.json
@@ -33,28 +33,28 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
- "@smithy/util-stream": "^2.0.14",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
+ "@smithy/util-stream": "^2.0.15",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-arc-zonal-shift/package.json b/clients/client-arc-zonal-shift/package.json
index 0d7cabcfc8161..84a62b95577e7 100644
--- a/clients/client-arc-zonal-shift/package.json
+++ b/clients/client-arc-zonal-shift/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-athena/package.json b/clients/client-athena/package.json
index 4d8cd19ce3e37..d62f2282d4301 100644
--- a/clients/client-athena/package.json
+++ b/clients/client-athena/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-auditmanager/package.json b/clients/client-auditmanager/package.json
index f35e930888014..a12d8cf316b4c 100644
--- a/clients/client-auditmanager/package.json
+++ b/clients/client-auditmanager/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-auto-scaling-plans/package.json b/clients/client-auto-scaling-plans/package.json
index 387043ecb04e3..63343600f86f3 100644
--- a/clients/client-auto-scaling-plans/package.json
+++ b/clients/client-auto-scaling-plans/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-auto-scaling/package.json b/clients/client-auto-scaling/package.json
index 3068beed95fee..4aa1a2bc7afc1 100644
--- a/clients/client-auto-scaling/package.json
+++ b/clients/client-auto-scaling/package.json
@@ -33,29 +33,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"fast-xml-parser": "4.2.5",
"tslib": "^2.5.0"
},
diff --git a/clients/client-backup-gateway/package.json b/clients/client-backup-gateway/package.json
index 0b4e012d756a3..c691557e0da20 100644
--- a/clients/client-backup-gateway/package.json
+++ b/clients/client-backup-gateway/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-backup/package.json b/clients/client-backup/package.json
index feb833298da27..9743bee4d5809 100644
--- a/clients/client-backup/package.json
+++ b/clients/client-backup/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-backupstorage/package.json b/clients/client-backupstorage/package.json
index c188e3b82fed6..db7ecd2b6c9f0 100644
--- a/clients/client-backupstorage/package.json
+++ b/clients/client-backupstorage/package.json
@@ -33,28 +33,28 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
- "@smithy/util-stream": "^2.0.14",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
+ "@smithy/util-stream": "^2.0.15",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-batch/package.json b/clients/client-batch/package.json
index 5141fefdef2b0..c1e6fefdbc5a8 100644
--- a/clients/client-batch/package.json
+++ b/clients/client-batch/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-bedrock-runtime/package.json b/clients/client-bedrock-runtime/package.json
index f2b1ca3b36317..f8c138f2ee67e 100644
--- a/clients/client-bedrock-runtime/package.json
+++ b/clients/client-bedrock-runtime/package.json
@@ -33,31 +33,31 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/eventstream-serde-browser": "^2.0.10",
- "@smithy/eventstream-serde-config-resolver": "^2.0.10",
- "@smithy/eventstream-serde-node": "^2.0.10",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/eventstream-serde-browser": "^2.0.11",
+ "@smithy/eventstream-serde-config-resolver": "^2.0.11",
+ "@smithy/eventstream-serde-node": "^2.0.11",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
- "@smithy/util-stream": "^2.0.14",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
+ "@smithy/util-stream": "^2.0.15",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-bedrock/package.json b/clients/client-bedrock/package.json
index 0f5091968cc05..e701740f1ab83 100644
--- a/clients/client-bedrock/package.json
+++ b/clients/client-bedrock/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-billingconductor/package.json b/clients/client-billingconductor/package.json
index 2bc035ea10973..a76a62df56e5e 100644
--- a/clients/client-billingconductor/package.json
+++ b/clients/client-billingconductor/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-braket/package.json b/clients/client-braket/package.json
index 7aaf63657a451..6a05003eafaac 100644
--- a/clients/client-braket/package.json
+++ b/clients/client-braket/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-budgets/package.json b/clients/client-budgets/package.json
index 2ff9ce517c1d1..9255a521e0f7f 100644
--- a/clients/client-budgets/package.json
+++ b/clients/client-budgets/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-chime-sdk-identity/package.json b/clients/client-chime-sdk-identity/package.json
index 052a53a660148..3510a3a12a2af 100644
--- a/clients/client-chime-sdk-identity/package.json
+++ b/clients/client-chime-sdk-identity/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-chime-sdk-media-pipelines/package.json b/clients/client-chime-sdk-media-pipelines/package.json
index e06a7018333ab..c1fc6cde21bd4 100644
--- a/clients/client-chime-sdk-media-pipelines/package.json
+++ b/clients/client-chime-sdk-media-pipelines/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-chime-sdk-meetings/package.json b/clients/client-chime-sdk-meetings/package.json
index 7c2319123cad4..9ae89bbf4f7aa 100644
--- a/clients/client-chime-sdk-meetings/package.json
+++ b/clients/client-chime-sdk-meetings/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-chime-sdk-messaging/package.json b/clients/client-chime-sdk-messaging/package.json
index 169f175822e9c..7a474cc58e6b7 100644
--- a/clients/client-chime-sdk-messaging/package.json
+++ b/clients/client-chime-sdk-messaging/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-chime-sdk-voice/package.json b/clients/client-chime-sdk-voice/package.json
index eac47bca05ab9..c27a46eb7906a 100644
--- a/clients/client-chime-sdk-voice/package.json
+++ b/clients/client-chime-sdk-voice/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-chime/package.json b/clients/client-chime/package.json
index d6c504abae5d4..2be2cc21694e9 100644
--- a/clients/client-chime/package.json
+++ b/clients/client-chime/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-cleanrooms/package.json b/clients/client-cleanrooms/package.json
index f9d7d80d2cffc..24d73bb3eb9a7 100644
--- a/clients/client-cleanrooms/package.json
+++ b/clients/client-cleanrooms/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-cloud9/package.json b/clients/client-cloud9/package.json
index eeee51fe6a7c4..176ce03be542c 100644
--- a/clients/client-cloud9/package.json
+++ b/clients/client-cloud9/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-cloudcontrol/package.json b/clients/client-cloudcontrol/package.json
index 79c4ab4193a42..eda4c3993466e 100644
--- a/clients/client-cloudcontrol/package.json
+++ b/clients/client-cloudcontrol/package.json
@@ -33,29 +33,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
},
diff --git a/clients/client-clouddirectory/package.json b/clients/client-clouddirectory/package.json
index c4c8f1d135e5b..eaf2b3cccacc8 100644
--- a/clients/client-clouddirectory/package.json
+++ b/clients/client-clouddirectory/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-cloudformation/package.json b/clients/client-cloudformation/package.json
index eb75c40a57c10..031353e3129df 100644
--- a/clients/client-cloudformation/package.json
+++ b/clients/client-cloudformation/package.json
@@ -33,29 +33,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"fast-xml-parser": "4.2.5",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-cloudfront/package.json b/clients/client-cloudfront/package.json
index 06d42e88391b0..4b10af82d9778 100644
--- a/clients/client-cloudfront/package.json
+++ b/clients/client-cloudfront/package.json
@@ -34,30 +34,30 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@aws-sdk/xml-builder": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
- "@smithy/util-stream": "^2.0.14",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
+ "@smithy/util-stream": "^2.0.15",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"fast-xml-parser": "4.2.5",
"tslib": "^2.5.0"
},
diff --git a/clients/client-cloudhsm-v2/package.json b/clients/client-cloudhsm-v2/package.json
index b95f5482b73c1..c70821787d8df 100644
--- a/clients/client-cloudhsm-v2/package.json
+++ b/clients/client-cloudhsm-v2/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-cloudhsm/package.json b/clients/client-cloudhsm/package.json
index 11ef30ca3520a..1c128c5360f43 100644
--- a/clients/client-cloudhsm/package.json
+++ b/clients/client-cloudhsm/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-cloudsearch-domain/package.json b/clients/client-cloudsearch-domain/package.json
index 4b6c9cb71512b..0adb7acae6600 100644
--- a/clients/client-cloudsearch-domain/package.json
+++ b/clients/client-cloudsearch-domain/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-cloudsearch/package.json b/clients/client-cloudsearch/package.json
index 5ef7263f439eb..31b4d35fba577 100644
--- a/clients/client-cloudsearch/package.json
+++ b/clients/client-cloudsearch/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"fast-xml-parser": "4.2.5",
"tslib": "^2.5.0"
diff --git a/clients/client-cloudtrail-data/package.json b/clients/client-cloudtrail-data/package.json
index 75c6575a49fc0..4530284b993ba 100644
--- a/clients/client-cloudtrail-data/package.json
+++ b/clients/client-cloudtrail-data/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-cloudtrail/package.json b/clients/client-cloudtrail/package.json
index 6e2ce62e1628b..6300cf924a422 100644
--- a/clients/client-cloudtrail/package.json
+++ b/clients/client-cloudtrail/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-cloudwatch-events/package.json b/clients/client-cloudwatch-events/package.json
index c7f0ef35e8f34..eb5d6d9b8ad15 100644
--- a/clients/client-cloudwatch-events/package.json
+++ b/clients/client-cloudwatch-events/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-cloudwatch-logs/package.json b/clients/client-cloudwatch-logs/package.json
index c1724045b7dce..9bbf9794817ba 100644
--- a/clients/client-cloudwatch-logs/package.json
+++ b/clients/client-cloudwatch-logs/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-cloudwatch/package.json b/clients/client-cloudwatch/package.json
index ce7d988a4d3ba..de3b98e48ac19 100644
--- a/clients/client-cloudwatch/package.json
+++ b/clients/client-cloudwatch/package.json
@@ -33,29 +33,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"fast-xml-parser": "4.2.5",
"tslib": "^2.5.0"
},
diff --git a/clients/client-codeartifact/package.json b/clients/client-codeartifact/package.json
index 9293bc9700559..5bbb974be6059 100644
--- a/clients/client-codeartifact/package.json
+++ b/clients/client-codeartifact/package.json
@@ -33,28 +33,28 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
- "@smithy/util-stream": "^2.0.14",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
+ "@smithy/util-stream": "^2.0.15",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-codebuild/package.json b/clients/client-codebuild/package.json
index ea2b647f59d1e..fa642d000c7c8 100644
--- a/clients/client-codebuild/package.json
+++ b/clients/client-codebuild/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-codecatalyst/package.json b/clients/client-codecatalyst/package.json
index 13788903dee27..da6cf27b84398 100644
--- a/clients/client-codecatalyst/package.json
+++ b/clients/client-codecatalyst/package.json
@@ -31,27 +31,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-codecommit/package.json b/clients/client-codecommit/package.json
index 14f0028d4edd4..32e183b7ad5a6 100644
--- a/clients/client-codecommit/package.json
+++ b/clients/client-codecommit/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-codedeploy/package.json b/clients/client-codedeploy/package.json
index 446756bca05b5..788670ba75dad 100644
--- a/clients/client-codedeploy/package.json
+++ b/clients/client-codedeploy/package.json
@@ -33,29 +33,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/clients/client-codeguru-reviewer/package.json b/clients/client-codeguru-reviewer/package.json
index 7804469ecef35..d1eee90f2d198 100644
--- a/clients/client-codeguru-reviewer/package.json
+++ b/clients/client-codeguru-reviewer/package.json
@@ -33,29 +33,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
},
diff --git a/clients/client-codeguru-security/package.json b/clients/client-codeguru-security/package.json
index 66bbfada57d01..735510c8aa58e 100644
--- a/clients/client-codeguru-security/package.json
+++ b/clients/client-codeguru-security/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-codeguruprofiler/package.json b/clients/client-codeguruprofiler/package.json
index 5a0ec5f47bc76..f803a360a5165 100644
--- a/clients/client-codeguruprofiler/package.json
+++ b/clients/client-codeguruprofiler/package.json
@@ -33,28 +33,28 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
- "@smithy/util-stream": "^2.0.14",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
+ "@smithy/util-stream": "^2.0.15",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-codepipeline/package.json b/clients/client-codepipeline/package.json
index 54f5f130dcdc1..4695f7e0821cd 100644
--- a/clients/client-codepipeline/package.json
+++ b/clients/client-codepipeline/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-codestar-connections/package.json b/clients/client-codestar-connections/package.json
index 6c126b6cb9fcb..9fe2bf2ad069a 100644
--- a/clients/client-codestar-connections/package.json
+++ b/clients/client-codestar-connections/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-codestar-notifications/package.json b/clients/client-codestar-notifications/package.json
index 43ef8faa9d746..75a79b672af5e 100644
--- a/clients/client-codestar-notifications/package.json
+++ b/clients/client-codestar-notifications/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-codestar/package.json b/clients/client-codestar/package.json
index 2c1a5c1e6a8e3..7c1fd701aaac8 100644
--- a/clients/client-codestar/package.json
+++ b/clients/client-codestar/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-cognito-identity-provider/package.json b/clients/client-cognito-identity-provider/package.json
index 1af1ffc4fa6fd..a0174b1d5e2c1 100644
--- a/clients/client-cognito-identity-provider/package.json
+++ b/clients/client-cognito-identity-provider/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-cognito-identity/package.json b/clients/client-cognito-identity/package.json
index 1c579eb2fe034..00ae2b0bc01a6 100644
--- a/clients/client-cognito-identity/package.json
+++ b/clients/client-cognito-identity/package.json
@@ -34,27 +34,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-cognito-sync/package.json b/clients/client-cognito-sync/package.json
index 768c615429cc3..42a46dffea4d6 100644
--- a/clients/client-cognito-sync/package.json
+++ b/clients/client-cognito-sync/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-comprehend/package.json b/clients/client-comprehend/package.json
index f706efbee295d..61146eb6ff204 100644
--- a/clients/client-comprehend/package.json
+++ b/clients/client-comprehend/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-comprehendmedical/package.json b/clients/client-comprehendmedical/package.json
index 31458da01d317..3a7956b4d6896 100644
--- a/clients/client-comprehendmedical/package.json
+++ b/clients/client-comprehendmedical/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-compute-optimizer/package.json b/clients/client-compute-optimizer/package.json
index 95ea896c163ec..0dd5a79fbce89 100644
--- a/clients/client-compute-optimizer/package.json
+++ b/clients/client-compute-optimizer/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-config-service/package.json b/clients/client-config-service/package.json
index eed4e54ed5a33..fad492d99b624 100644
--- a/clients/client-config-service/package.json
+++ b/clients/client-config-service/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-connect-contact-lens/package.json b/clients/client-connect-contact-lens/package.json
index ebd4cca4b2d94..2865e00c9eade 100644
--- a/clients/client-connect-contact-lens/package.json
+++ b/clients/client-connect-contact-lens/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-connect/package.json b/clients/client-connect/package.json
index a459d1f2b942e..6cc592f6f321a 100644
--- a/clients/client-connect/package.json
+++ b/clients/client-connect/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-connectcampaigns/package.json b/clients/client-connectcampaigns/package.json
index fde601f019b12..5ec66a7f87bc4 100644
--- a/clients/client-connectcampaigns/package.json
+++ b/clients/client-connectcampaigns/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-connectcases/package.json b/clients/client-connectcases/package.json
index b0a4c248e3763..39e973a7ca66e 100644
--- a/clients/client-connectcases/package.json
+++ b/clients/client-connectcases/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-connectparticipant/package.json b/clients/client-connectparticipant/package.json
index 93741d7bca005..f9f5f34fdcac8 100644
--- a/clients/client-connectparticipant/package.json
+++ b/clients/client-connectparticipant/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-controltower/package.json b/clients/client-controltower/package.json
index 08584ee9716d4..01639b3cb9f7f 100644
--- a/clients/client-controltower/package.json
+++ b/clients/client-controltower/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-cost-and-usage-report-service/package.json b/clients/client-cost-and-usage-report-service/package.json
index fe5c2185e2969..87c4f93124bca 100644
--- a/clients/client-cost-and-usage-report-service/package.json
+++ b/clients/client-cost-and-usage-report-service/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-cost-explorer/package.json b/clients/client-cost-explorer/package.json
index 8b83eb9bceeac..2e15ca44c7e23 100644
--- a/clients/client-cost-explorer/package.json
+++ b/clients/client-cost-explorer/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-customer-profiles/package.json b/clients/client-customer-profiles/package.json
index 9078b252c35eb..39e9e668a0738 100644
--- a/clients/client-customer-profiles/package.json
+++ b/clients/client-customer-profiles/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-data-pipeline/package.json b/clients/client-data-pipeline/package.json
index ff08449270445..fe8eb9dc781b2 100644
--- a/clients/client-data-pipeline/package.json
+++ b/clients/client-data-pipeline/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-database-migration-service/package.json b/clients/client-database-migration-service/package.json
index d4a75f6ad075e..11182d2112208 100644
--- a/clients/client-database-migration-service/package.json
+++ b/clients/client-database-migration-service/package.json
@@ -33,29 +33,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/clients/client-databrew/package.json b/clients/client-databrew/package.json
index a3df78082eaea..414ed9ccbe895 100644
--- a/clients/client-databrew/package.json
+++ b/clients/client-databrew/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-dataexchange/package.json b/clients/client-dataexchange/package.json
index 5306fc2e5cf4f..99797f8996535 100644
--- a/clients/client-dataexchange/package.json
+++ b/clients/client-dataexchange/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-datasync/package.json b/clients/client-datasync/package.json
index 72eb22a8c195a..e84c5a13b5918 100644
--- a/clients/client-datasync/package.json
+++ b/clients/client-datasync/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-datazone/package.json b/clients/client-datazone/package.json
index 6f1f1c6be30a1..a8eb6d2cc0ea4 100644
--- a/clients/client-datazone/package.json
+++ b/clients/client-datazone/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-dax/package.json b/clients/client-dax/package.json
index d77ed64296141..c6676069b1bbf 100644
--- a/clients/client-dax/package.json
+++ b/clients/client-dax/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-detective/package.json b/clients/client-detective/package.json
index 912d967152b3d..5a5f4ec7daf10 100644
--- a/clients/client-detective/package.json
+++ b/clients/client-detective/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-device-farm/package.json b/clients/client-device-farm/package.json
index 3c5cbf70dd7ba..a1dd0b505bc17 100644
--- a/clients/client-device-farm/package.json
+++ b/clients/client-device-farm/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-devops-guru/package.json b/clients/client-devops-guru/package.json
index c1614d301106d..14b168fd23672 100644
--- a/clients/client-devops-guru/package.json
+++ b/clients/client-devops-guru/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-direct-connect/package.json b/clients/client-direct-connect/package.json
index 1a78d32d89ac2..6b31dd0a36e8c 100644
--- a/clients/client-direct-connect/package.json
+++ b/clients/client-direct-connect/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-directory-service/package.json b/clients/client-directory-service/package.json
index 64535daf281f2..a61afac4fd03a 100644
--- a/clients/client-directory-service/package.json
+++ b/clients/client-directory-service/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-dlm/package.json b/clients/client-dlm/package.json
index acb533eca302b..3204b24f283f3 100644
--- a/clients/client-dlm/package.json
+++ b/clients/client-dlm/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-docdb-elastic/package.json b/clients/client-docdb-elastic/package.json
index eca0ed75af050..ca6883c035e27 100644
--- a/clients/client-docdb-elastic/package.json
+++ b/clients/client-docdb-elastic/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-docdb/package.json b/clients/client-docdb/package.json
index d10f15b9fb7a6..92c1698826fe5 100644
--- a/clients/client-docdb/package.json
+++ b/clients/client-docdb/package.json
@@ -34,29 +34,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"fast-xml-parser": "4.2.5",
"tslib": "^2.5.0"
},
diff --git a/clients/client-drs/package.json b/clients/client-drs/package.json
index 78462c38e65e8..dfcf389d766db 100644
--- a/clients/client-drs/package.json
+++ b/clients/client-drs/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-dynamodb-streams/package.json b/clients/client-dynamodb-streams/package.json
index d812c78dbbe47..004e6cd74162b 100644
--- a/clients/client-dynamodb-streams/package.json
+++ b/clients/client-dynamodb-streams/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-dynamodb/package.json b/clients/client-dynamodb/package.json
index 72249a991cc8f..45e997d840b84 100644
--- a/clients/client-dynamodb/package.json
+++ b/clients/client-dynamodb/package.json
@@ -34,29 +34,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
},
diff --git a/clients/client-ebs/package.json b/clients/client-ebs/package.json
index 679abbf656c18..e3f54e8ff9d28 100644
--- a/clients/client-ebs/package.json
+++ b/clients/client-ebs/package.json
@@ -33,28 +33,28 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
- "@smithy/util-stream": "^2.0.14",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
+ "@smithy/util-stream": "^2.0.15",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-ec2-instance-connect/package.json b/clients/client-ec2-instance-connect/package.json
index d8349be2ec970..3693d69b97edd 100644
--- a/clients/client-ec2-instance-connect/package.json
+++ b/clients/client-ec2-instance-connect/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-ec2/package.json b/clients/client-ec2/package.json
index e241766c56749..cbfd95e33b56e 100644
--- a/clients/client-ec2/package.json
+++ b/clients/client-ec2/package.json
@@ -34,29 +34,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"fast-xml-parser": "4.2.5",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-ecr-public/package.json b/clients/client-ecr-public/package.json
index c51da8f273513..9bdd6d5b295a0 100644
--- a/clients/client-ecr-public/package.json
+++ b/clients/client-ecr-public/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-ecr/package.json b/clients/client-ecr/package.json
index f432dcb45250f..b41a2b8d90685 100644
--- a/clients/client-ecr/package.json
+++ b/clients/client-ecr/package.json
@@ -33,29 +33,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/clients/client-ecs/package.json b/clients/client-ecs/package.json
index 6af1df84fec15..5a10bfd26bf98 100644
--- a/clients/client-ecs/package.json
+++ b/clients/client-ecs/package.json
@@ -33,29 +33,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/clients/client-efs/package.json b/clients/client-efs/package.json
index b9c22381c023f..9c5a0179f1679 100644
--- a/clients/client-efs/package.json
+++ b/clients/client-efs/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-eks/package.json b/clients/client-eks/package.json
index 3bc5dc738da10..d44190d0bbf4d 100644
--- a/clients/client-eks/package.json
+++ b/clients/client-eks/package.json
@@ -33,29 +33,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
},
diff --git a/clients/client-elastic-beanstalk/package.json b/clients/client-elastic-beanstalk/package.json
index b58939063e59e..46f90c664b976 100644
--- a/clients/client-elastic-beanstalk/package.json
+++ b/clients/client-elastic-beanstalk/package.json
@@ -33,29 +33,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"fast-xml-parser": "4.2.5",
"tslib": "^2.5.0"
},
diff --git a/clients/client-elastic-inference/package.json b/clients/client-elastic-inference/package.json
index 9ae1211fc4e80..9c7fd35cabeec 100644
--- a/clients/client-elastic-inference/package.json
+++ b/clients/client-elastic-inference/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-elastic-load-balancing-v2/package.json b/clients/client-elastic-load-balancing-v2/package.json
index 417df4d88385b..b4df33a7620f9 100644
--- a/clients/client-elastic-load-balancing-v2/package.json
+++ b/clients/client-elastic-load-balancing-v2/package.json
@@ -33,29 +33,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"fast-xml-parser": "4.2.5",
"tslib": "^2.5.0"
},
diff --git a/clients/client-elastic-load-balancing/package.json b/clients/client-elastic-load-balancing/package.json
index ae9948be86f79..0729106307232 100644
--- a/clients/client-elastic-load-balancing/package.json
+++ b/clients/client-elastic-load-balancing/package.json
@@ -33,29 +33,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"fast-xml-parser": "4.2.5",
"tslib": "^2.5.0"
},
diff --git a/clients/client-elastic-transcoder/package.json b/clients/client-elastic-transcoder/package.json
index ec83b9872749d..8cb8e26cc9c9d 100644
--- a/clients/client-elastic-transcoder/package.json
+++ b/clients/client-elastic-transcoder/package.json
@@ -33,29 +33,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/clients/client-elasticache/package.json b/clients/client-elasticache/package.json
index d149fa2c2fc68..577d4de1c3ed5 100644
--- a/clients/client-elasticache/package.json
+++ b/clients/client-elasticache/package.json
@@ -33,29 +33,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"fast-xml-parser": "4.2.5",
"tslib": "^2.5.0"
},
diff --git a/clients/client-elasticsearch-service/package.json b/clients/client-elasticsearch-service/package.json
index 028ebfea0ce60..243f5f8bd5269 100644
--- a/clients/client-elasticsearch-service/package.json
+++ b/clients/client-elasticsearch-service/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-emr-containers/package.json b/clients/client-emr-containers/package.json
index a09d202e157a7..48afdee87ec9c 100644
--- a/clients/client-emr-containers/package.json
+++ b/clients/client-emr-containers/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-emr-serverless/package.json b/clients/client-emr-serverless/package.json
index 41c2e4f24cb7d..b3870e3819785 100644
--- a/clients/client-emr-serverless/package.json
+++ b/clients/client-emr-serverless/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-emr/package.json b/clients/client-emr/package.json
index 52ec8a1742251..54ad8a1941033 100644
--- a/clients/client-emr/package.json
+++ b/clients/client-emr/package.json
@@ -33,29 +33,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/clients/client-entityresolution/package.json b/clients/client-entityresolution/package.json
index 6995e0fb395c1..69f7fcb49158e 100644
--- a/clients/client-entityresolution/package.json
+++ b/clients/client-entityresolution/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-eventbridge/package.json b/clients/client-eventbridge/package.json
index b1cf9325d0c6f..58e0f76ace443 100644
--- a/clients/client-eventbridge/package.json
+++ b/clients/client-eventbridge/package.json
@@ -36,27 +36,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-evidently/package.json b/clients/client-evidently/package.json
index 63e71c2726e90..ae07609c55f77 100644
--- a/clients/client-evidently/package.json
+++ b/clients/client-evidently/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-finspace-data/package.json b/clients/client-finspace-data/package.json
index 196c63ec11fe8..68f28cf29186f 100644
--- a/clients/client-finspace-data/package.json
+++ b/clients/client-finspace-data/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-finspace/package.json b/clients/client-finspace/package.json
index cb82626b7704e..050b3eb23e404 100644
--- a/clients/client-finspace/package.json
+++ b/clients/client-finspace/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-firehose/package.json b/clients/client-firehose/package.json
index c2199a68e761a..9787092faf6b9 100644
--- a/clients/client-firehose/package.json
+++ b/clients/client-firehose/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-fis/package.json b/clients/client-fis/package.json
index 6cc65e1eea783..6ca38da41aeb0 100644
--- a/clients/client-fis/package.json
+++ b/clients/client-fis/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-fms/package.json b/clients/client-fms/package.json
index 45c2b353fd67a..35fa07ecac992 100644
--- a/clients/client-fms/package.json
+++ b/clients/client-fms/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-forecast/package.json b/clients/client-forecast/package.json
index 6822ce409c3ad..6840b45a5b975 100644
--- a/clients/client-forecast/package.json
+++ b/clients/client-forecast/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-forecastquery/package.json b/clients/client-forecastquery/package.json
index e6d63d724cd58..57f27bbd9d689 100644
--- a/clients/client-forecastquery/package.json
+++ b/clients/client-forecastquery/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-frauddetector/package.json b/clients/client-frauddetector/package.json
index 5244204ef0be4..b75a4f9aee3fb 100644
--- a/clients/client-frauddetector/package.json
+++ b/clients/client-frauddetector/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-fsx/package.json b/clients/client-fsx/package.json
index 3f81f40f5926e..9b4e2674e2e6d 100644
--- a/clients/client-fsx/package.json
+++ b/clients/client-fsx/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-gamelift/package.json b/clients/client-gamelift/package.json
index 9a3c3c5871f8d..2c0f7a95e88ad 100644
--- a/clients/client-gamelift/package.json
+++ b/clients/client-gamelift/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-gamesparks/package.json b/clients/client-gamesparks/package.json
index 5d24b6cfdc042..37656cffe3d8b 100644
--- a/clients/client-gamesparks/package.json
+++ b/clients/client-gamesparks/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-glacier/package.json b/clients/client-glacier/package.json
index 613fd1c635564..09cc000fd7f35 100644
--- a/clients/client-glacier/package.json
+++ b/clients/client-glacier/package.json
@@ -36,30 +36,30 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
- "@smithy/util-stream": "^2.0.14",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
+ "@smithy/util-stream": "^2.0.15",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/clients/client-global-accelerator/package.json b/clients/client-global-accelerator/package.json
index 7c9956beefe1b..cbf0ad3106411 100644
--- a/clients/client-global-accelerator/package.json
+++ b/clients/client-global-accelerator/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-glue/package.json b/clients/client-glue/package.json
index 8eb62b0a2e9a5..fb1a78aff3d0e 100644
--- a/clients/client-glue/package.json
+++ b/clients/client-glue/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-grafana/package.json b/clients/client-grafana/package.json
index cf0e62e6a4fbd..8326fca6ef160 100644
--- a/clients/client-grafana/package.json
+++ b/clients/client-grafana/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-greengrass/package.json b/clients/client-greengrass/package.json
index d3126b4ca0df3..343fe58fc08a9 100644
--- a/clients/client-greengrass/package.json
+++ b/clients/client-greengrass/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-greengrassv2/package.json b/clients/client-greengrassv2/package.json
index 76f8717161bfb..b3d083672a157 100644
--- a/clients/client-greengrassv2/package.json
+++ b/clients/client-greengrassv2/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-groundstation/package.json b/clients/client-groundstation/package.json
index 75ff62f460389..107747ed2c3af 100644
--- a/clients/client-groundstation/package.json
+++ b/clients/client-groundstation/package.json
@@ -33,29 +33,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/clients/client-guardduty/package.json b/clients/client-guardduty/package.json
index ba532411de811..b81f22bb0d654 100644
--- a/clients/client-guardduty/package.json
+++ b/clients/client-guardduty/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-health/package.json b/clients/client-health/package.json
index 40b6ce723fea7..38feab67fa950 100644
--- a/clients/client-health/package.json
+++ b/clients/client-health/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-healthlake/package.json b/clients/client-healthlake/package.json
index ae343fadf9134..360c2ac32d39f 100644
--- a/clients/client-healthlake/package.json
+++ b/clients/client-healthlake/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-honeycode/package.json b/clients/client-honeycode/package.json
index c3988ecfd9830..69f46b4092989 100644
--- a/clients/client-honeycode/package.json
+++ b/clients/client-honeycode/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-iam/package.json b/clients/client-iam/package.json
index 17680348a3be4..c5889176d6c44 100644
--- a/clients/client-iam/package.json
+++ b/clients/client-iam/package.json
@@ -33,29 +33,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"fast-xml-parser": "4.2.5",
"tslib": "^2.5.0"
},
diff --git a/clients/client-identitystore/package.json b/clients/client-identitystore/package.json
index d01d082c274fe..04ab0d91c8e53 100644
--- a/clients/client-identitystore/package.json
+++ b/clients/client-identitystore/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-imagebuilder/package.json b/clients/client-imagebuilder/package.json
index 8e3cb1c58ec34..e08c74746d6c9 100644
--- a/clients/client-imagebuilder/package.json
+++ b/clients/client-imagebuilder/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-inspector/package.json b/clients/client-inspector/package.json
index 2779f739d15d3..0182dbc8fff5d 100644
--- a/clients/client-inspector/package.json
+++ b/clients/client-inspector/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-inspector2/package.json b/clients/client-inspector2/package.json
index 0adea0b8e8bd8..3ed573e43ab5c 100644
--- a/clients/client-inspector2/package.json
+++ b/clients/client-inspector2/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-internetmonitor/package.json b/clients/client-internetmonitor/package.json
index f1b907f35d5ec..3e6ca452d36c9 100644
--- a/clients/client-internetmonitor/package.json
+++ b/clients/client-internetmonitor/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-iot-1click-devices-service/package.json b/clients/client-iot-1click-devices-service/package.json
index a3256c9567195..f8d0a1e825672 100644
--- a/clients/client-iot-1click-devices-service/package.json
+++ b/clients/client-iot-1click-devices-service/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-iot-1click-projects/package.json b/clients/client-iot-1click-projects/package.json
index 52960555cb1cd..f5d423388b52a 100644
--- a/clients/client-iot-1click-projects/package.json
+++ b/clients/client-iot-1click-projects/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-iot-data-plane/package.json b/clients/client-iot-data-plane/package.json
index da420cb425b85..c3e0c574e4102 100644
--- a/clients/client-iot-data-plane/package.json
+++ b/clients/client-iot-data-plane/package.json
@@ -33,28 +33,28 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
- "@smithy/util-stream": "^2.0.14",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
+ "@smithy/util-stream": "^2.0.15",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-iot-events-data/package.json b/clients/client-iot-events-data/package.json
index 543699ed13516..a62f793c020b6 100644
--- a/clients/client-iot-events-data/package.json
+++ b/clients/client-iot-events-data/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-iot-events/package.json b/clients/client-iot-events/package.json
index 518afa111e2a2..e309341e74585 100644
--- a/clients/client-iot-events/package.json
+++ b/clients/client-iot-events/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-iot-jobs-data-plane/package.json b/clients/client-iot-jobs-data-plane/package.json
index b52d42c5c4d7c..59e9a19dd7add 100644
--- a/clients/client-iot-jobs-data-plane/package.json
+++ b/clients/client-iot-jobs-data-plane/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-iot-roborunner/package.json b/clients/client-iot-roborunner/package.json
index 33f40287819a2..e95532408f34f 100644
--- a/clients/client-iot-roborunner/package.json
+++ b/clients/client-iot-roborunner/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-iot-wireless/package.json b/clients/client-iot-wireless/package.json
index cc213bfc83a7c..208101f852705 100644
--- a/clients/client-iot-wireless/package.json
+++ b/clients/client-iot-wireless/package.json
@@ -33,28 +33,28 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
- "@smithy/util-stream": "^2.0.14",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
+ "@smithy/util-stream": "^2.0.15",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-iot/package.json b/clients/client-iot/package.json
index 3ce0ade7c5fbd..4941cbe24b128 100644
--- a/clients/client-iot/package.json
+++ b/clients/client-iot/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-iotanalytics/package.json b/clients/client-iotanalytics/package.json
index 8ac65f1fa2964..3ca3cc7145516 100644
--- a/clients/client-iotanalytics/package.json
+++ b/clients/client-iotanalytics/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-iotdeviceadvisor/package.json b/clients/client-iotdeviceadvisor/package.json
index a0ff0a5dae421..715fe76c83bf8 100644
--- a/clients/client-iotdeviceadvisor/package.json
+++ b/clients/client-iotdeviceadvisor/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-iotfleethub/package.json b/clients/client-iotfleethub/package.json
index 130ea9aca6863..cd6cff63cda72 100644
--- a/clients/client-iotfleethub/package.json
+++ b/clients/client-iotfleethub/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-iotfleetwise/package.json b/clients/client-iotfleetwise/package.json
index 6208b401831d2..7dbb9040db694 100644
--- a/clients/client-iotfleetwise/package.json
+++ b/clients/client-iotfleetwise/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-iotsecuretunneling/package.json b/clients/client-iotsecuretunneling/package.json
index 444e5ba34e8d0..2cb17eab216d1 100644
--- a/clients/client-iotsecuretunneling/package.json
+++ b/clients/client-iotsecuretunneling/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-iotsitewise/package.json b/clients/client-iotsitewise/package.json
index b1a5b84fb6dc7..d78fb68d0119b 100644
--- a/clients/client-iotsitewise/package.json
+++ b/clients/client-iotsitewise/package.json
@@ -33,29 +33,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
},
diff --git a/clients/client-iotthingsgraph/package.json b/clients/client-iotthingsgraph/package.json
index 562122617f73b..7f525d9c11d6d 100644
--- a/clients/client-iotthingsgraph/package.json
+++ b/clients/client-iotthingsgraph/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-iottwinmaker/package.json b/clients/client-iottwinmaker/package.json
index f01b7313501ef..e8a6b6d73f6ae 100644
--- a/clients/client-iottwinmaker/package.json
+++ b/clients/client-iottwinmaker/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-ivs-realtime/package.json b/clients/client-ivs-realtime/package.json
index 5644192e453b9..deb52d838e6a8 100644
--- a/clients/client-ivs-realtime/package.json
+++ b/clients/client-ivs-realtime/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-ivs/package.json b/clients/client-ivs/package.json
index daa953ce73dd7..86bb4e5ab66f1 100644
--- a/clients/client-ivs/package.json
+++ b/clients/client-ivs/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-ivschat/package.json b/clients/client-ivschat/package.json
index edef826337e67..a7b9aa0c5bf88 100644
--- a/clients/client-ivschat/package.json
+++ b/clients/client-ivschat/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-kafka/package.json b/clients/client-kafka/package.json
index d451319092e30..e4e79b7c6a2d1 100644
--- a/clients/client-kafka/package.json
+++ b/clients/client-kafka/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-kafkaconnect/package.json b/clients/client-kafkaconnect/package.json
index 3f9827d5e6210..c5b0034ef1db1 100644
--- a/clients/client-kafkaconnect/package.json
+++ b/clients/client-kafkaconnect/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-kendra-ranking/package.json b/clients/client-kendra-ranking/package.json
index eb2fd94261a41..f4381870d6de7 100644
--- a/clients/client-kendra-ranking/package.json
+++ b/clients/client-kendra-ranking/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-kendra/package.json b/clients/client-kendra/package.json
index ec2d4a12a0622..a7bb6b2de2e75 100644
--- a/clients/client-kendra/package.json
+++ b/clients/client-kendra/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-keyspaces/package.json b/clients/client-keyspaces/package.json
index c39ba5754bac4..3b09b9c7a3a16 100644
--- a/clients/client-keyspaces/package.json
+++ b/clients/client-keyspaces/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-kinesis-analytics-v2/package.json b/clients/client-kinesis-analytics-v2/package.json
index 0dd2edc679d07..e21813682b69e 100644
--- a/clients/client-kinesis-analytics-v2/package.json
+++ b/clients/client-kinesis-analytics-v2/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-kinesis-analytics/package.json b/clients/client-kinesis-analytics/package.json
index b5532b6276d60..4b18330b2ca23 100644
--- a/clients/client-kinesis-analytics/package.json
+++ b/clients/client-kinesis-analytics/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-kinesis-video-archived-media/package.json b/clients/client-kinesis-video-archived-media/package.json
index 24c18270abba9..b309b224977c1 100644
--- a/clients/client-kinesis-video-archived-media/package.json
+++ b/clients/client-kinesis-video-archived-media/package.json
@@ -33,28 +33,28 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
- "@smithy/util-stream": "^2.0.14",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
+ "@smithy/util-stream": "^2.0.15",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-kinesis-video-media/package.json b/clients/client-kinesis-video-media/package.json
index fe04c96f14108..406d582294aa0 100644
--- a/clients/client-kinesis-video-media/package.json
+++ b/clients/client-kinesis-video-media/package.json
@@ -33,28 +33,28 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
- "@smithy/util-stream": "^2.0.14",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
+ "@smithy/util-stream": "^2.0.15",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-kinesis-video-signaling/package.json b/clients/client-kinesis-video-signaling/package.json
index b7d143b81c8c5..a8eefa7c73bf3 100644
--- a/clients/client-kinesis-video-signaling/package.json
+++ b/clients/client-kinesis-video-signaling/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-kinesis-video-webrtc-storage/package.json b/clients/client-kinesis-video-webrtc-storage/package.json
index e8e85f997bbd2..c40f2bcf4ca83 100644
--- a/clients/client-kinesis-video-webrtc-storage/package.json
+++ b/clients/client-kinesis-video-webrtc-storage/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-kinesis-video/package.json b/clients/client-kinesis-video/package.json
index 61d7903116e15..90dd82a55635d 100644
--- a/clients/client-kinesis-video/package.json
+++ b/clients/client-kinesis-video/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-kinesis/package.json b/clients/client-kinesis/package.json
index b0f058a5bb289..47538c042a9ec 100644
--- a/clients/client-kinesis/package.json
+++ b/clients/client-kinesis/package.json
@@ -34,32 +34,32 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/eventstream-serde-browser": "^2.0.10",
- "@smithy/eventstream-serde-config-resolver": "^2.0.10",
- "@smithy/eventstream-serde-node": "^2.0.10",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/eventstream-serde-browser": "^2.0.11",
+ "@smithy/eventstream-serde-config-resolver": "^2.0.11",
+ "@smithy/eventstream-serde-node": "^2.0.11",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/clients/client-kms/package.json b/clients/client-kms/package.json
index 90b414411ed78..15811eef54d02 100644
--- a/clients/client-kms/package.json
+++ b/clients/client-kms/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-lakeformation/package.json b/clients/client-lakeformation/package.json
index 6196ba90ce367..f3dab0711d09b 100644
--- a/clients/client-lakeformation/package.json
+++ b/clients/client-lakeformation/package.json
@@ -33,28 +33,28 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
- "@smithy/util-stream": "^2.0.14",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
+ "@smithy/util-stream": "^2.0.15",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-lambda/package.json b/clients/client-lambda/package.json
index 2ca10284f4626..08537303529c2 100644
--- a/clients/client-lambda/package.json
+++ b/clients/client-lambda/package.json
@@ -33,33 +33,33 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/eventstream-serde-browser": "^2.0.10",
- "@smithy/eventstream-serde-config-resolver": "^2.0.10",
- "@smithy/eventstream-serde-node": "^2.0.10",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/eventstream-serde-browser": "^2.0.11",
+ "@smithy/eventstream-serde-config-resolver": "^2.0.11",
+ "@smithy/eventstream-serde-node": "^2.0.11",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
- "@smithy/util-stream": "^2.0.14",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
+ "@smithy/util-stream": "^2.0.15",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/clients/client-lex-model-building-service/package.json b/clients/client-lex-model-building-service/package.json
index e016225251248..fa291bd12a527 100644
--- a/clients/client-lex-model-building-service/package.json
+++ b/clients/client-lex-model-building-service/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-lex-models-v2/package.json b/clients/client-lex-models-v2/package.json
index 61659d75e7818..08b4b2d50924e 100644
--- a/clients/client-lex-models-v2/package.json
+++ b/clients/client-lex-models-v2/package.json
@@ -33,29 +33,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/clients/client-lex-runtime-service/package.json b/clients/client-lex-runtime-service/package.json
index db6c7e56844de..95d6d93f8e0d8 100644
--- a/clients/client-lex-runtime-service/package.json
+++ b/clients/client-lex-runtime-service/package.json
@@ -35,28 +35,28 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
- "@smithy/util-stream": "^2.0.14",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
+ "@smithy/util-stream": "^2.0.15",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-lex-runtime-v2/package.json b/clients/client-lex-runtime-v2/package.json
index 7fb790a193c54..9e96891a0c14f 100644
--- a/clients/client-lex-runtime-v2/package.json
+++ b/clients/client-lex-runtime-v2/package.json
@@ -35,31 +35,31 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/eventstream-serde-browser": "^2.0.10",
- "@smithy/eventstream-serde-config-resolver": "^2.0.10",
- "@smithy/eventstream-serde-node": "^2.0.10",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/eventstream-serde-browser": "^2.0.11",
+ "@smithy/eventstream-serde-config-resolver": "^2.0.11",
+ "@smithy/eventstream-serde-node": "^2.0.11",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
- "@smithy/util-stream": "^2.0.14",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
+ "@smithy/util-stream": "^2.0.15",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-license-manager-linux-subscriptions/package.json b/clients/client-license-manager-linux-subscriptions/package.json
index 69efe49bd9670..5effe737dc707 100644
--- a/clients/client-license-manager-linux-subscriptions/package.json
+++ b/clients/client-license-manager-linux-subscriptions/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-license-manager-user-subscriptions/package.json b/clients/client-license-manager-user-subscriptions/package.json
index a7540bacc273c..a213259b4fc4a 100644
--- a/clients/client-license-manager-user-subscriptions/package.json
+++ b/clients/client-license-manager-user-subscriptions/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-license-manager/package.json b/clients/client-license-manager/package.json
index 6a0911cd5a9b1..7a2803891fe35 100644
--- a/clients/client-license-manager/package.json
+++ b/clients/client-license-manager/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-lightsail/package.json b/clients/client-lightsail/package.json
index aac4de28d0b41..b6a106fc80e77 100644
--- a/clients/client-lightsail/package.json
+++ b/clients/client-lightsail/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-location/package.json b/clients/client-location/package.json
index c5dd87bf045f5..862c03e2930d4 100644
--- a/clients/client-location/package.json
+++ b/clients/client-location/package.json
@@ -33,28 +33,28 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
- "@smithy/util-stream": "^2.0.14",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
+ "@smithy/util-stream": "^2.0.15",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-lookoutequipment/package.json b/clients/client-lookoutequipment/package.json
index ed756f1c6e1db..121a2056dfe08 100644
--- a/clients/client-lookoutequipment/package.json
+++ b/clients/client-lookoutequipment/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-lookoutmetrics/package.json b/clients/client-lookoutmetrics/package.json
index 934f04a029454..d438274fcda0f 100644
--- a/clients/client-lookoutmetrics/package.json
+++ b/clients/client-lookoutmetrics/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-lookoutvision/package.json b/clients/client-lookoutvision/package.json
index e26e921f6578d..61b026feb0fe8 100644
--- a/clients/client-lookoutvision/package.json
+++ b/clients/client-lookoutvision/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-m2/package.json b/clients/client-m2/package.json
index f55bee1d1b1f1..6cdfc3ea4cb56 100644
--- a/clients/client-m2/package.json
+++ b/clients/client-m2/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-machine-learning/package.json b/clients/client-machine-learning/package.json
index 2b644e81a775b..087c66ce9843d 100644
--- a/clients/client-machine-learning/package.json
+++ b/clients/client-machine-learning/package.json
@@ -34,29 +34,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/clients/client-macie/package.json b/clients/client-macie/package.json
index 51676d8dc3a5a..56809ce9ad0e7 100644
--- a/clients/client-macie/package.json
+++ b/clients/client-macie/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-macie2/package.json b/clients/client-macie2/package.json
index 617ce0263e6a2..91f34651af3d9 100644
--- a/clients/client-macie2/package.json
+++ b/clients/client-macie2/package.json
@@ -33,29 +33,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
},
diff --git a/clients/client-managedblockchain-query/package.json b/clients/client-managedblockchain-query/package.json
index 4bf5f666183b1..d983cab506eab 100644
--- a/clients/client-managedblockchain-query/package.json
+++ b/clients/client-managedblockchain-query/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-managedblockchain/package.json b/clients/client-managedblockchain/package.json
index 7e36449387958..871f4c0287a66 100644
--- a/clients/client-managedblockchain/package.json
+++ b/clients/client-managedblockchain/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-marketplace-catalog/package.json b/clients/client-marketplace-catalog/package.json
index 623fa0a140815..54173ec042a10 100644
--- a/clients/client-marketplace-catalog/package.json
+++ b/clients/client-marketplace-catalog/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-marketplace-commerce-analytics/package.json b/clients/client-marketplace-commerce-analytics/package.json
index 73c88149d41cb..30985ce61d3fb 100644
--- a/clients/client-marketplace-commerce-analytics/package.json
+++ b/clients/client-marketplace-commerce-analytics/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-marketplace-entitlement-service/package.json b/clients/client-marketplace-entitlement-service/package.json
index 85fda44ca6e62..46f12eaf7fd6b 100644
--- a/clients/client-marketplace-entitlement-service/package.json
+++ b/clients/client-marketplace-entitlement-service/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-marketplace-metering/package.json b/clients/client-marketplace-metering/package.json
index d41fdabd74f9e..e02271e817368 100644
--- a/clients/client-marketplace-metering/package.json
+++ b/clients/client-marketplace-metering/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-mediaconnect/package.json b/clients/client-mediaconnect/package.json
index 0a24551ebde08..744ad98f508d8 100644
--- a/clients/client-mediaconnect/package.json
+++ b/clients/client-mediaconnect/package.json
@@ -33,29 +33,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/clients/client-mediaconvert/package.json b/clients/client-mediaconvert/package.json
index 9901e449492d4..fd482816fee73 100644
--- a/clients/client-mediaconvert/package.json
+++ b/clients/client-mediaconvert/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-medialive/package.json b/clients/client-medialive/package.json
index 3ba1e848376b6..98b9af71171f5 100644
--- a/clients/client-medialive/package.json
+++ b/clients/client-medialive/package.json
@@ -33,30 +33,30 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
- "@smithy/util-stream": "^2.0.14",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
+ "@smithy/util-stream": "^2.0.15",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
},
diff --git a/clients/client-mediapackage-vod/package.json b/clients/client-mediapackage-vod/package.json
index 35350d8c4b953..7ecf6f447ed91 100644
--- a/clients/client-mediapackage-vod/package.json
+++ b/clients/client-mediapackage-vod/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-mediapackage/package.json b/clients/client-mediapackage/package.json
index 0e8194182a9ec..8bf7533177415 100644
--- a/clients/client-mediapackage/package.json
+++ b/clients/client-mediapackage/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-mediapackagev2/package.json b/clients/client-mediapackagev2/package.json
index d6affb7d5c02e..68b99ee33c300 100644
--- a/clients/client-mediapackagev2/package.json
+++ b/clients/client-mediapackagev2/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-mediastore-data/package.json b/clients/client-mediastore-data/package.json
index 76dc8e9a2d8d7..47a4db6e7721d 100644
--- a/clients/client-mediastore-data/package.json
+++ b/clients/client-mediastore-data/package.json
@@ -35,28 +35,28 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
- "@smithy/util-stream": "^2.0.14",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
+ "@smithy/util-stream": "^2.0.15",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-mediastore/package.json b/clients/client-mediastore/package.json
index 79268f34a3e27..4098ef4998bd0 100644
--- a/clients/client-mediastore/package.json
+++ b/clients/client-mediastore/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-mediatailor/package.json b/clients/client-mediatailor/package.json
index f9b5a7ef36534..71550a3fdc2dd 100644
--- a/clients/client-mediatailor/package.json
+++ b/clients/client-mediatailor/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-medical-imaging/package.json b/clients/client-medical-imaging/package.json
index 0544f63472674..77a57f690143a 100644
--- a/clients/client-medical-imaging/package.json
+++ b/clients/client-medical-imaging/package.json
@@ -33,28 +33,28 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
- "@smithy/util-stream": "^2.0.14",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
+ "@smithy/util-stream": "^2.0.15",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-memorydb/package.json b/clients/client-memorydb/package.json
index 6e6bdbe65d76d..8dca7aebff47f 100644
--- a/clients/client-memorydb/package.json
+++ b/clients/client-memorydb/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-mgn/package.json b/clients/client-mgn/package.json
index 4c2bbf8fa7220..19f208da9f4c9 100644
--- a/clients/client-mgn/package.json
+++ b/clients/client-mgn/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-migration-hub-refactor-spaces/package.json b/clients/client-migration-hub-refactor-spaces/package.json
index 94a4959d02914..146e868cb0802 100644
--- a/clients/client-migration-hub-refactor-spaces/package.json
+++ b/clients/client-migration-hub-refactor-spaces/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-migration-hub/package.json b/clients/client-migration-hub/package.json
index ca5d4c0b18356..a615cf9fba056 100644
--- a/clients/client-migration-hub/package.json
+++ b/clients/client-migration-hub/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-migrationhub-config/package.json b/clients/client-migrationhub-config/package.json
index b867bc3b0578e..fad907d310145 100644
--- a/clients/client-migrationhub-config/package.json
+++ b/clients/client-migrationhub-config/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-migrationhuborchestrator/package.json b/clients/client-migrationhuborchestrator/package.json
index 28a4e3ed7fb47..74cdbb3990bb6 100644
--- a/clients/client-migrationhuborchestrator/package.json
+++ b/clients/client-migrationhuborchestrator/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-migrationhubstrategy/package.json b/clients/client-migrationhubstrategy/package.json
index 2a5a064ff6f49..e282df0364798 100644
--- a/clients/client-migrationhubstrategy/package.json
+++ b/clients/client-migrationhubstrategy/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-mobile/package.json b/clients/client-mobile/package.json
index 563a433b33127..5c1e6861ecbbd 100644
--- a/clients/client-mobile/package.json
+++ b/clients/client-mobile/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-mq/package.json b/clients/client-mq/package.json
index a3636e9258bd8..141567783eb35 100644
--- a/clients/client-mq/package.json
+++ b/clients/client-mq/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-mturk/package.json b/clients/client-mturk/package.json
index 2cf597ed8f289..593e5c8c7d856 100644
--- a/clients/client-mturk/package.json
+++ b/clients/client-mturk/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-mwaa/package.json b/clients/client-mwaa/package.json
index 2061275dbbcdb..8ab7cda2cc8fb 100644
--- a/clients/client-mwaa/package.json
+++ b/clients/client-mwaa/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-neptune/package.json b/clients/client-neptune/package.json
index 8a4f0fe427244..1d8218a05ab33 100644
--- a/clients/client-neptune/package.json
+++ b/clients/client-neptune/package.json
@@ -34,29 +34,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"fast-xml-parser": "4.2.5",
"tslib": "^2.5.0"
},
diff --git a/clients/client-neptunedata/package.json b/clients/client-neptunedata/package.json
index 9d19ddbc46c4f..809a137dcaf2a 100644
--- a/clients/client-neptunedata/package.json
+++ b/clients/client-neptunedata/package.json
@@ -33,28 +33,28 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
- "@smithy/util-stream": "^2.0.14",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
+ "@smithy/util-stream": "^2.0.15",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-network-firewall/package.json b/clients/client-network-firewall/package.json
index b9e49668d2f37..d1d25ca6966b2 100644
--- a/clients/client-network-firewall/package.json
+++ b/clients/client-network-firewall/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-networkmanager/package.json b/clients/client-networkmanager/package.json
index 8f41d5534df8a..6f138655e529f 100644
--- a/clients/client-networkmanager/package.json
+++ b/clients/client-networkmanager/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-nimble/package.json b/clients/client-nimble/package.json
index 94cb77acf9066..9725648aa12a4 100644
--- a/clients/client-nimble/package.json
+++ b/clients/client-nimble/package.json
@@ -33,29 +33,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
},
diff --git a/clients/client-oam/package.json b/clients/client-oam/package.json
index 84aebb680158d..0057dbb338927 100644
--- a/clients/client-oam/package.json
+++ b/clients/client-oam/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-omics/package.json b/clients/client-omics/package.json
index 9f67aa4df847e..0838b150f183a 100644
--- a/clients/client-omics/package.json
+++ b/clients/client-omics/package.json
@@ -33,30 +33,30 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
- "@smithy/util-stream": "^2.0.14",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
+ "@smithy/util-stream": "^2.0.15",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
},
diff --git a/clients/client-opensearch/package.json b/clients/client-opensearch/package.json
index ada34ed79baea..7bf608f40f2c5 100644
--- a/clients/client-opensearch/package.json
+++ b/clients/client-opensearch/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-opensearchserverless/package.json b/clients/client-opensearchserverless/package.json
index 72d76c090b790..99be94a62759a 100644
--- a/clients/client-opensearchserverless/package.json
+++ b/clients/client-opensearchserverless/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-opsworks/package.json b/clients/client-opsworks/package.json
index 96c0455fe39a5..207996a6d2238 100644
--- a/clients/client-opsworks/package.json
+++ b/clients/client-opsworks/package.json
@@ -33,29 +33,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/clients/client-opsworkscm/package.json b/clients/client-opsworkscm/package.json
index 9ebeb99255cc1..d65c0daaba454 100644
--- a/clients/client-opsworkscm/package.json
+++ b/clients/client-opsworkscm/package.json
@@ -33,29 +33,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/clients/client-organizations/package.json b/clients/client-organizations/package.json
index 442ed10e7fbd1..25a9cd817a469 100644
--- a/clients/client-organizations/package.json
+++ b/clients/client-organizations/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-osis/package.json b/clients/client-osis/package.json
index 7254d35cb0f99..e72512944c4e4 100644
--- a/clients/client-osis/package.json
+++ b/clients/client-osis/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-outposts/package.json b/clients/client-outposts/package.json
index fd6586e7f11cb..2b7fba2545f72 100644
--- a/clients/client-outposts/package.json
+++ b/clients/client-outposts/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-panorama/package.json b/clients/client-panorama/package.json
index 5256eacf9c475..70686ea7414ac 100644
--- a/clients/client-panorama/package.json
+++ b/clients/client-panorama/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-payment-cryptography-data/package.json b/clients/client-payment-cryptography-data/package.json
index edacda08ccbe1..fe27f9bc6d367 100644
--- a/clients/client-payment-cryptography-data/package.json
+++ b/clients/client-payment-cryptography-data/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-payment-cryptography/package.json b/clients/client-payment-cryptography/package.json
index 13c11a7778475..9d45afa4c57d1 100644
--- a/clients/client-payment-cryptography/package.json
+++ b/clients/client-payment-cryptography/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-pca-connector-ad/package.json b/clients/client-pca-connector-ad/package.json
index d7b664947023e..f2bba16362880 100644
--- a/clients/client-pca-connector-ad/package.json
+++ b/clients/client-pca-connector-ad/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-personalize-events/package.json b/clients/client-personalize-events/package.json
index b54c06ae445f3..002fa6547e8b1 100644
--- a/clients/client-personalize-events/package.json
+++ b/clients/client-personalize-events/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-personalize-runtime/package.json b/clients/client-personalize-runtime/package.json
index e78b41f4d8f89..63480ac2a1b9d 100644
--- a/clients/client-personalize-runtime/package.json
+++ b/clients/client-personalize-runtime/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-personalize/package.json b/clients/client-personalize/package.json
index 8cca816852a22..1351519db7521 100644
--- a/clients/client-personalize/package.json
+++ b/clients/client-personalize/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-pi/package.json b/clients/client-pi/package.json
index 1018de53020eb..5555758e4d79f 100644
--- a/clients/client-pi/package.json
+++ b/clients/client-pi/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-pinpoint-email/package.json b/clients/client-pinpoint-email/package.json
index f756f2b3b6871..49dd2f9d84718 100644
--- a/clients/client-pinpoint-email/package.json
+++ b/clients/client-pinpoint-email/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-pinpoint-sms-voice-v2/package.json b/clients/client-pinpoint-sms-voice-v2/package.json
index 0624ab499e716..6359b5ce52fc0 100644
--- a/clients/client-pinpoint-sms-voice-v2/package.json
+++ b/clients/client-pinpoint-sms-voice-v2/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-pinpoint-sms-voice/package.json b/clients/client-pinpoint-sms-voice/package.json
index a937c5df30ec6..5fc4453e0644c 100644
--- a/clients/client-pinpoint-sms-voice/package.json
+++ b/clients/client-pinpoint-sms-voice/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-pinpoint/package.json b/clients/client-pinpoint/package.json
index 133c66926c51c..5f863a1192e9d 100644
--- a/clients/client-pinpoint/package.json
+++ b/clients/client-pinpoint/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-pipes/package.json b/clients/client-pipes/package.json
index e5623fad12a65..81c3a98e123fe 100644
--- a/clients/client-pipes/package.json
+++ b/clients/client-pipes/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-polly/package.json b/clients/client-polly/package.json
index cd874433a2b39..882b8d9c76cb4 100644
--- a/clients/client-polly/package.json
+++ b/clients/client-polly/package.json
@@ -33,28 +33,28 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
- "@smithy/util-stream": "^2.0.14",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
+ "@smithy/util-stream": "^2.0.15",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-pricing/package.json b/clients/client-pricing/package.json
index dfea9e01cf4d8..2ddb12637def5 100644
--- a/clients/client-pricing/package.json
+++ b/clients/client-pricing/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-privatenetworks/package.json b/clients/client-privatenetworks/package.json
index 2af98d16abc03..06821646fdc39 100644
--- a/clients/client-privatenetworks/package.json
+++ b/clients/client-privatenetworks/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-proton/package.json b/clients/client-proton/package.json
index ea0fdb1db7ddd..fe15d81d35d6c 100644
--- a/clients/client-proton/package.json
+++ b/clients/client-proton/package.json
@@ -33,29 +33,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
},
diff --git a/clients/client-qldb-session/package.json b/clients/client-qldb-session/package.json
index 3d571f610a6af..bfc5027fcae00 100644
--- a/clients/client-qldb-session/package.json
+++ b/clients/client-qldb-session/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-qldb/package.json b/clients/client-qldb/package.json
index d2e5f98e294a2..04d0229123b95 100644
--- a/clients/client-qldb/package.json
+++ b/clients/client-qldb/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-quicksight/package.json b/clients/client-quicksight/package.json
index 4210fbc9f45e5..3e6896abfbfe9 100644
--- a/clients/client-quicksight/package.json
+++ b/clients/client-quicksight/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-ram/package.json b/clients/client-ram/package.json
index 9c863efe4e105..3a75905d6f876 100644
--- a/clients/client-ram/package.json
+++ b/clients/client-ram/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-rbin/package.json b/clients/client-rbin/package.json
index ba29c67a5ffc3..1a8365fbb86ec 100644
--- a/clients/client-rbin/package.json
+++ b/clients/client-rbin/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-rds-data/package.json b/clients/client-rds-data/package.json
index 3efcc40cc7635..f8be37a711da1 100644
--- a/clients/client-rds-data/package.json
+++ b/clients/client-rds-data/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-rds/package.json b/clients/client-rds/package.json
index e4a28a617d3a6..cd41c57506be5 100644
--- a/clients/client-rds/package.json
+++ b/clients/client-rds/package.json
@@ -34,29 +34,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"fast-xml-parser": "4.2.5",
"tslib": "^2.5.0"
},
diff --git a/clients/client-redshift-data/package.json b/clients/client-redshift-data/package.json
index ca5d356603d0d..fd3d4a397a362 100644
--- a/clients/client-redshift-data/package.json
+++ b/clients/client-redshift-data/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-redshift-serverless/package.json b/clients/client-redshift-serverless/package.json
index 19156979ac69e..34ff5611bca48 100644
--- a/clients/client-redshift-serverless/package.json
+++ b/clients/client-redshift-serverless/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-redshift/package.json b/clients/client-redshift/package.json
index 4b3f2ce6b001b..284094fa96e12 100644
--- a/clients/client-redshift/package.json
+++ b/clients/client-redshift/package.json
@@ -33,29 +33,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"fast-xml-parser": "4.2.5",
"tslib": "^2.5.0"
},
diff --git a/clients/client-rekognition/package.json b/clients/client-rekognition/package.json
index a41c3be86fa5f..0e2cf95aca35f 100644
--- a/clients/client-rekognition/package.json
+++ b/clients/client-rekognition/package.json
@@ -33,29 +33,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
},
diff --git a/clients/client-rekognitionstreaming/package.json b/clients/client-rekognitionstreaming/package.json
index 66ef1fd87eb49..ac3436529d905 100644
--- a/clients/client-rekognitionstreaming/package.json
+++ b/clients/client-rekognitionstreaming/package.json
@@ -36,30 +36,30 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/eventstream-serde-browser": "^2.0.10",
- "@smithy/eventstream-serde-config-resolver": "^2.0.10",
- "@smithy/eventstream-serde-node": "^2.0.10",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/eventstream-serde-browser": "^2.0.11",
+ "@smithy/eventstream-serde-config-resolver": "^2.0.11",
+ "@smithy/eventstream-serde-node": "^2.0.11",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-resiliencehub/package.json b/clients/client-resiliencehub/package.json
index 8a654b3b496db..885ddbd437176 100644
--- a/clients/client-resiliencehub/package.json
+++ b/clients/client-resiliencehub/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-resource-explorer-2/package.json b/clients/client-resource-explorer-2/package.json
index 992cd73dd3c2d..ff1c338415f5e 100644
--- a/clients/client-resource-explorer-2/package.json
+++ b/clients/client-resource-explorer-2/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-resource-groups-tagging-api/package.json b/clients/client-resource-groups-tagging-api/package.json
index 4458f86b1e8ef..0b735f84a406b 100644
--- a/clients/client-resource-groups-tagging-api/package.json
+++ b/clients/client-resource-groups-tagging-api/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-resource-groups/package.json b/clients/client-resource-groups/package.json
index 3c11e5a0bf5c6..38f577a529455 100644
--- a/clients/client-resource-groups/package.json
+++ b/clients/client-resource-groups/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-robomaker/package.json b/clients/client-robomaker/package.json
index 2472c713aaa50..bd2fa2431d8eb 100644
--- a/clients/client-robomaker/package.json
+++ b/clients/client-robomaker/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-rolesanywhere/package.json b/clients/client-rolesanywhere/package.json
index 7a7d7fbcdfae0..9b91d1a2808e1 100644
--- a/clients/client-rolesanywhere/package.json
+++ b/clients/client-rolesanywhere/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-route-53-domains/package.json b/clients/client-route-53-domains/package.json
index 5c3c441155cce..a3616ba18c8d0 100644
--- a/clients/client-route-53-domains/package.json
+++ b/clients/client-route-53-domains/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-route-53/package.json b/clients/client-route-53/package.json
index 5cf8ab263080e..c1ad5efb0f101 100644
--- a/clients/client-route-53/package.json
+++ b/clients/client-route-53/package.json
@@ -35,29 +35,29 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@aws-sdk/xml-builder": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"fast-xml-parser": "4.2.5",
"tslib": "^2.5.0"
},
diff --git a/clients/client-route53-recovery-cluster/package.json b/clients/client-route53-recovery-cluster/package.json
index 77cb0824cfd7e..7fb19cf7b5ecc 100644
--- a/clients/client-route53-recovery-cluster/package.json
+++ b/clients/client-route53-recovery-cluster/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-route53-recovery-control-config/package.json b/clients/client-route53-recovery-control-config/package.json
index 4135d88a1aa0a..1253c43b757ac 100644
--- a/clients/client-route53-recovery-control-config/package.json
+++ b/clients/client-route53-recovery-control-config/package.json
@@ -33,29 +33,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
},
diff --git a/clients/client-route53-recovery-readiness/package.json b/clients/client-route53-recovery-readiness/package.json
index eef5bbca15021..0527212fcd07f 100644
--- a/clients/client-route53-recovery-readiness/package.json
+++ b/clients/client-route53-recovery-readiness/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-route53resolver/package.json b/clients/client-route53resolver/package.json
index 17e3cb51259cb..a4df249bc0db6 100644
--- a/clients/client-route53resolver/package.json
+++ b/clients/client-route53resolver/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-rum/package.json b/clients/client-rum/package.json
index 9ffc9b8f5f80e..242b2c5964e76 100644
--- a/clients/client-rum/package.json
+++ b/clients/client-rum/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-s3-control/package.json b/clients/client-s3-control/package.json
index 65d24dd33fb04..891eadd6718af 100644
--- a/clients/client-s3-control/package.json
+++ b/clients/client-s3-control/package.json
@@ -37,31 +37,31 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@aws-sdk/xml-builder": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-blob-browser": "^2.0.10",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/hash-stream-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/md5-js": "^2.0.10",
- "@smithy/middleware-apply-body-checksum": "^2.0.12",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-blob-browser": "^2.0.11",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/hash-stream-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/md5-js": "^2.0.11",
+ "@smithy/middleware-apply-body-checksum": "^2.0.13",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"fast-xml-parser": "4.2.5",
"tslib": "^2.5.0",
diff --git a/clients/client-s3/package.json b/clients/client-s3/package.json
index 137ccf1e85798..c5ccc01cced9c 100644
--- a/clients/client-s3/package.json
+++ b/clients/client-s3/package.json
@@ -45,36 +45,36 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@aws-sdk/xml-builder": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/eventstream-serde-browser": "^2.0.10",
- "@smithy/eventstream-serde-config-resolver": "^2.0.10",
- "@smithy/eventstream-serde-node": "^2.0.10",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-blob-browser": "^2.0.10",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/hash-stream-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/md5-js": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/eventstream-serde-browser": "^2.0.11",
+ "@smithy/eventstream-serde-config-resolver": "^2.0.11",
+ "@smithy/eventstream-serde-node": "^2.0.11",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-blob-browser": "^2.0.11",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/hash-stream-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/md5-js": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
- "@smithy/util-stream": "^2.0.14",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
+ "@smithy/util-stream": "^2.0.15",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"fast-xml-parser": "4.2.5",
"tslib": "^2.5.0"
},
diff --git a/clients/client-s3outposts/package.json b/clients/client-s3outposts/package.json
index b6393f7993038..b367a1884de3b 100644
--- a/clients/client-s3outposts/package.json
+++ b/clients/client-s3outposts/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-sagemaker-a2i-runtime/package.json b/clients/client-sagemaker-a2i-runtime/package.json
index 289495c9889b6..c566f7faccf84 100644
--- a/clients/client-sagemaker-a2i-runtime/package.json
+++ b/clients/client-sagemaker-a2i-runtime/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-sagemaker-edge/package.json b/clients/client-sagemaker-edge/package.json
index dca41c1039728..b83feebbc2668 100644
--- a/clients/client-sagemaker-edge/package.json
+++ b/clients/client-sagemaker-edge/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-sagemaker-featurestore-runtime/package.json b/clients/client-sagemaker-featurestore-runtime/package.json
index 3de030a3aa949..e707293b65937 100644
--- a/clients/client-sagemaker-featurestore-runtime/package.json
+++ b/clients/client-sagemaker-featurestore-runtime/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-sagemaker-geospatial/package.json b/clients/client-sagemaker-geospatial/package.json
index d387db4c97356..5ab5eb3601620 100644
--- a/clients/client-sagemaker-geospatial/package.json
+++ b/clients/client-sagemaker-geospatial/package.json
@@ -33,28 +33,28 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
- "@smithy/util-stream": "^2.0.14",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
+ "@smithy/util-stream": "^2.0.15",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-sagemaker-metrics/package.json b/clients/client-sagemaker-metrics/package.json
index 6f16c46c7d203..2e5447d748ef7 100644
--- a/clients/client-sagemaker-metrics/package.json
+++ b/clients/client-sagemaker-metrics/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-sagemaker-runtime/package.json b/clients/client-sagemaker-runtime/package.json
index 1b04c55a2a56c..31705fb0ada7d 100644
--- a/clients/client-sagemaker-runtime/package.json
+++ b/clients/client-sagemaker-runtime/package.json
@@ -33,31 +33,31 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/eventstream-serde-browser": "^2.0.10",
- "@smithy/eventstream-serde-config-resolver": "^2.0.10",
- "@smithy/eventstream-serde-node": "^2.0.10",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/eventstream-serde-browser": "^2.0.11",
+ "@smithy/eventstream-serde-config-resolver": "^2.0.11",
+ "@smithy/eventstream-serde-node": "^2.0.11",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
- "@smithy/util-stream": "^2.0.14",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
+ "@smithy/util-stream": "^2.0.15",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-sagemaker/package.json b/clients/client-sagemaker/package.json
index 1168966a96931..49c9830f428e5 100644
--- a/clients/client-sagemaker/package.json
+++ b/clients/client-sagemaker/package.json
@@ -33,29 +33,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
},
diff --git a/clients/client-savingsplans/package.json b/clients/client-savingsplans/package.json
index 8e6b48dc5b584..e3a9b2a28856c 100644
--- a/clients/client-savingsplans/package.json
+++ b/clients/client-savingsplans/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-scheduler/package.json b/clients/client-scheduler/package.json
index 4bc9eda4505b1..4d1e0b4dee2df 100644
--- a/clients/client-scheduler/package.json
+++ b/clients/client-scheduler/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-schemas/package.json b/clients/client-schemas/package.json
index b4ffe2ff69bf6..55682280c0688 100644
--- a/clients/client-schemas/package.json
+++ b/clients/client-schemas/package.json
@@ -33,30 +33,30 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
- "@smithy/util-stream": "^2.0.14",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
+ "@smithy/util-stream": "^2.0.15",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
},
diff --git a/clients/client-secrets-manager/package.json b/clients/client-secrets-manager/package.json
index d6522f600b877..5ab407863dbbf 100644
--- a/clients/client-secrets-manager/package.json
+++ b/clients/client-secrets-manager/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-securityhub/package.json b/clients/client-securityhub/package.json
index ec4888edf9a22..f2289f25ed369 100644
--- a/clients/client-securityhub/package.json
+++ b/clients/client-securityhub/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-securitylake/package.json b/clients/client-securitylake/package.json
index 148834b8242aa..43c7fd18e6e72 100644
--- a/clients/client-securitylake/package.json
+++ b/clients/client-securitylake/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-serverlessapplicationrepository/package.json b/clients/client-serverlessapplicationrepository/package.json
index c06341365cb08..9c9085ec2dde6 100644
--- a/clients/client-serverlessapplicationrepository/package.json
+++ b/clients/client-serverlessapplicationrepository/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-service-catalog-appregistry/package.json b/clients/client-service-catalog-appregistry/package.json
index 193ab73c30d62..f2e265931c27f 100644
--- a/clients/client-service-catalog-appregistry/package.json
+++ b/clients/client-service-catalog-appregistry/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-service-catalog/package.json b/clients/client-service-catalog/package.json
index e79b383bd3adf..7c6309905d5ab 100644
--- a/clients/client-service-catalog/package.json
+++ b/clients/client-service-catalog/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-service-quotas/package.json b/clients/client-service-quotas/package.json
index e676a6f594596..0a96f1e5550fa 100644
--- a/clients/client-service-quotas/package.json
+++ b/clients/client-service-quotas/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-servicediscovery/package.json b/clients/client-servicediscovery/package.json
index 99d7467f40cc3..fd5f5ce3f19be 100644
--- a/clients/client-servicediscovery/package.json
+++ b/clients/client-servicediscovery/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-ses/package.json b/clients/client-ses/package.json
index ab34e219b60fa..4a2220868b752 100644
--- a/clients/client-ses/package.json
+++ b/clients/client-ses/package.json
@@ -33,29 +33,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"fast-xml-parser": "4.2.5",
"tslib": "^2.5.0"
},
diff --git a/clients/client-sesv2/package.json b/clients/client-sesv2/package.json
index ca2b5e407cbd3..5c4e275481a53 100644
--- a/clients/client-sesv2/package.json
+++ b/clients/client-sesv2/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-sfn/package.json b/clients/client-sfn/package.json
index 3e68f455de286..fc55b5630047e 100644
--- a/clients/client-sfn/package.json
+++ b/clients/client-sfn/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-shield/package.json b/clients/client-shield/package.json
index 3b1bd94c9be0f..e6bf12a842abe 100644
--- a/clients/client-shield/package.json
+++ b/clients/client-shield/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-signer/package.json b/clients/client-signer/package.json
index 66d946b3786d8..4e69751e16e3c 100644
--- a/clients/client-signer/package.json
+++ b/clients/client-signer/package.json
@@ -33,29 +33,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
},
diff --git a/clients/client-simspaceweaver/package.json b/clients/client-simspaceweaver/package.json
index 698e9a2ed44bd..67d7b5a02b68a 100644
--- a/clients/client-simspaceweaver/package.json
+++ b/clients/client-simspaceweaver/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-sms/package.json b/clients/client-sms/package.json
index 1c07cc2459ed8..71126dfda3ab9 100644
--- a/clients/client-sms/package.json
+++ b/clients/client-sms/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-snow-device-management/package.json b/clients/client-snow-device-management/package.json
index 943b9fec3a3a4..7d8240a9f0e53 100644
--- a/clients/client-snow-device-management/package.json
+++ b/clients/client-snow-device-management/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-snowball/package.json b/clients/client-snowball/package.json
index e2cd5513f0c3b..9d8d8ea632561 100644
--- a/clients/client-snowball/package.json
+++ b/clients/client-snowball/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-sns/package.json b/clients/client-sns/package.json
index 505b3bf1a04d2..5ba6289872e9c 100644
--- a/clients/client-sns/package.json
+++ b/clients/client-sns/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"fast-xml-parser": "4.2.5",
"tslib": "^2.5.0"
diff --git a/clients/client-sqs/package.json b/clients/client-sqs/package.json
index 54b977bc3e842..6d20c8143b891 100644
--- a/clients/client-sqs/package.json
+++ b/clients/client-sqs/package.json
@@ -34,28 +34,28 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/md5-js": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/md5-js": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"fast-xml-parser": "4.2.5",
"tslib": "^2.5.0"
diff --git a/clients/client-ssm-contacts/package.json b/clients/client-ssm-contacts/package.json
index e58171037a28f..d66fa402f8fff 100644
--- a/clients/client-ssm-contacts/package.json
+++ b/clients/client-ssm-contacts/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-ssm-incidents/package.json b/clients/client-ssm-incidents/package.json
index 3e150de7bf4b1..dda50ed83b344 100644
--- a/clients/client-ssm-incidents/package.json
+++ b/clients/client-ssm-incidents/package.json
@@ -33,29 +33,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
},
diff --git a/clients/client-ssm-sap/package.json b/clients/client-ssm-sap/package.json
index 0be2852898b36..9fd8ee100af2f 100644
--- a/clients/client-ssm-sap/package.json
+++ b/clients/client-ssm-sap/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-ssm/package.json b/clients/client-ssm/package.json
index fe4afd7f2ef51..a724db2acbc48 100644
--- a/clients/client-ssm/package.json
+++ b/clients/client-ssm/package.json
@@ -33,29 +33,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
},
diff --git a/clients/client-sso-admin/package.json b/clients/client-sso-admin/package.json
index 77e869269dc98..66d2a04e21a64 100644
--- a/clients/client-sso-admin/package.json
+++ b/clients/client-sso-admin/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-sso-oidc/package.json b/clients/client-sso-oidc/package.json
index 4c3594b638c57..e39449de2770d 100644
--- a/clients/client-sso-oidc/package.json
+++ b/clients/client-sso-oidc/package.json
@@ -30,27 +30,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-sso/package.json b/clients/client-sso/package.json
index 3484a26918b41..84f62572f37dc 100644
--- a/clients/client-sso/package.json
+++ b/clients/client-sso/package.json
@@ -30,27 +30,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-storage-gateway/package.json b/clients/client-storage-gateway/package.json
index f50db88068648..10f75ab774d68 100644
--- a/clients/client-storage-gateway/package.json
+++ b/clients/client-storage-gateway/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-sts/package.json b/clients/client-sts/package.json
index 16fb952479262..12faed42fe522 100644
--- a/clients/client-sts/package.json
+++ b/clients/client-sts/package.json
@@ -35,27 +35,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"fast-xml-parser": "4.2.5",
"tslib": "^2.5.0"
diff --git a/clients/client-support-app/package.json b/clients/client-support-app/package.json
index 50abf5f9f6b20..d5c9915e13920 100644
--- a/clients/client-support-app/package.json
+++ b/clients/client-support-app/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-support/package.json b/clients/client-support/package.json
index 89bcad7c5a134..cce791c0a1321 100644
--- a/clients/client-support/package.json
+++ b/clients/client-support/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-swf/package.json b/clients/client-swf/package.json
index c68ec581c3bdf..6e0dd8abca3ba 100644
--- a/clients/client-swf/package.json
+++ b/clients/client-swf/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-synthetics/package.json b/clients/client-synthetics/package.json
index d7e07ed132790..41caa47c9d708 100644
--- a/clients/client-synthetics/package.json
+++ b/clients/client-synthetics/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-textract/package.json b/clients/client-textract/package.json
index 2c87016acf5e7..cee5403521913 100644
--- a/clients/client-textract/package.json
+++ b/clients/client-textract/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-timestream-query/package.json b/clients/client-timestream-query/package.json
index abda330e834f3..793d1d7925278 100644
--- a/clients/client-timestream-query/package.json
+++ b/clients/client-timestream-query/package.json
@@ -34,27 +34,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-timestream-write/package.json b/clients/client-timestream-write/package.json
index 70b483f55fae6..de38d824c6be4 100644
--- a/clients/client-timestream-write/package.json
+++ b/clients/client-timestream-write/package.json
@@ -34,27 +34,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-tnb/package.json b/clients/client-tnb/package.json
index 0183e85549e4e..fbd2e58fb15a8 100644
--- a/clients/client-tnb/package.json
+++ b/clients/client-tnb/package.json
@@ -33,28 +33,28 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
- "@smithy/util-stream": "^2.0.14",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
+ "@smithy/util-stream": "^2.0.15",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-transcribe-streaming/package.json b/clients/client-transcribe-streaming/package.json
index d69989b0948e3..566bc932c89cf 100644
--- a/clients/client-transcribe-streaming/package.json
+++ b/clients/client-transcribe-streaming/package.json
@@ -38,30 +38,30 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/eventstream-serde-browser": "^2.0.10",
- "@smithy/eventstream-serde-config-resolver": "^2.0.10",
- "@smithy/eventstream-serde-node": "^2.0.10",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/eventstream-serde-browser": "^2.0.11",
+ "@smithy/eventstream-serde-config-resolver": "^2.0.11",
+ "@smithy/eventstream-serde-node": "^2.0.11",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-transcribe/package.json b/clients/client-transcribe/package.json
index da7b62cbcb27a..1980dc082bdae 100644
--- a/clients/client-transcribe/package.json
+++ b/clients/client-transcribe/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-transfer/package.json b/clients/client-transfer/package.json
index c4e60099ed049..d628c9abe2fbc 100644
--- a/clients/client-transfer/package.json
+++ b/clients/client-transfer/package.json
@@ -33,29 +33,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "@smithy/util-waiter": "^2.0.10",
+ "@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/clients/client-translate/package.json b/clients/client-translate/package.json
index 901ab5b6bc53f..a00b1a90035e3 100644
--- a/clients/client-translate/package.json
+++ b/clients/client-translate/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-verifiedpermissions/package.json b/clients/client-verifiedpermissions/package.json
index 221bbd6a5ad8c..751568cfe48e2 100644
--- a/clients/client-verifiedpermissions/package.json
+++ b/clients/client-verifiedpermissions/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-voice-id/package.json b/clients/client-voice-id/package.json
index bf6d0ab8a2c7b..fa4ead1ba2fd3 100644
--- a/clients/client-voice-id/package.json
+++ b/clients/client-voice-id/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-vpc-lattice/package.json b/clients/client-vpc-lattice/package.json
index 921cc16de016d..74bc07e493adb 100644
--- a/clients/client-vpc-lattice/package.json
+++ b/clients/client-vpc-lattice/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-waf-regional/package.json b/clients/client-waf-regional/package.json
index 1383077aa612c..507feaebf24b0 100644
--- a/clients/client-waf-regional/package.json
+++ b/clients/client-waf-regional/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-waf/package.json b/clients/client-waf/package.json
index 0536d026d4415..0a519c1f1a28a 100644
--- a/clients/client-waf/package.json
+++ b/clients/client-waf/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-wafv2/package.json b/clients/client-wafv2/package.json
index 7f907ed4ca55a..70f9a9dfacc42 100644
--- a/clients/client-wafv2/package.json
+++ b/clients/client-wafv2/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-wellarchitected/package.json b/clients/client-wellarchitected/package.json
index 73178ca646908..17e939f353fde 100644
--- a/clients/client-wellarchitected/package.json
+++ b/clients/client-wellarchitected/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-wisdom/package.json b/clients/client-wisdom/package.json
index 4de419e20c5e7..8ba3290b59594 100644
--- a/clients/client-wisdom/package.json
+++ b/clients/client-wisdom/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-workdocs/package.json b/clients/client-workdocs/package.json
index 52137b750c4c4..aabcd51cf500d 100644
--- a/clients/client-workdocs/package.json
+++ b/clients/client-workdocs/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-worklink/package.json b/clients/client-worklink/package.json
index 5e2d0dc88ff42..1d671e06866e7 100644
--- a/clients/client-worklink/package.json
+++ b/clients/client-worklink/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-workmail/package.json b/clients/client-workmail/package.json
index fcd3f9d6b380a..8e3dffd647f15 100644
--- a/clients/client-workmail/package.json
+++ b/clients/client-workmail/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-workmailmessageflow/package.json b/clients/client-workmailmessageflow/package.json
index f54e4cc695fe3..4265a52521684 100644
--- a/clients/client-workmailmessageflow/package.json
+++ b/clients/client-workmailmessageflow/package.json
@@ -33,28 +33,28 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
- "@smithy/util-stream": "^2.0.14",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
+ "@smithy/util-stream": "^2.0.15",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-workspaces-web/package.json b/clients/client-workspaces-web/package.json
index b533d2fb08b71..115d3e06a921e 100644
--- a/clients/client-workspaces-web/package.json
+++ b/clients/client-workspaces-web/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-workspaces/package.json b/clients/client-workspaces/package.json
index 0b3f81a120ccc..a80b61b7df523 100644
--- a/clients/client-workspaces/package.json
+++ b/clients/client-workspaces/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-xray/package.json b/clients/client-xray/package.json
index 661f40c80b96f..b09c2a796205a 100644
--- a/clients/client-xray/package.json
+++ b/clients/client-xray/package.json
@@ -33,27 +33,27 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/lib/lib-dynamodb/package.json b/lib/lib-dynamodb/package.json
index 265156583f2d7..3b6b8a82fd044 100644
--- a/lib/lib-dynamodb/package.json
+++ b/lib/lib-dynamodb/package.json
@@ -34,8 +34,8 @@
},
"devDependencies": {
"@aws-sdk/client-dynamodb": "*",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
"@tsconfig/recommended": "1.0.1",
"@types/node": "^14.14.31",
"concurrently": "7.0.0",
diff --git a/lib/lib-storage/package.json b/lib/lib-storage/package.json
index 70b88cd044789..0452f266c33e9 100644
--- a/lib/lib-storage/package.json
+++ b/lib/lib-storage/package.json
@@ -26,8 +26,8 @@
"license": "Apache-2.0",
"dependencies": {
"@smithy/abort-controller": "^2.0.1",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/smithy-client": "^2.1.9",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/smithy-client": "^2.1.10",
"buffer": "5.6.0",
"events": "3.3.0",
"stream-browserify": "3.0.0",
@@ -38,7 +38,7 @@
},
"devDependencies": {
"@aws-sdk/client-s3": "*",
- "@smithy/types": "^2.3.4",
+ "@smithy/types": "^2.3.5",
"@tsconfig/recommended": "1.0.1",
"@types/node": "^14.14.31",
"concurrently": "7.0.0",
diff --git a/packages/body-checksum-browser/package.json b/packages/body-checksum-browser/package.json
index b19a280676b18..5bf7358c38bf9 100644
--- a/packages/body-checksum-browser/package.json
+++ b/packages/body-checksum-browser/package.json
@@ -23,8 +23,8 @@
"@aws-sdk/sha256-tree-hash": "*",
"@aws-sdk/types": "*",
"@smithy/chunked-blob-reader": "^2.0.0",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/types": "^2.3.4",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/types": "^2.3.5",
"@smithy/util-hex-encoding": "^2.0.0",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/packages/body-checksum-node/package.json b/packages/body-checksum-node/package.json
index 4878392f485f4..043610bdc4980 100644
--- a/packages/body-checksum-node/package.json
+++ b/packages/body-checksum-node/package.json
@@ -24,8 +24,8 @@
"@aws-sdk/sha256-tree-hash": "*",
"@aws-sdk/types": "*",
"@smithy/is-array-buffer": "^2.0.0",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/types": "^2.3.4",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/types": "^2.3.5",
"@smithy/util-hex-encoding": "^2.0.0",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/packages/cloudfront-signer/package.json b/packages/cloudfront-signer/package.json
index 72663bb1bbc03..258f7d0c41ffe 100644
--- a/packages/cloudfront-signer/package.json
+++ b/packages/cloudfront-signer/package.json
@@ -21,7 +21,7 @@
},
"license": "Apache-2.0",
"dependencies": {
- "@smithy/url-parser": "^2.0.10"
+ "@smithy/url-parser": "^2.0.11"
},
"devDependencies": {
"@tsconfig/recommended": "1.0.1",
diff --git a/packages/credential-provider-cognito-identity/package.json b/packages/credential-provider-cognito-identity/package.json
index 7ce253bc7f130..e6aecb405df69 100644
--- a/packages/credential-provider-cognito-identity/package.json
+++ b/packages/credential-provider-cognito-identity/package.json
@@ -24,7 +24,7 @@
"@aws-sdk/client-cognito-identity": "*",
"@aws-sdk/types": "*",
"@smithy/property-provider": "^2.0.0",
- "@smithy/types": "^2.3.4",
+ "@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
"engines": {
diff --git a/packages/credential-provider-env/package.json b/packages/credential-provider-env/package.json
index e194ae32e26e2..cc9c795dcf6cd 100644
--- a/packages/credential-provider-env/package.json
+++ b/packages/credential-provider-env/package.json
@@ -26,7 +26,7 @@
"dependencies": {
"@aws-sdk/types": "*",
"@smithy/property-provider": "^2.0.0",
- "@smithy/types": "^2.3.4",
+ "@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/packages/credential-provider-http/package.json b/packages/credential-provider-http/package.json
index e94ea1878998c..8cba6b6448ecc 100644
--- a/packages/credential-provider-http/package.json
+++ b/packages/credential-provider-http/package.json
@@ -27,11 +27,11 @@
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "*",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/node-http-handler": "^2.1.6",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/node-http-handler": "^2.1.7",
"@smithy/property-provider": "^2.0.0",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/types": "^2.3.4",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/packages/credential-provider-ini/package.json b/packages/credential-provider-ini/package.json
index 665fd2facebd8..8f0bc0dda3a4a 100644
--- a/packages/credential-provider-ini/package.json
+++ b/packages/credential-provider-ini/package.json
@@ -32,7 +32,7 @@
"@smithy/credential-provider-imds": "^2.0.0",
"@smithy/property-provider": "^2.0.0",
"@smithy/shared-ini-file-loader": "^2.0.6",
- "@smithy/types": "^2.3.4",
+ "@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/packages/credential-provider-node/package.json b/packages/credential-provider-node/package.json
index 5edafaa864a91..342dc13b79944 100644
--- a/packages/credential-provider-node/package.json
+++ b/packages/credential-provider-node/package.json
@@ -36,7 +36,7 @@
"@smithy/credential-provider-imds": "^2.0.0",
"@smithy/property-provider": "^2.0.0",
"@smithy/shared-ini-file-loader": "^2.0.6",
- "@smithy/types": "^2.3.4",
+ "@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/packages/credential-provider-process/package.json b/packages/credential-provider-process/package.json
index f33b968d42337..746b85c4aae4f 100644
--- a/packages/credential-provider-process/package.json
+++ b/packages/credential-provider-process/package.json
@@ -27,7 +27,7 @@
"@aws-sdk/types": "*",
"@smithy/property-provider": "^2.0.0",
"@smithy/shared-ini-file-loader": "^2.0.6",
- "@smithy/types": "^2.3.4",
+ "@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/packages/credential-provider-sso/package.json b/packages/credential-provider-sso/package.json
index b64fa37eed516..589ce3496276c 100644
--- a/packages/credential-provider-sso/package.json
+++ b/packages/credential-provider-sso/package.json
@@ -29,7 +29,7 @@
"@aws-sdk/types": "*",
"@smithy/property-provider": "^2.0.0",
"@smithy/shared-ini-file-loader": "^2.0.6",
- "@smithy/types": "^2.3.4",
+ "@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/packages/credential-provider-web-identity/package.json b/packages/credential-provider-web-identity/package.json
index 6da495375dba8..66d9b2344bb1f 100644
--- a/packages/credential-provider-web-identity/package.json
+++ b/packages/credential-provider-web-identity/package.json
@@ -34,7 +34,7 @@
"dependencies": {
"@aws-sdk/types": "*",
"@smithy/property-provider": "^2.0.0",
- "@smithy/types": "^2.3.4",
+ "@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/packages/credential-providers/package.json b/packages/credential-providers/package.json
index 2a525483d0456..43221d30139ac 100644
--- a/packages/credential-providers/package.json
+++ b/packages/credential-providers/package.json
@@ -42,7 +42,7 @@
"@aws-sdk/types": "*",
"@smithy/credential-provider-imds": "^2.0.0",
"@smithy/property-provider": "^2.0.0",
- "@smithy/types": "^2.3.4",
+ "@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/packages/eventstream-handler-node/package.json b/packages/eventstream-handler-node/package.json
index 79b69ab1bac51..b78f6528c0e1f 100644
--- a/packages/eventstream-handler-node/package.json
+++ b/packages/eventstream-handler-node/package.json
@@ -22,7 +22,7 @@
"dependencies": {
"@aws-sdk/types": "*",
"@smithy/eventstream-codec": "^2.0.0",
- "@smithy/types": "^2.3.4",
+ "@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/packages/middleware-api-key/package.json b/packages/middleware-api-key/package.json
index 1054b7cd1a747..49ebbdb118631 100644
--- a/packages/middleware-api-key/package.json
+++ b/packages/middleware-api-key/package.json
@@ -21,9 +21,9 @@
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "*",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/types": "^2.3.4",
- "@smithy/util-middleware": "^2.0.3",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/types": "^2.3.5",
+ "@smithy/util-middleware": "^2.0.4",
"tslib": "^2.5.0"
},
"engines": {
diff --git a/packages/middleware-bucket-endpoint/package.json b/packages/middleware-bucket-endpoint/package.json
index baf21c9a91e28..2a48b7bdce06d 100644
--- a/packages/middleware-bucket-endpoint/package.json
+++ b/packages/middleware-bucket-endpoint/package.json
@@ -23,9 +23,9 @@
"dependencies": {
"@aws-sdk/types": "*",
"@aws-sdk/util-arn-parser": "*",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/types": "^2.3.4",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/types": "^2.3.5",
"@smithy/util-config-provider": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/packages/middleware-endpoint-discovery/package.json b/packages/middleware-endpoint-discovery/package.json
index 55e54250e1cad..fcd60e737cf7f 100644
--- a/packages/middleware-endpoint-discovery/package.json
+++ b/packages/middleware-endpoint-discovery/package.json
@@ -31,9 +31,9 @@
"dependencies": {
"@aws-sdk/endpoint-cache": "*",
"@aws-sdk/types": "*",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/types": "^2.3.4",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
"engines": {
diff --git a/packages/middleware-eventstream/package.json b/packages/middleware-eventstream/package.json
index 4b0f1d4cbd3e5..2204cf575c7b6 100644
--- a/packages/middleware-eventstream/package.json
+++ b/packages/middleware-eventstream/package.json
@@ -22,8 +22,8 @@
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "*",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/types": "^2.3.4",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
"engines": {
diff --git a/packages/middleware-expect-continue/package.json b/packages/middleware-expect-continue/package.json
index 5bcfeb7bb2487..c57d13892ee3b 100644
--- a/packages/middleware-expect-continue/package.json
+++ b/packages/middleware-expect-continue/package.json
@@ -22,8 +22,8 @@
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "*",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/types": "^2.3.4",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
"engines": {
diff --git a/packages/middleware-flexible-checksums/package.json b/packages/middleware-flexible-checksums/package.json
index 95e29b300a7a2..63341c7187835 100644
--- a/packages/middleware-flexible-checksums/package.json
+++ b/packages/middleware-flexible-checksums/package.json
@@ -28,13 +28,13 @@
"@aws-crypto/crc32c": "3.0.0",
"@aws-sdk/types": "*",
"@smithy/is-array-buffer": "^2.0.0",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/types": "^2.3.4",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/types": "^2.3.5",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
"devDependencies": {
- "@smithy/node-http-handler": "^2.1.6",
+ "@smithy/node-http-handler": "^2.1.7",
"concurrently": "7.0.0",
"downlevel-dts": "0.10.1",
"rimraf": "3.0.2",
diff --git a/packages/middleware-host-header/package.json b/packages/middleware-host-header/package.json
index 619aca36a9c1c..741b86aa38aaa 100644
--- a/packages/middleware-host-header/package.json
+++ b/packages/middleware-host-header/package.json
@@ -22,8 +22,8 @@
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "*",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/types": "^2.3.4",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
"engines": {
diff --git a/packages/middleware-location-constraint/package.json b/packages/middleware-location-constraint/package.json
index 8f60f75e7e904..b9b26d87a7966 100644
--- a/packages/middleware-location-constraint/package.json
+++ b/packages/middleware-location-constraint/package.json
@@ -22,7 +22,7 @@
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "*",
- "@smithy/types": "^2.3.4",
+ "@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
"engines": {
diff --git a/packages/middleware-logger/package.json b/packages/middleware-logger/package.json
index 30e04f62821c6..a8705f04d0a23 100644
--- a/packages/middleware-logger/package.json
+++ b/packages/middleware-logger/package.json
@@ -23,7 +23,7 @@
"types": "./dist-types/index.d.ts",
"dependencies": {
"@aws-sdk/types": "*",
- "@smithy/types": "^2.3.4",
+ "@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/packages/middleware-recursion-detection/package.json b/packages/middleware-recursion-detection/package.json
index 78425befedbc9..eb878457593ba 100644
--- a/packages/middleware-recursion-detection/package.json
+++ b/packages/middleware-recursion-detection/package.json
@@ -22,8 +22,8 @@
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "*",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/types": "^2.3.4",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
"engines": {
diff --git a/packages/middleware-sdk-api-gateway/package.json b/packages/middleware-sdk-api-gateway/package.json
index b1e7622b2d11c..b24904a452521 100644
--- a/packages/middleware-sdk-api-gateway/package.json
+++ b/packages/middleware-sdk-api-gateway/package.json
@@ -22,8 +22,8 @@
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "*",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/types": "^2.3.4",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
"engines": {
diff --git a/packages/middleware-sdk-ec2/package.json b/packages/middleware-sdk-ec2/package.json
index a6d8e85cfd790..48a30056d0171 100644
--- a/packages/middleware-sdk-ec2/package.json
+++ b/packages/middleware-sdk-ec2/package.json
@@ -23,11 +23,11 @@
"dependencies": {
"@aws-sdk/types": "*",
"@aws-sdk/util-format-url": "*",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/protocol-http": "^3.0.6",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/protocol-http": "^3.0.7",
"@smithy/signature-v4": "^2.0.0",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
"engines": {
diff --git a/packages/middleware-sdk-glacier/package.json b/packages/middleware-sdk-glacier/package.json
index 031f13612b604..f20744d1cf21b 100644
--- a/packages/middleware-sdk-glacier/package.json
+++ b/packages/middleware-sdk-glacier/package.json
@@ -22,8 +22,8 @@
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "*",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/types": "^2.3.4",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
"engines": {
diff --git a/packages/middleware-sdk-machinelearning/package.json b/packages/middleware-sdk-machinelearning/package.json
index ef918236e2481..f76e1f97a6e3d 100644
--- a/packages/middleware-sdk-machinelearning/package.json
+++ b/packages/middleware-sdk-machinelearning/package.json
@@ -22,8 +22,8 @@
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "*",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/types": "^2.3.4",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
"engines": {
diff --git a/packages/middleware-sdk-rds/package.json b/packages/middleware-sdk-rds/package.json
index 5d64fe2cf56af..1e2bd2960e14e 100644
--- a/packages/middleware-sdk-rds/package.json
+++ b/packages/middleware-sdk-rds/package.json
@@ -23,10 +23,10 @@
"dependencies": {
"@aws-sdk/types": "*",
"@aws-sdk/util-format-url": "*",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/protocol-http": "^3.0.6",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/protocol-http": "^3.0.7",
"@smithy/signature-v4": "^2.0.0",
- "@smithy/types": "^2.3.4",
+ "@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
"engines": {
diff --git a/packages/middleware-sdk-route53/package.json b/packages/middleware-sdk-route53/package.json
index 7b305ae6f37bb..b888c31a83e98 100644
--- a/packages/middleware-sdk-route53/package.json
+++ b/packages/middleware-sdk-route53/package.json
@@ -22,7 +22,7 @@
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "*",
- "@smithy/types": "^2.3.4",
+ "@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
"engines": {
diff --git a/packages/middleware-sdk-s3-control/package.json b/packages/middleware-sdk-s3-control/package.json
index 4ec0a56f3ad33..7f3ce85a3a744 100644
--- a/packages/middleware-sdk-s3-control/package.json
+++ b/packages/middleware-sdk-s3-control/package.json
@@ -26,12 +26,12 @@
"@aws-sdk/types": "*",
"@aws-sdk/util-arn-parser": "*",
"@aws-sdk/util-endpoints": "*",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/types": "^2.3.4",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
"devDependencies": {
- "@smithy/middleware-stack": "^2.0.4",
+ "@smithy/middleware-stack": "^2.0.5",
"@tsconfig/recommended": "1.0.1",
"concurrently": "7.0.0",
"downlevel-dts": "0.10.1",
diff --git a/packages/middleware-sdk-s3/package.json b/packages/middleware-sdk-s3/package.json
index 0875d09dbdcb8..889eff1898300 100644
--- a/packages/middleware-sdk-s3/package.json
+++ b/packages/middleware-sdk-s3/package.json
@@ -25,9 +25,9 @@
"dependencies": {
"@aws-sdk/types": "*",
"@aws-sdk/util-arn-parser": "*",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/packages/middleware-sdk-sqs/package.json b/packages/middleware-sdk-sqs/package.json
index 1c4c03d925594..32cf3b0b699cd 100644
--- a/packages/middleware-sdk-sqs/package.json
+++ b/packages/middleware-sdk-sqs/package.json
@@ -22,7 +22,7 @@
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "*",
- "@smithy/types": "^2.3.4",
+ "@smithy/types": "^2.3.5",
"@smithy/util-hex-encoding": "^2.0.0",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/packages/middleware-sdk-sts/package.json b/packages/middleware-sdk-sts/package.json
index c0b4121ba7417..dbae6263eee98 100644
--- a/packages/middleware-sdk-sts/package.json
+++ b/packages/middleware-sdk-sts/package.json
@@ -23,7 +23,7 @@
"dependencies": {
"@aws-sdk/middleware-signing": "*",
"@aws-sdk/types": "*",
- "@smithy/types": "^2.3.4",
+ "@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
"engines": {
diff --git a/packages/middleware-sdk-transcribe-streaming/package.json b/packages/middleware-sdk-transcribe-streaming/package.json
index a2396e8388d8f..014338482f3f5 100644
--- a/packages/middleware-sdk-transcribe-streaming/package.json
+++ b/packages/middleware-sdk-transcribe-streaming/package.json
@@ -23,10 +23,10 @@
"dependencies": {
"@aws-sdk/types": "*",
"@aws-sdk/util-format-url": "*",
- "@smithy/eventstream-serde-browser": "^2.0.10",
- "@smithy/protocol-http": "^3.0.6",
+ "@smithy/eventstream-serde-browser": "^2.0.11",
+ "@smithy/protocol-http": "^3.0.7",
"@smithy/signature-v4": "^2.0.0",
- "@smithy/types": "^2.3.4",
+ "@smithy/types": "^2.3.5",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
},
diff --git a/packages/middleware-signing/package.json b/packages/middleware-signing/package.json
index 8a1d8af608d63..5587c98906bfe 100644
--- a/packages/middleware-signing/package.json
+++ b/packages/middleware-signing/package.json
@@ -24,10 +24,10 @@
"dependencies": {
"@aws-sdk/types": "*",
"@smithy/property-provider": "^2.0.0",
- "@smithy/protocol-http": "^3.0.6",
+ "@smithy/protocol-http": "^3.0.7",
"@smithy/signature-v4": "^2.0.0",
- "@smithy/types": "^2.3.4",
- "@smithy/util-middleware": "^2.0.3",
+ "@smithy/types": "^2.3.5",
+ "@smithy/util-middleware": "^2.0.4",
"tslib": "^2.5.0"
},
"engines": {
diff --git a/packages/middleware-ssec/package.json b/packages/middleware-ssec/package.json
index 74d18c008cfd1..e902268ba5f0a 100644
--- a/packages/middleware-ssec/package.json
+++ b/packages/middleware-ssec/package.json
@@ -22,7 +22,7 @@
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "*",
- "@smithy/types": "^2.3.4",
+ "@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
"engines": {
diff --git a/packages/middleware-token/package.json b/packages/middleware-token/package.json
index 47bab48b68b04..13217e50fca6d 100644
--- a/packages/middleware-token/package.json
+++ b/packages/middleware-token/package.json
@@ -29,9 +29,9 @@
"@aws-sdk/token-providers": "*",
"@aws-sdk/types": "*",
"@smithy/property-provider": "^2.0.0",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/types": "^2.3.4",
- "@smithy/util-middleware": "^2.0.3",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/types": "^2.3.5",
+ "@smithy/util-middleware": "^2.0.4",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/packages/middleware-user-agent/package.json b/packages/middleware-user-agent/package.json
index ef78adf7bb8db..92a5c3fa62523 100644
--- a/packages/middleware-user-agent/package.json
+++ b/packages/middleware-user-agent/package.json
@@ -24,8 +24,8 @@
"dependencies": {
"@aws-sdk/types": "*",
"@aws-sdk/util-endpoints": "*",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/types": "^2.3.4",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/packages/middleware-websocket/package.json b/packages/middleware-websocket/package.json
index 687b96ed2b20c..8b1706f5327be 100644
--- a/packages/middleware-websocket/package.json
+++ b/packages/middleware-websocket/package.json
@@ -24,11 +24,11 @@
"@aws-sdk/middleware-signing": "*",
"@aws-sdk/types": "*",
"@aws-sdk/util-format-url": "*",
- "@smithy/eventstream-serde-browser": "^2.0.10",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/protocol-http": "^3.0.6",
+ "@smithy/eventstream-serde-browser": "^2.0.11",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/protocol-http": "^3.0.7",
"@smithy/signature-v4": "^2.0.0",
- "@smithy/types": "^2.3.4",
+ "@smithy/types": "^2.3.5",
"@smithy/util-hex-encoding": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/packages/polly-request-presigner/package.json b/packages/polly-request-presigner/package.json
index 4aaea63d4d88f..15c6c1298b029 100644
--- a/packages/polly-request-presigner/package.json
+++ b/packages/polly-request-presigner/package.json
@@ -24,9 +24,9 @@
"@aws-sdk/client-polly": "*",
"@aws-sdk/types": "*",
"@aws-sdk/util-format-url": "*",
- "@smithy/protocol-http": "^3.0.6",
+ "@smithy/protocol-http": "^3.0.7",
"@smithy/signature-v4": "^2.0.0",
- "@smithy/types": "^2.3.4",
+ "@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/packages/rds-signer/package.json b/packages/rds-signer/package.json
index 0211f7d05a06d..67abaff32845b 100644
--- a/packages/rds-signer/package.json
+++ b/packages/rds-signer/package.json
@@ -29,13 +29,13 @@
"@aws-crypto/sha256-js": "3.0.0",
"@aws-sdk/credential-providers": "*",
"@aws-sdk/util-format-url": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/protocol-http": "^3.0.6",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/protocol-http": "^3.0.7",
"@smithy/signature-v4": "^2.0.0",
- "@smithy/types": "^2.3.4",
+ "@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/packages/region-config-resolver/package.json b/packages/region-config-resolver/package.json
index 721b042f4d08d..d7331a9612251 100644
--- a/packages/region-config-resolver/package.json
+++ b/packages/region-config-resolver/package.json
@@ -21,10 +21,10 @@
},
"license": "Apache-2.0",
"dependencies": {
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/types": "^2.3.4",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/types": "^2.3.5",
"@smithy/util-config-provider": "^2.0.0",
- "@smithy/util-middleware": "^2.0.3",
+ "@smithy/util-middleware": "^2.0.4",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/packages/s3-presigned-post/package.json b/packages/s3-presigned-post/package.json
index d161defab94ee..9376d2424be0e 100644
--- a/packages/s3-presigned-post/package.json
+++ b/packages/s3-presigned-post/package.json
@@ -25,9 +25,9 @@
"@aws-sdk/client-s3": "*",
"@aws-sdk/types": "*",
"@aws-sdk/util-format-url": "*",
- "@smithy/middleware-endpoint": "^2.0.10",
+ "@smithy/middleware-endpoint": "^2.0.11",
"@smithy/signature-v4": "^2.0.0",
- "@smithy/types": "^2.3.4",
+ "@smithy/types": "^2.3.5",
"@smithy/util-hex-encoding": "^2.0.0",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/packages/s3-request-presigner/package.json b/packages/s3-request-presigner/package.json
index 524e171e21e1d..a78944ed447b8 100644
--- a/packages/s3-request-presigner/package.json
+++ b/packages/s3-request-presigner/package.json
@@ -24,15 +24,15 @@
"@aws-sdk/signature-v4-multi-region": "*",
"@aws-sdk/types": "*",
"@aws-sdk/util-format-url": "*",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
"devDependencies": {
"@aws-sdk/client-s3": "*",
- "@smithy/hash-node": "^2.0.10",
+ "@smithy/hash-node": "^2.0.11",
"@tsconfig/recommended": "1.0.1",
"@types/node": "^14.14.31",
"concurrently": "7.0.0",
diff --git a/packages/sha256-tree-hash/package.json b/packages/sha256-tree-hash/package.json
index 1b6f0bf684c27..f335a794ff1ba 100644
--- a/packages/sha256-tree-hash/package.json
+++ b/packages/sha256-tree-hash/package.json
@@ -21,7 +21,7 @@
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "*",
- "@smithy/types": "^2.3.4",
+ "@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/packages/signature-v4-crt/package.json b/packages/signature-v4-crt/package.json
index 20850f5f1ca14..889cb9d54d8be 100644
--- a/packages/signature-v4-crt/package.json
+++ b/packages/signature-v4-crt/package.json
@@ -25,15 +25,15 @@
"@aws-sdk/signature-v4-multi-region": "*",
"@smithy/querystring-parser": "^2.0.0",
"@smithy/signature-v4": "^2.0.0",
- "@smithy/types": "^2.3.4",
- "@smithy/util-middleware": "^2.0.3",
+ "@smithy/types": "^2.3.5",
+ "@smithy/util-middleware": "^2.0.4",
"aws-crt": "^1.15.9",
"tslib": "^2.5.0"
},
"devDependencies": {
"@aws-crypto/sha256-js": "3.0.0",
"@aws-sdk/types": "*",
- "@smithy/protocol-http": "^3.0.6",
+ "@smithy/protocol-http": "^3.0.7",
"@tsconfig/recommended": "1.0.1",
"concurrently": "7.0.0",
"downlevel-dts": "0.10.1",
diff --git a/packages/signature-v4-multi-region/package.json b/packages/signature-v4-multi-region/package.json
index 0371850255abe..4c5b95c8ef73f 100644
--- a/packages/signature-v4-multi-region/package.json
+++ b/packages/signature-v4-multi-region/package.json
@@ -27,9 +27,9 @@
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "*",
- "@smithy/protocol-http": "^3.0.6",
+ "@smithy/protocol-http": "^3.0.7",
"@smithy/signature-v4": "^2.0.0",
- "@smithy/types": "^2.3.4",
+ "@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/packages/smithy-client/package.json b/packages/smithy-client/package.json
index d3f9654ec03aa..b122be693b16a 100644
--- a/packages/smithy-client/package.json
+++ b/packages/smithy-client/package.json
@@ -22,7 +22,7 @@
},
"license": "Apache-2.0",
"dependencies": {
- "@smithy/smithy-client": "^2.1.9",
+ "@smithy/smithy-client": "^2.1.10",
"tslib": "^2.5.0"
},
"engines": {
diff --git a/packages/token-providers/package.json b/packages/token-providers/package.json
index 36e42c65d0f47..1a3652cb58a85 100644
--- a/packages/token-providers/package.json
+++ b/packages/token-providers/package.json
@@ -37,29 +37,29 @@
"@aws-sdk/util-endpoints": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-endpoint": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
"@smithy/property-provider": "^2.0.0",
- "@smithy/protocol-http": "^3.0.6",
+ "@smithy/protocol-http": "^3.0.7",
"@smithy/shared-ini-file-loader": "^2.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/packages/types/package.json b/packages/types/package.json
index 92a5d015d65e5..81e5806f41bd7 100755
--- a/packages/types/package.json
+++ b/packages/types/package.json
@@ -41,7 +41,7 @@
"directory": "packages/types"
},
"dependencies": {
- "@smithy/types": "^2.3.4",
+ "@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/packages/util-create-request/package.json b/packages/util-create-request/package.json
index 1086b582ec959..4e9750255f558 100644
--- a/packages/util-create-request/package.json
+++ b/packages/util-create-request/package.json
@@ -22,13 +22,13 @@
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "*",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
"devDependencies": {
- "@smithy/protocol-http": "^3.0.6",
+ "@smithy/protocol-http": "^3.0.7",
"@tsconfig/recommended": "1.0.1",
"@types/node": "^14.14.31",
"concurrently": "7.0.0",
diff --git a/packages/util-endpoints/package.json b/packages/util-endpoints/package.json
index 53425f6ffaade..7d2085605945f 100644
--- a/packages/util-endpoints/package.json
+++ b/packages/util-endpoints/package.json
@@ -23,7 +23,7 @@
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "*",
- "@smithy/node-config-provider": "^2.0.13",
+ "@smithy/node-config-provider": "^2.1.1",
"tslib": "^2.5.0"
},
"engines": {
diff --git a/packages/util-format-url/package.json b/packages/util-format-url/package.json
index 25fbfb9ef2722..e2546ac21f248 100644
--- a/packages/util-format-url/package.json
+++ b/packages/util-format-url/package.json
@@ -21,8 +21,8 @@
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "*",
- "@smithy/querystring-builder": "^2.0.10",
- "@smithy/types": "^2.3.4",
+ "@smithy/querystring-builder": "^2.0.11",
+ "@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
"engines": {
diff --git a/packages/util-user-agent-browser/package.json b/packages/util-user-agent-browser/package.json
index 435ffca7460cd..c1e8bb4223598 100644
--- a/packages/util-user-agent-browser/package.json
+++ b/packages/util-user-agent-browser/package.json
@@ -22,7 +22,7 @@
"react-native": "dist-es/index.native.js",
"dependencies": {
"@aws-sdk/types": "*",
- "@smithy/types": "^2.3.4",
+ "@smithy/types": "^2.3.5",
"bowser": "^2.11.0",
"tslib": "^2.5.0"
},
diff --git a/packages/util-user-agent-node/package.json b/packages/util-user-agent-node/package.json
index 18b161cce53b8..322684040e124 100644
--- a/packages/util-user-agent-node/package.json
+++ b/packages/util-user-agent-node/package.json
@@ -21,8 +21,8 @@
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "*",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/types": "^2.3.4",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/packages/xhr-http-handler/package.json b/packages/xhr-http-handler/package.json
index 8023b55722890..53f970f3c705c 100644
--- a/packages/xhr-http-handler/package.json
+++ b/packages/xhr-http-handler/package.json
@@ -20,9 +20,9 @@
"types": "./dist-types/index.d.ts",
"dependencies": {
"@aws-sdk/types": "*",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/querystring-builder": "^2.0.10",
- "@smithy/types": "^2.3.4",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/querystring-builder": "^2.0.11",
+ "@smithy/types": "^2.3.5",
"events": "3.3.0",
"tslib": "^2.5.0"
},
diff --git a/private/aws-client-api-test/package.json b/private/aws-client-api-test/package.json
index bf4da3cef4005..d91791707aecf 100644
--- a/private/aws-client-api-test/package.json
+++ b/private/aws-client-api-test/package.json
@@ -18,21 +18,21 @@
"sideEffects": false,
"dependencies": {
"@aws-sdk/client-s3": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/eventstream-serde-node": "^2.0.10",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/hash-stream-node": "^2.0.10",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/eventstream-serde-node": "^2.0.11",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/hash-stream-node": "^2.0.11",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
- "@smithy/util-stream": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
+ "@smithy/util-stream": "^2.0.15",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/private/aws-client-retry-test/package.json b/private/aws-client-retry-test/package.json
index fc31e3e8257e8..579770dd99730 100644
--- a/private/aws-client-retry-test/package.json
+++ b/private/aws-client-retry-test/package.json
@@ -18,9 +18,9 @@
"sideEffects": false,
"dependencies": {
"@aws-sdk/client-s3": "*",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/types": "^2.3.4",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/types": "^2.3.5",
+ "@smithy/util-retry": "^2.0.4",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/private/aws-echo-service/package.json b/private/aws-echo-service/package.json
index ce50b05c94173..9dc37e9492cd4 100644
--- a/private/aws-echo-service/package.json
+++ b/private/aws-echo-service/package.json
@@ -27,26 +27,26 @@
"@aws-sdk/types": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/private/aws-middleware-test/package.json b/private/aws-middleware-test/package.json
index 9b16e167497af..20088fa40c221 100644
--- a/private/aws-middleware-test/package.json
+++ b/private/aws-middleware-test/package.json
@@ -25,9 +25,9 @@
"@aws-sdk/client-sagemaker": "*",
"@aws-sdk/client-sagemaker-runtime": "*",
"@aws-sdk/client-xray": "*",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/types": "^2.3.4",
- "@smithy/util-stream": "^2.0.14",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/types": "^2.3.5",
+ "@smithy/util-stream": "^2.0.15",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/private/aws-protocoltests-ec2/package.json b/private/aws-protocoltests-ec2/package.json
index 164b26d3521e6..fcb56b97d2a83 100644
--- a/private/aws-protocoltests-ec2/package.json
+++ b/private/aws-protocoltests-ec2/package.json
@@ -27,26 +27,26 @@
"@aws-sdk/types": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"fast-xml-parser": "4.2.5",
"tslib": "^2.5.0",
diff --git a/private/aws-protocoltests-json-10/package.json b/private/aws-protocoltests-json-10/package.json
index ae10ae429fac5..e434343493209 100644
--- a/private/aws-protocoltests-json-10/package.json
+++ b/private/aws-protocoltests-json-10/package.json
@@ -27,26 +27,26 @@
"@aws-sdk/types": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/private/aws-protocoltests-json/package.json b/private/aws-protocoltests-json/package.json
index 04d1977d2b259..9d438fc1e1397 100644
--- a/private/aws-protocoltests-json/package.json
+++ b/private/aws-protocoltests-json/package.json
@@ -30,26 +30,26 @@
"@aws-sdk/types": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/private/aws-protocoltests-query/package.json b/private/aws-protocoltests-query/package.json
index 1b7129f8c4f66..fc1d091369260 100644
--- a/private/aws-protocoltests-query/package.json
+++ b/private/aws-protocoltests-query/package.json
@@ -27,26 +27,26 @@
"@aws-sdk/types": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"fast-xml-parser": "4.2.5",
"tslib": "^2.5.0",
diff --git a/private/aws-protocoltests-restjson/package.json b/private/aws-protocoltests-restjson/package.json
index c6e28734dedcd..94346d104c578 100644
--- a/private/aws-protocoltests-restjson/package.json
+++ b/private/aws-protocoltests-restjson/package.json
@@ -27,32 +27,32 @@
"@aws-sdk/types": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-blob-browser": "^2.0.10",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/hash-stream-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/md5-js": "^2.0.10",
- "@smithy/middleware-apply-body-checksum": "^2.0.12",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/querystring-builder": "^2.0.10",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-blob-browser": "^2.0.11",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/hash-stream-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/md5-js": "^2.0.11",
+ "@smithy/middleware-apply-body-checksum": "^2.0.13",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/querystring-builder": "^2.0.11",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
- "@smithy/util-stream": "^2.0.14",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
+ "@smithy/util-stream": "^2.0.15",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/private/aws-protocoltests-restxml/package.json b/private/aws-protocoltests-restxml/package.json
index 5924b26c06f96..ccdb7621e1db9 100644
--- a/private/aws-protocoltests-restxml/package.json
+++ b/private/aws-protocoltests-restxml/package.json
@@ -28,28 +28,28 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@aws-sdk/xml-builder": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/querystring-builder": "^2.0.10",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/querystring-builder": "^2.0.11",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-retry": "^2.0.3",
- "@smithy/util-stream": "^2.0.14",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-retry": "^2.0.4",
+ "@smithy/util-stream": "^2.0.15",
"@smithy/util-utf8": "^2.0.0",
"entities": "2.2.0",
"fast-xml-parser": "4.2.5",
diff --git a/private/aws-restjson-server/package.json b/private/aws-restjson-server/package.json
index bbd756234da59..d044c435743ed 100644
--- a/private/aws-restjson-server/package.json
+++ b/private/aws-restjson-server/package.json
@@ -22,24 +22,24 @@
"@aws-crypto/sha256-js": "3.0.0",
"@aws-sdk/types": "*",
"@aws-smithy/server-common": "1.0.0-alpha.10",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/private/aws-restjson-validation-server/package.json b/private/aws-restjson-validation-server/package.json
index 12857204403c8..1f9e59f075c02 100644
--- a/private/aws-restjson-validation-server/package.json
+++ b/private/aws-restjson-validation-server/package.json
@@ -22,24 +22,24 @@
"@aws-crypto/sha256-js": "3.0.0",
"@aws-sdk/types": "*",
"@aws-smithy/server-common": "1.0.0-alpha.10",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/private/aws-util-test/package.json b/private/aws-util-test/package.json
index 14281d38c2787..6052552b54189 100644
--- a/private/aws-util-test/package.json
+++ b/private/aws-util-test/package.json
@@ -15,9 +15,9 @@
"types": "./dist-types/index.d.ts",
"sideEffects": false,
"dependencies": {
- "@smithy/protocol-http": "^3.0.6",
+ "@smithy/protocol-http": "^3.0.7",
"@aws-sdk/aws-protocoltests-json": "*",
- "@smithy/types": "^2.3.4",
+ "@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/private/weather/package.json b/private/weather/package.json
index cb14ec243534e..f025c413892da 100644
--- a/private/weather/package.json
+++ b/private/weather/package.json
@@ -31,27 +31,27 @@
"@aws-sdk/types": "*",
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
- "@smithy/config-resolver": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.1",
- "@smithy/hash-node": "^2.0.10",
- "@smithy/invalid-dependency": "^2.0.10",
- "@smithy/middleware-content-length": "^2.0.12",
- "@smithy/middleware-retry": "^2.0.13",
- "@smithy/middleware-serde": "^2.0.10",
- "@smithy/middleware-stack": "^2.0.4",
- "@smithy/node-config-provider": "^2.0.13",
- "@smithy/node-http-handler": "^2.1.6",
- "@smithy/protocol-http": "^3.0.6",
- "@smithy/smithy-client": "^2.1.9",
- "@smithy/types": "^2.3.4",
- "@smithy/url-parser": "^2.0.10",
+ "@smithy/config-resolver": "^2.0.14",
+ "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/hash-node": "^2.0.11",
+ "@smithy/invalid-dependency": "^2.0.11",
+ "@smithy/middleware-content-length": "^2.0.13",
+ "@smithy/middleware-retry": "^2.0.16",
+ "@smithy/middleware-serde": "^2.0.11",
+ "@smithy/middleware-stack": "^2.0.5",
+ "@smithy/node-config-provider": "^2.1.1",
+ "@smithy/node-http-handler": "^2.1.7",
+ "@smithy/protocol-http": "^3.0.7",
+ "@smithy/smithy-client": "^2.1.10",
+ "@smithy/types": "^2.3.5",
+ "@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.13",
- "@smithy/util-defaults-mode-node": "^2.0.15",
- "@smithy/util-middleware": "^2.0.3",
- "@smithy/util-retry": "^2.0.3",
+ "@smithy/util-defaults-mode-browser": "^2.0.14",
+ "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-middleware": "^2.0.4",
+ "@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/scripts/generate-clients/config.js b/scripts/generate-clients/config.js
index d0e190c9ac0ed..6c74aaa314a05 100644
--- a/scripts/generate-clients/config.js
+++ b/scripts/generate-clients/config.js
@@ -1,5 +1,5 @@
// Update this commit when taking up new changes from smithy-typescript.
module.exports = {
// Use full commit hash as we explicitly fetch it.
- SMITHY_TS_COMMIT: "73d098dceb8490898154253f0f41bb876edb8cca",
+ SMITHY_TS_COMMIT: "5fb6d4c68777a3d358158eddcb18d22da3fd5c8d",
};
diff --git a/yarn.lock b/yarn.lock
index 9852470f57ce9..416a92e28f8ff 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -109,27 +109,27 @@
"@aws-sdk/util-endpoints" "*"
"@aws-sdk/util-user-agent-browser" "*"
"@aws-sdk/util-user-agent-node" "*"
- "@smithy/config-resolver" "^2.0.11"
- "@smithy/fetch-http-handler" "^2.2.1"
- "@smithy/hash-node" "^2.0.10"
- "@smithy/invalid-dependency" "^2.0.10"
- "@smithy/middleware-content-length" "^2.0.12"
- "@smithy/middleware-endpoint" "^2.0.10"
- "@smithy/middleware-retry" "^2.0.13"
- "@smithy/middleware-serde" "^2.0.10"
- "@smithy/middleware-stack" "^2.0.4"
- "@smithy/node-config-provider" "^2.0.13"
- "@smithy/node-http-handler" "^2.1.6"
- "@smithy/protocol-http" "^3.0.6"
- "@smithy/smithy-client" "^2.1.9"
- "@smithy/types" "^2.3.4"
- "@smithy/url-parser" "^2.0.10"
+ "@smithy/config-resolver" "^2.0.14"
+ "@smithy/fetch-http-handler" "^2.2.2"
+ "@smithy/hash-node" "^2.0.11"
+ "@smithy/invalid-dependency" "^2.0.11"
+ "@smithy/middleware-content-length" "^2.0.13"
+ "@smithy/middleware-endpoint" "^2.0.11"
+ "@smithy/middleware-retry" "^2.0.16"
+ "@smithy/middleware-serde" "^2.0.11"
+ "@smithy/middleware-stack" "^2.0.5"
+ "@smithy/node-config-provider" "^2.1.1"
+ "@smithy/node-http-handler" "^2.1.7"
+ "@smithy/protocol-http" "^3.0.7"
+ "@smithy/smithy-client" "^2.1.10"
+ "@smithy/types" "^2.3.5"
+ "@smithy/url-parser" "^2.0.11"
"@smithy/util-base64" "^2.0.0"
"@smithy/util-body-length-browser" "^2.0.0"
"@smithy/util-body-length-node" "^2.1.0"
- "@smithy/util-defaults-mode-browser" "^2.0.13"
- "@smithy/util-defaults-mode-node" "^2.0.15"
- "@smithy/util-retry" "^2.0.3"
+ "@smithy/util-defaults-mode-browser" "^2.0.14"
+ "@smithy/util-defaults-mode-node" "^2.0.18"
+ "@smithy/util-retry" "^2.0.4"
"@smithy/util-utf8" "^2.0.0"
fast-xml-parser "4.2.5"
tslib "^2.5.0"
@@ -2811,12 +2811,12 @@
"@smithy/types" "^2.0.2"
tslib "^2.5.0"
-"@smithy/abort-controller@^2.0.10":
- version "2.0.10"
- resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-2.0.10.tgz#a6d0d24973ac35b59cc450c34decd68485fbe2c0"
- integrity sha512-xn7PnFD3m4rQIG00h1lPuDVnC2QMtTFhzRLX3y56KkgFaCysS7vpNevNBgmNUtmJ4eVFc+66Zucwo2KDLdicOg==
+"@smithy/abort-controller@^2.0.11":
+ version "2.0.11"
+ resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-2.0.11.tgz#e1d96a2ecbf103d0b075a7456ce3afeeb9f76a87"
+ integrity sha512-MSzE1qR2JNyb7ot3blIOT3O3H0Jn06iNDEgHRaqZUwBgx5EG+VIx24Y21tlKofzYryIOcWpIohLrIIyocD6LMA==
dependencies:
- "@smithy/types" "^2.3.4"
+ "@smithy/types" "^2.3.5"
tslib "^2.5.0"
"@smithy/chunked-blob-reader-native@^2.0.0":
@@ -2834,15 +2834,15 @@
dependencies:
tslib "^2.5.0"
-"@smithy/config-resolver@^2.0.11":
- version "2.0.11"
- resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-2.0.11.tgz#20c4711b4e80f94527ee9e4e092cf024471bb09d"
- integrity sha512-q97FnlUmbai1c4JlQJgLVBsvSxgV/7Nvg/JK76E1nRq/U5UM56Eqo3dn2fY7JibqgJLg4LPsGdwtIyqyOk35CQ==
+"@smithy/config-resolver@^2.0.14":
+ version "2.0.14"
+ resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-2.0.14.tgz#16163e14053949f5a717be6f5802a7039e5ff4d1"
+ integrity sha512-K1K+FuWQoy8j/G7lAmK85o03O89s2Vvh6kMFmzEmiHUoQCRH1rzbDtMnGNiaMHeSeYJ6y79IyTusdRG+LuWwtg==
dependencies:
- "@smithy/node-config-provider" "^2.0.13"
- "@smithy/types" "^2.3.4"
+ "@smithy/node-config-provider" "^2.1.1"
+ "@smithy/types" "^2.3.5"
"@smithy/util-config-provider" "^2.0.0"
- "@smithy/util-middleware" "^2.0.3"
+ "@smithy/util-middleware" "^2.0.4"
tslib "^2.5.0"
"@smithy/credential-provider-imds@^2.0.0":
@@ -2856,15 +2856,15 @@
"@smithy/url-parser" "^2.0.1"
tslib "^2.5.0"
-"@smithy/credential-provider-imds@^2.0.13":
- version "2.0.13"
- resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-2.0.13.tgz#9904912bc236d25d870add10b6eb138570bf5732"
- integrity sha512-/xe3wNoC4j+BeTemH9t2gSKLBfyZmk8LXB2pQm/TOEYi+QhBgT+PSolNDfNAhrR68eggNE17uOimsrnwSkCt4w==
+"@smithy/credential-provider-imds@^2.0.16":
+ version "2.0.16"
+ resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-2.0.16.tgz#07da7ecd43eff92156ddc54f3b5330bbc128d5cd"
+ integrity sha512-tKa2xF+69TvGxJT+lnJpGrKxUuAZDLYXFhqnPEgnHz+psTpkpcB4QRjHj63+uj83KaeFJdTfW201eLZeRn6FfA==
dependencies:
- "@smithy/node-config-provider" "^2.0.13"
- "@smithy/property-provider" "^2.0.11"
- "@smithy/types" "^2.3.4"
- "@smithy/url-parser" "^2.0.10"
+ "@smithy/node-config-provider" "^2.1.1"
+ "@smithy/property-provider" "^2.0.12"
+ "@smithy/types" "^2.3.5"
+ "@smithy/url-parser" "^2.0.11"
tslib "^2.5.0"
"@smithy/eventstream-codec@^2.0.0", "@smithy/eventstream-codec@^2.0.1":
@@ -2877,97 +2877,97 @@
"@smithy/util-hex-encoding" "^2.0.0"
tslib "^2.5.0"
-"@smithy/eventstream-codec@^2.0.10":
- version "2.0.10"
- resolved "https://registry.yarnpkg.com/@smithy/eventstream-codec/-/eventstream-codec-2.0.10.tgz#dbd46d0ed13abc61b1f08ab249f3097602752933"
- integrity sha512-3SSDgX2nIsFwif6m+I4+ar4KDcZX463Noes8ekBgQHitULiWvaDZX8XqPaRQSQ4bl1vbeVXHklJfv66MnVO+lw==
+"@smithy/eventstream-codec@^2.0.11":
+ version "2.0.11"
+ resolved "https://registry.yarnpkg.com/@smithy/eventstream-codec/-/eventstream-codec-2.0.11.tgz#1ba090ea5dbf956e32d3d0d0986ffb0d0af8c57d"
+ integrity sha512-BQCTjxhCYRZIfXapa2LmZSaH8QUBGwMZw7XRN83hrdixbLjIcj+o549zjkedFS07Ve2TlvWUI6BTzP+nv7snBA==
dependencies:
"@aws-crypto/crc32" "3.0.0"
- "@smithy/types" "^2.3.4"
+ "@smithy/types" "^2.3.5"
"@smithy/util-hex-encoding" "^2.0.0"
tslib "^2.5.0"
-"@smithy/eventstream-serde-browser@^2.0.10":
- version "2.0.10"
- resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-browser/-/eventstream-serde-browser-2.0.10.tgz#93054f85194655d7eba27125f4935d247bdc2a8f"
- integrity sha512-/NSUNrWedO9Se80jo/2WcPvqobqCM/0drZ03Kqn1GZpGwVTsdqNj7frVTCUJs/W/JEzOShdMv8ewoKIR7RWPmA==
+"@smithy/eventstream-serde-browser@^2.0.11":
+ version "2.0.11"
+ resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-browser/-/eventstream-serde-browser-2.0.11.tgz#eb9e9105d04c5dd0c96d5544857fe4e4d9d113a8"
+ integrity sha512-p9IK4uvwT6B3pT1VGlODvcVBfPVikjBFHAcKpvvNF+7lAEI+YiC6d0SROPkpjnvCgVBYyGXa3ciqrWnFze6mwQ==
dependencies:
- "@smithy/eventstream-serde-universal" "^2.0.10"
- "@smithy/types" "^2.3.4"
+ "@smithy/eventstream-serde-universal" "^2.0.11"
+ "@smithy/types" "^2.3.5"
tslib "^2.5.0"
-"@smithy/eventstream-serde-config-resolver@^2.0.10":
- version "2.0.10"
- resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-2.0.10.tgz#ea2f6675a4270fc3eccbb9fda4086f611887b510"
- integrity sha512-ag1U0vsC5rhRm7okFzsS6YsvyTRe62jIgJ82+Wr4qoOASx7eCDWdjoqLnrdDY0S4UToF9hZAyo4Du/xrSSSk4g==
+"@smithy/eventstream-serde-config-resolver@^2.0.11":
+ version "2.0.11"
+ resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-2.0.11.tgz#f5fda274bc823a5d84a1ab1634ea7f9f4e82d9cb"
+ integrity sha512-vN32E8yExo0Z8L7kXhlU9KRURrhqOpPdLxQMp3MwfMThrjiqbr1Sk5srUXc1ed2Ygl/l0TEN9vwNG0bQHg6AjQ==
dependencies:
- "@smithy/types" "^2.3.4"
+ "@smithy/types" "^2.3.5"
tslib "^2.5.0"
-"@smithy/eventstream-serde-node@^2.0.10":
- version "2.0.10"
- resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-node/-/eventstream-serde-node-2.0.10.tgz#54af54b9719aa8f74fae5885a72e69b33d5661cf"
- integrity sha512-3+VeofxoVCa+dvqcuzEpnFve8EQJKaYR7UslDFpj6UTZfa7Hxr8o1/cbFkTftFo71PxzYVsR+bsD56EbAO432A==
+"@smithy/eventstream-serde-node@^2.0.11":
+ version "2.0.11"
+ resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-node/-/eventstream-serde-node-2.0.11.tgz#920e1b6ba6a216a58f519865b8585df61b675f87"
+ integrity sha512-Gjqbpg7UmD+YzkpgNShNcDNZcUpBWIkvX2XCGptz5PoxJU/UQbuF9eSc93ZlIb7j4aGjtFfqk23HUMW8Hopg2Q==
dependencies:
- "@smithy/eventstream-serde-universal" "^2.0.10"
- "@smithy/types" "^2.3.4"
+ "@smithy/eventstream-serde-universal" "^2.0.11"
+ "@smithy/types" "^2.3.5"
tslib "^2.5.0"
-"@smithy/eventstream-serde-universal@^2.0.10":
- version "2.0.10"
- resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-universal/-/eventstream-serde-universal-2.0.10.tgz#575a6160a12508341c9c345bf3da7422a590aaae"
- integrity sha512-JhJJU1ULLsn5kxKfFe8zOF2tibjxlPIvIB71Kn20aa/OFs+lvXBR0hBGswpovyYyckXH3qU8VxuIOEuS+2G+3A==
+"@smithy/eventstream-serde-universal@^2.0.11":
+ version "2.0.11"
+ resolved "https://registry.yarnpkg.com/@smithy/eventstream-serde-universal/-/eventstream-serde-universal-2.0.11.tgz#c86c0d29eae479590826ad61cb28301ec1105ebe"
+ integrity sha512-F8FsxLTbFN4+Esgpo+nNKcEajrgRZJ+pG9c8+MhLM4Odp5ejLHw2GMCXd81cGsgmfcbnzdDEXazPPVzOwj89MQ==
dependencies:
- "@smithy/eventstream-codec" "^2.0.10"
- "@smithy/types" "^2.3.4"
+ "@smithy/eventstream-codec" "^2.0.11"
+ "@smithy/types" "^2.3.5"
tslib "^2.5.0"
-"@smithy/fetch-http-handler@^2.2.1":
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-2.2.1.tgz#a8abbd339c2c3d76456f4d16e65cf934727fc7ad"
- integrity sha512-bXyM8PBAIKxVV++2ZSNBEposTDjFQ31XWOdHED+2hWMNvJHUoQqFbECg/uhcVOa6vHie2/UnzIZfXBSTpDBnEw==
+"@smithy/fetch-http-handler@^2.2.2":
+ version "2.2.2"
+ resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-2.2.2.tgz#c698c24ee75b7b8b6ff7bffb7c26ae9b3363d8cc"
+ integrity sha512-K7aRtRuaBjzlk+jWWeyfDTLAmRRvmA4fU8eHUXtjsuEDgi3f356ZE32VD2ssxIH13RCLVZbXMt5h7wHzYiSuVA==
dependencies:
- "@smithy/protocol-http" "^3.0.6"
- "@smithy/querystring-builder" "^2.0.10"
- "@smithy/types" "^2.3.4"
+ "@smithy/protocol-http" "^3.0.7"
+ "@smithy/querystring-builder" "^2.0.11"
+ "@smithy/types" "^2.3.5"
"@smithy/util-base64" "^2.0.0"
tslib "^2.5.0"
-"@smithy/hash-blob-browser@^2.0.10":
- version "2.0.10"
- resolved "https://registry.yarnpkg.com/@smithy/hash-blob-browser/-/hash-blob-browser-2.0.10.tgz#fa761e02c9a21b9c4bf827139d65376d50356c69"
- integrity sha512-U2+wIWWloOZ9DaRuz2sk9f7A6STRTlwdcv+q6abXDvS0TRDk8KGgUmfV5lCZy8yxFxZIA0hvHDNqcd25r4Hrew==
+"@smithy/hash-blob-browser@^2.0.11":
+ version "2.0.11"
+ resolved "https://registry.yarnpkg.com/@smithy/hash-blob-browser/-/hash-blob-browser-2.0.11.tgz#6bcd0ffc1f68427dff1d8051c893df92a36f3e7e"
+ integrity sha512-/6vq/NiH2EN3mWdwcLdjVohP+VCng+ZA1GnlUdx959egsfgIlLWQvCyjnB2ze9Hr6VHV5XEFLLpLQH2dHA6Sgw==
dependencies:
"@smithy/chunked-blob-reader" "^2.0.0"
"@smithy/chunked-blob-reader-native" "^2.0.0"
- "@smithy/types" "^2.3.4"
+ "@smithy/types" "^2.3.5"
tslib "^2.5.0"
-"@smithy/hash-node@^2.0.10":
- version "2.0.10"
- resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-2.0.10.tgz#af13889a008880bdc30278b148e0e0b2a6e2d243"
- integrity sha512-jSTf6uzPk/Vf+8aQ7tVXeHfjxe9wRXSCqIZcBymSDTf7/YrVxniBdpyN74iI8ZUOx/Pyagc81OK5FROLaEjbXQ==
+"@smithy/hash-node@^2.0.11":
+ version "2.0.11"
+ resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-2.0.11.tgz#07d73eefa9ab28e4f03461c6ec0532b85792329d"
+ integrity sha512-PbleVugN2tbhl1ZoNWVrZ1oTFFas/Hq+s6zGO8B9bv4w/StTriTKA9W+xZJACOj9X7zwfoTLbscM+avCB1KqOQ==
dependencies:
- "@smithy/types" "^2.3.4"
+ "@smithy/types" "^2.3.5"
"@smithy/util-buffer-from" "^2.0.0"
"@smithy/util-utf8" "^2.0.0"
tslib "^2.5.0"
-"@smithy/hash-stream-node@^2.0.10":
- version "2.0.10"
- resolved "https://registry.yarnpkg.com/@smithy/hash-stream-node/-/hash-stream-node-2.0.10.tgz#6e693b4362fbb031b8fc60e105220874d044ec8d"
- integrity sha512-L58XEGrownZZSpF7Lp0gc0hy+eYKXuPgNz3pQgP5lPFGwBzHdldx2X6o3c6swD6RkcPvTRh0wTUVVGwUotbgnQ==
+"@smithy/hash-stream-node@^2.0.11":
+ version "2.0.11"
+ resolved "https://registry.yarnpkg.com/@smithy/hash-stream-node/-/hash-stream-node-2.0.11.tgz#95c1ef3681d988770acdab863707daf068a851f8"
+ integrity sha512-Jn2yl+Dn0kvwKvSavvR1/BFVYa2wIkaJKWeTH48kno89gqHAJxMh1hrtBN6SJ7F8VhodNZTiNOlQVqCSfLheNQ==
dependencies:
- "@smithy/types" "^2.3.4"
+ "@smithy/types" "^2.3.5"
"@smithy/util-utf8" "^2.0.0"
tslib "^2.5.0"
-"@smithy/invalid-dependency@^2.0.10":
- version "2.0.10"
- resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-2.0.10.tgz#b708e7cfc35214ce664db6aa67465567b97ffd36"
- integrity sha512-zw9p/zsmJ2cFcW4KMz3CJoznlbRvEA6HG2mvEaX5eAca5dq4VGI2MwPDTfmteC/GsnURS4ogoMQ0p6aHM2SDVQ==
+"@smithy/invalid-dependency@^2.0.11":
+ version "2.0.11"
+ resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-2.0.11.tgz#41811da5da9950f52a0491ea532add2b1895349b"
+ integrity sha512-zazq99ujxYv/NOf9zh7xXbNgzoVLsqE0wle8P/1zU/XdhPi/0zohTPKWUzIxjGdqb5hkkwfBkNkl5H+LE0mvgw==
dependencies:
- "@smithy/types" "^2.3.4"
+ "@smithy/types" "^2.3.5"
tslib "^2.5.0"
"@smithy/is-array-buffer@^2.0.0":
@@ -2977,73 +2977,73 @@
dependencies:
tslib "^2.5.0"
-"@smithy/md5-js@^2.0.10":
- version "2.0.10"
- resolved "https://registry.yarnpkg.com/@smithy/md5-js/-/md5-js-2.0.10.tgz#8480de1b42abc581cf515e2b8e35542e9248f520"
- integrity sha512-eA/Ova4/UdQUbMlrbBmnewmukH0zWU6C67HFFR/719vkFNepbnliGjmGksQ9vylz9eD4nfGkZZ5NKZMAcUuzjQ==
+"@smithy/md5-js@^2.0.11":
+ version "2.0.11"
+ resolved "https://registry.yarnpkg.com/@smithy/md5-js/-/md5-js-2.0.11.tgz#0235c22eca4b5af72728f20348af5280bef2f275"
+ integrity sha512-YBIv+e95qeGvQA05ucwstmTeQ/bUzWgU+nO2Ffmif5awu6IzSR0Jfk3XLYh4mdy7f8DCgsn8qA63u7N9Lu0+5A==
dependencies:
- "@smithy/types" "^2.3.4"
+ "@smithy/types" "^2.3.5"
"@smithy/util-utf8" "^2.0.0"
tslib "^2.5.0"
-"@smithy/middleware-apply-body-checksum@^2.0.12":
- version "2.0.12"
- resolved "https://registry.yarnpkg.com/@smithy/middleware-apply-body-checksum/-/middleware-apply-body-checksum-2.0.12.tgz#cbc66bd3906087265135d84754226c2924d8fe1b"
- integrity sha512-XnCMhahwcpgtyG1IimSFuURGG8wMWzrKio+aD/UEYHExx+hISFb57/GTmbH7u/jIruMz+hTIGt88mTQAJLaSvA==
+"@smithy/middleware-apply-body-checksum@^2.0.13":
+ version "2.0.13"
+ resolved "https://registry.yarnpkg.com/@smithy/middleware-apply-body-checksum/-/middleware-apply-body-checksum-2.0.13.tgz#22ca219c241a1a52764299aaab5a474c6b54bd10"
+ integrity sha512-r48q1b1Q8FXxGxuwned2n5ddF+vXH93KGNbaW8aa15BcFxzwVlRcymrnf1+PDfjx+ff+tZ1QSMToAV5AQj69yQ==
dependencies:
"@smithy/is-array-buffer" "^2.0.0"
- "@smithy/protocol-http" "^3.0.6"
- "@smithy/types" "^2.3.4"
+ "@smithy/protocol-http" "^3.0.7"
+ "@smithy/types" "^2.3.5"
tslib "^2.5.0"
-"@smithy/middleware-content-length@^2.0.12":
- version "2.0.12"
- resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-2.0.12.tgz#e6f874f5eef880561f774a4376b73f04b97efc53"
- integrity sha512-QRhJTo5TjG7oF7np6yY4ZO9GDKFVzU/GtcqUqyEa96bLHE3yZHgNmsolOQ97pfxPHmFhH4vDP//PdpAIN3uI1Q==
+"@smithy/middleware-content-length@^2.0.13":
+ version "2.0.13"
+ resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-2.0.13.tgz#eb8195510fac8e2d925e43f270f347d8e2ce038b"
+ integrity sha512-Md2kxWpaec3bXp1oERFPQPBhOXCkGSAF7uc1E+4rkwjgw3/tqAXRtbjbggu67HJdwaif76As8AV6XxbD1HzqTQ==
dependencies:
- "@smithy/protocol-http" "^3.0.6"
- "@smithy/types" "^2.3.4"
+ "@smithy/protocol-http" "^3.0.7"
+ "@smithy/types" "^2.3.5"
tslib "^2.5.0"
-"@smithy/middleware-endpoint@^2.0.10":
- version "2.0.10"
- resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-2.0.10.tgz#c11d9f75549116453eea0e812e17ec7917ce5bb1"
- integrity sha512-O6m4puZc16xfenotZUHL4bRlMrwf4gTp+0I5l954M5KNd3dOK18P+FA/IIUgnXF/dX6hlCUcJkBp7nAzwrePKA==
+"@smithy/middleware-endpoint@^2.0.11":
+ version "2.0.11"
+ resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-2.0.11.tgz#c3c380ef13c43ee7443ebb4b3e2b6bb26464ff87"
+ integrity sha512-mCugsvB15up6fqpzUEpMT4CuJmFkEI+KcozA7QMzYguXCaIilyMKsyxgamwmr+o7lo3QdjN0//XLQ9bWFL129g==
dependencies:
- "@smithy/middleware-serde" "^2.0.10"
- "@smithy/types" "^2.3.4"
- "@smithy/url-parser" "^2.0.10"
- "@smithy/util-middleware" "^2.0.3"
+ "@smithy/middleware-serde" "^2.0.11"
+ "@smithy/types" "^2.3.5"
+ "@smithy/url-parser" "^2.0.11"
+ "@smithy/util-middleware" "^2.0.4"
tslib "^2.5.0"
-"@smithy/middleware-retry@^2.0.13":
- version "2.0.13"
- resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-2.0.13.tgz#ef33b1511a4b01a77e54567165b78e6d0c266e88"
- integrity sha512-zuOva8xgWC7KYG8rEXyWIcZv2GWszO83DCTU6IKcf/FKu6OBmSE+EYv3EUcCGY+GfiwCX0EyJExC9Lpq9b0w5Q==
- dependencies:
- "@smithy/node-config-provider" "^2.0.13"
- "@smithy/protocol-http" "^3.0.6"
- "@smithy/service-error-classification" "^2.0.3"
- "@smithy/types" "^2.3.4"
- "@smithy/util-middleware" "^2.0.3"
- "@smithy/util-retry" "^2.0.3"
+"@smithy/middleware-retry@^2.0.16":
+ version "2.0.16"
+ resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-2.0.16.tgz#f87401a01317de351df5228e4591961d04663607"
+ integrity sha512-Br5+0yoiMS0ugiOAfJxregzMMGIRCbX4PYo1kDHtLgvkA/d++aHbnHB819m5zOIAMPvPE7AThZgcsoK+WOsUTA==
+ dependencies:
+ "@smithy/node-config-provider" "^2.1.1"
+ "@smithy/protocol-http" "^3.0.7"
+ "@smithy/service-error-classification" "^2.0.4"
+ "@smithy/types" "^2.3.5"
+ "@smithy/util-middleware" "^2.0.4"
+ "@smithy/util-retry" "^2.0.4"
tslib "^2.5.0"
uuid "^8.3.2"
-"@smithy/middleware-serde@^2.0.10":
- version "2.0.10"
- resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-2.0.10.tgz#4b0e5f838c7d7621cabf7cfdd6cec4c7f4d52a3f"
- integrity sha512-+A0AFqs768256H/BhVEsBF6HijFbVyAwYRVXY/izJFkTalVWJOp4JA0YdY0dpXQd+AlW0tzs+nMQCE1Ew+DcgQ==
+"@smithy/middleware-serde@^2.0.11":
+ version "2.0.11"
+ resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-2.0.11.tgz#89c4433b9b4077e2f71f436cd4f97d613e2cf3bd"
+ integrity sha512-NuxnjMyf4zQqhwwdh0OTj5RqpnuT6HcH5Xg5GrPijPcKzc2REXVEVK4Yyk8ckj8ez1XSj/bCmJ+oNjmqB02GWA==
dependencies:
- "@smithy/types" "^2.3.4"
+ "@smithy/types" "^2.3.5"
tslib "^2.5.0"
-"@smithy/middleware-stack@^2.0.4":
- version "2.0.4"
- resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-2.0.4.tgz#cf199dd4d6eb3a3562e6757804faa91165693395"
- integrity sha512-MW0KNKfh8ZGLagMZnxcLJWPNXoKqW6XV/st5NnCBmmA2e2JhrUjU0AJ5Ca/yjTyNEKs3xH7AQDwp1YmmpEpmQQ==
+"@smithy/middleware-stack@^2.0.5":
+ version "2.0.5"
+ resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-2.0.5.tgz#43cd8aa7141b23dfbb64dff9ead8a3983d3acc5c"
+ integrity sha512-bVQU/rZzBY7CbSxIrDTGZYnBWKtIw+PL/cRc9B7etZk1IKSOe0NvKMJyWllfhfhrTeMF6eleCzOihIQympAvPw==
dependencies:
- "@smithy/types" "^2.3.4"
+ "@smithy/types" "^2.3.5"
tslib "^2.5.0"
"@smithy/node-config-provider@^2.0.1":
@@ -3056,25 +3056,25 @@
"@smithy/types" "^2.0.2"
tslib "^2.5.0"
-"@smithy/node-config-provider@^2.0.13":
- version "2.0.13"
- resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-2.0.13.tgz#26c95cebbb8bf9ef5dd703ab4e00ff80de34e15f"
- integrity sha512-pPpLqYuJcOq1sj1EGu+DoZK47DUS4gepqSTNgRezmrjnzNlSU2/Dcc9Ebzs+WZ0Z5vXKazuE+k+NksFLo07/AA==
+"@smithy/node-config-provider@^2.1.1":
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-2.1.1.tgz#34c861b95a4e1b66a2dc1d1aecc2bca08466bd5e"
+ integrity sha512-1lF6s1YWBi1LBu2O30tD3jyTgMtuvk/Z1twzXM4GPYe4dmZix4nNREPJIPOcfFikNU2o0eTYP80+izx5F2jIJA==
dependencies:
- "@smithy/property-provider" "^2.0.11"
- "@smithy/shared-ini-file-loader" "^2.0.12"
- "@smithy/types" "^2.3.4"
+ "@smithy/property-provider" "^2.0.12"
+ "@smithy/shared-ini-file-loader" "^2.2.0"
+ "@smithy/types" "^2.3.5"
tslib "^2.5.0"
-"@smithy/node-http-handler@^2.1.6":
- version "2.1.6"
- resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-2.1.6.tgz#c2913363bbf28f315461bd54ef9a5394f1686776"
- integrity sha512-NspvD3aCwiUNtoSTcVHz0RZz1tQ/SaRIe1KPF+r0mAdCZ9eWuhIeJT8ZNPYa1ITn7/Lgg64IyFjqPynZ8KnYQw==
+"@smithy/node-http-handler@^2.1.7":
+ version "2.1.7"
+ resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-2.1.7.tgz#a920e0e40fd04e2ea399cb4f06092fea0a1b66da"
+ integrity sha512-PQIKZXlp3awCDn/xNlCSTFE7aYG/5Tx33M05NfQmWYeB5yV1GZZOSz4dXpwiNJYTXb9jPqjl+ueXXkwtEluFFA==
dependencies:
- "@smithy/abort-controller" "^2.0.10"
- "@smithy/protocol-http" "^3.0.6"
- "@smithy/querystring-builder" "^2.0.10"
- "@smithy/types" "^2.3.4"
+ "@smithy/abort-controller" "^2.0.11"
+ "@smithy/protocol-http" "^3.0.7"
+ "@smithy/querystring-builder" "^2.0.11"
+ "@smithy/types" "^2.3.5"
tslib "^2.5.0"
"@smithy/property-provider@^2.0.0", "@smithy/property-provider@^2.0.1":
@@ -3085,12 +3085,12 @@
"@smithy/types" "^2.0.2"
tslib "^2.5.0"
-"@smithy/property-provider@^2.0.11":
- version "2.0.11"
- resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-2.0.11.tgz#c6e03e4f6f886851339c3dfaf8cd8ae3b2878fa3"
- integrity sha512-kzuOadu6XvrnlF1iXofpKXYmo4oe19st9/DE8f5gHNaFepb4eTkR8gD8BSdTnNnv7lxfv6uOwZPg4VS6hemX1w==
+"@smithy/property-provider@^2.0.12":
+ version "2.0.12"
+ resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-2.0.12.tgz#09391cae6f336300e88128717ee5fb7cff76c5b4"
+ integrity sha512-Un/OvvuQ1Kg8WYtoMCicfsFFuHb/TKL3pCA6ZIo/WvNTJTR94RtoRnL7mY4XkkUAoFMyf6KjcQJ76y1FX7S5rw==
dependencies:
- "@smithy/types" "^2.3.4"
+ "@smithy/types" "^2.3.5"
tslib "^2.5.0"
"@smithy/protocol-http@^1.1.0":
@@ -3101,20 +3101,20 @@
"@smithy/types" "^1.2.0"
tslib "^2.5.0"
-"@smithy/protocol-http@^3.0.6":
- version "3.0.6"
- resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-3.0.6.tgz#c33c128cc0f7096bf4fcdcc6d14d156ba5cd5b7c"
- integrity sha512-F0jAZzwznMmHaggiZgc7YoS08eGpmLvhVktY/Taz6+OAOHfyIqWSDNgFqYR+WHW9z5fp2XvY4mEUrQgYMQ71jw==
+"@smithy/protocol-http@^3.0.7":
+ version "3.0.7"
+ resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-3.0.7.tgz#4deec17a27f7cc5d2bea962fcb0cdfbfd311b05c"
+ integrity sha512-HnZW8y+r66ntYueCDbLqKwWcMNWW8o3eVpSrHNluwtBJ/EUWfQHRKSiu6vZZtc6PGfPQWgVfucoCE/C3QufMAA==
dependencies:
- "@smithy/types" "^2.3.4"
+ "@smithy/types" "^2.3.5"
tslib "^2.5.0"
-"@smithy/querystring-builder@^2.0.10":
- version "2.0.10"
- resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-2.0.10.tgz#b06aa958b6ec1c56254d8cc41a19882625fd1c05"
- integrity sha512-uujJGp8jzrrU1UHme8sUKEbawQTcTmUWsh8rbGXYD/lMwNLQ+9jQ9dMDWbbH9Hpoa9RER1BeL/38WzGrbpob2w==
+"@smithy/querystring-builder@^2.0.11":
+ version "2.0.11"
+ resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-2.0.11.tgz#7a56bed12474ad46059116d87eb7b81cdba9d7f6"
+ integrity sha512-b4kEbVMxpmfv2VWUITn2otckTi7GlMteZQxi+jlwedoATOGEyrCJPfRcYQJjbCi3fZ2QTfh3PcORvB27+j38Yg==
dependencies:
- "@smithy/types" "^2.3.4"
+ "@smithy/types" "^2.3.5"
"@smithy/util-uri-escape" "^2.0.0"
tslib "^2.5.0"
@@ -3126,12 +3126,12 @@
"@smithy/types" "^2.0.2"
tslib "^2.5.0"
-"@smithy/querystring-parser@^2.0.10":
- version "2.0.10"
- resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-2.0.10.tgz#074d770a37feafb0d550094dd8463bdff58515f5"
- integrity sha512-WSD4EU60Q8scacT5PIpx4Bahn6nWpt+MiYLcBkFt6fOj7AssrNeaNIU2Z0g40ftVmrwLcEOIKGX92ynbVDb3ZA==
+"@smithy/querystring-parser@^2.0.11":
+ version "2.0.11"
+ resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-2.0.11.tgz#63b7fde68714974c220e386002100ad9b70d91a3"
+ integrity sha512-YXe7jhi7s3dQ0Fu9dLoY/gLu6NCyy8tBWJL/v2c9i7/RLpHgKT+uT96/OqZkHizCJ4kr0ZD46tzMjql/o60KLg==
dependencies:
- "@smithy/types" "^2.3.4"
+ "@smithy/types" "^2.3.5"
tslib "^2.5.0"
"@smithy/service-client-documentation-generator@^2.0.0":
@@ -3141,12 +3141,12 @@
dependencies:
tslib "^2.5.0"
-"@smithy/service-error-classification@^2.0.3":
- version "2.0.3"
- resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-2.0.3.tgz#4c7de61d06db5f72437557d429bd74c74988b19e"
- integrity sha512-b+m4QCHXb7oKAkM/jHwHrl5gpqhFoMTHF643L0/vAEkegrcUWyh1UjyoHttuHcP5FnHVVy4EtpPtLkEYD+xMFw==
+"@smithy/service-error-classification@^2.0.4":
+ version "2.0.4"
+ resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-2.0.4.tgz#05c0a30eddbf63fb5f27704757da388aec5d66c2"
+ integrity sha512-77506l12I5gxTZqBkx3Wb0RqMG81bMYLaVQ+EqIWFwQDJRs5UFeXogKxSKojCmz1wLUziHZQXm03MBzPQiumQw==
dependencies:
- "@smithy/types" "^2.3.4"
+ "@smithy/types" "^2.3.5"
"@smithy/shared-ini-file-loader@^2.0.1":
version "2.0.1"
@@ -3156,14 +3156,6 @@
"@smithy/types" "^2.0.2"
tslib "^2.5.0"
-"@smithy/shared-ini-file-loader@^2.0.12":
- version "2.0.12"
- resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-2.0.12.tgz#30c8a7a36f49734fde2f052bfaeaaf40c1980b55"
- integrity sha512-umi0wc4UBGYullAgYNUVfGLgVpxQyES47cnomTqzCKeKO5oudO4hyDNj+wzrOjqDFwK2nWYGVgS8Y0JgGietrw==
- dependencies:
- "@smithy/types" "^2.3.4"
- tslib "^2.5.0"
-
"@smithy/shared-ini-file-loader@^2.0.6":
version "2.0.6"
resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-2.0.6.tgz#95dbc455e56a261ffe0b32bb3e640292b2f31798"
@@ -3172,6 +3164,14 @@
"@smithy/types" "^2.2.2"
tslib "^2.5.0"
+"@smithy/shared-ini-file-loader@^2.2.0":
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-2.2.0.tgz#9e4a90a29fe3f109875c26e6127802ed0953f43d"
+ integrity sha512-xFXqs4vAb5BdkzHSRrTapFoaqS4/3m/CGZzdw46fBjYZ0paYuLAoMY60ICCn1FfGirG+PiJ3eWcqJNe4/SkfyA==
+ dependencies:
+ "@smithy/types" "^2.3.5"
+ tslib "^2.5.0"
+
"@smithy/signature-v4@^2.0.0":
version "2.0.1"
resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-2.0.1.tgz#1f9e72930def3c25a3918ee7b562044fecbdaef4"
@@ -3186,14 +3186,14 @@
"@smithy/util-utf8" "^2.0.0"
tslib "^2.5.0"
-"@smithy/smithy-client@^2.1.9":
- version "2.1.9"
- resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-2.1.9.tgz#5a0a185947ae4e66d12d2a6135628dd2fc36924c"
- integrity sha512-HTicQSn/lOcXKJT+DKJ4YMu51S6PzbWsO8Z6Pwueo30mSoFKXg5P0BDkg2VCDqCVR0mtddM/F6hKhjW6YAV/yg==
+"@smithy/smithy-client@^2.1.10":
+ version "2.1.10"
+ resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-2.1.10.tgz#cfe93559dbec1511c434c8e94e1659ec74cf54f7"
+ integrity sha512-2OEmZDiW1Z196QHuQZ5M6cBE8FCSG0H2HADP1G+DY8P3agsvb0YJyfhyKuJbxIQy15tr3eDAK6FOrlbxgKOOew==
dependencies:
- "@smithy/middleware-stack" "^2.0.4"
- "@smithy/types" "^2.3.4"
- "@smithy/util-stream" "^2.0.14"
+ "@smithy/middleware-stack" "^2.0.5"
+ "@smithy/types" "^2.3.5"
+ "@smithy/util-stream" "^2.0.15"
tslib "^2.5.0"
"@smithy/types@^1.2.0":
@@ -3217,10 +3217,10 @@
dependencies:
tslib "^2.5.0"
-"@smithy/types@^2.3.4":
- version "2.3.4"
- resolved "https://registry.yarnpkg.com/@smithy/types/-/types-2.3.4.tgz#3b9bc15000af0a0b1f4fda741f78c1580ba15e92"
- integrity sha512-D7xlM9FOMFyFw7YnMXn9dK2KuN6+JhnrZwVt1fWaIu8hCk5CigysweeIT/H/nCo4YV+s8/oqUdLfexbkPZtvqw==
+"@smithy/types@^2.3.5":
+ version "2.3.5"
+ resolved "https://registry.yarnpkg.com/@smithy/types/-/types-2.3.5.tgz#7684a74d4368f323b478bd9e99e7dc3a6156b5e5"
+ integrity sha512-ehyDt8M9hehyxrLQGoA1BGPou8Js1Ocoh5M0ngDhJMqbFmNK5N6Xhr9/ZExWkyIW8XcGkiMPq3ZUEE0ScrhbuQ==
dependencies:
tslib "^2.5.0"
@@ -3233,13 +3233,13 @@
"@smithy/types" "^2.0.2"
tslib "^2.5.0"
-"@smithy/url-parser@^2.0.10":
- version "2.0.10"
- resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-2.0.10.tgz#3261a463b87901d7686f66a9f26efb9f57d8d555"
- integrity sha512-4TXQFGjHcqru8aH5VRB4dSnOFKCYNX6SR1Do6fwxZ+ExT2onLsh2W77cHpks7ma26W5jv6rI1u7d0+KX9F0aOw==
+"@smithy/url-parser@^2.0.11":
+ version "2.0.11"
+ resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-2.0.11.tgz#19c157f9d47217259e587847101ef6bd83091a5e"
+ integrity sha512-h89yXMCCF+S5k9XIoKltMIWTYj+FcEkU/IIFZ6RtE222fskOTL4Iak6ZRG+ehSvZDt8yKEcxqheTDq7JvvtK3g==
dependencies:
- "@smithy/querystring-parser" "^2.0.10"
- "@smithy/types" "^2.3.4"
+ "@smithy/querystring-parser" "^2.0.11"
+ "@smithy/types" "^2.3.5"
tslib "^2.5.0"
"@smithy/util-base64@^2.0.0":
@@ -3279,28 +3279,28 @@
dependencies:
tslib "^2.5.0"
-"@smithy/util-defaults-mode-browser@^2.0.13":
- version "2.0.13"
- resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-2.0.13.tgz#8136955f1bef6e66cb8a8702693e7685dcd33e26"
- integrity sha512-UmmOdUzaQjqdsl1EjbpEaQxM0VDFqTj6zDuI26/hXN7L/a1k1koTwkYpogHMvunDX3fjrQusg5gv1Td4UsGyog==
+"@smithy/util-defaults-mode-browser@^2.0.14":
+ version "2.0.14"
+ resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-2.0.14.tgz#e1c6f67277e5887eed8290d24c18175f2ae22b3d"
+ integrity sha512-NupG7SWUucm3vJrvlpt9jG1XeoPJphjcivgcUUXhDJbUPy4F04LhlTiAhWSzwlCNcF8OJsMvZ/DWbpYD3pselw==
dependencies:
- "@smithy/property-provider" "^2.0.11"
- "@smithy/smithy-client" "^2.1.9"
- "@smithy/types" "^2.3.4"
+ "@smithy/property-provider" "^2.0.12"
+ "@smithy/smithy-client" "^2.1.10"
+ "@smithy/types" "^2.3.5"
bowser "^2.11.0"
tslib "^2.5.0"
-"@smithy/util-defaults-mode-node@^2.0.15":
- version "2.0.15"
- resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-2.0.15.tgz#24f7b9de978206909ced7b522f24e7f450187372"
- integrity sha512-g6J7MHAibVPMTlXyH3mL+Iet4lMJKFVhsOhJmn+IKG81uy9m42CkRSDlwdQSJAcprLQBIaOPdFxNXQvrg2w1Uw==
- dependencies:
- "@smithy/config-resolver" "^2.0.11"
- "@smithy/credential-provider-imds" "^2.0.13"
- "@smithy/node-config-provider" "^2.0.13"
- "@smithy/property-provider" "^2.0.11"
- "@smithy/smithy-client" "^2.1.9"
- "@smithy/types" "^2.3.4"
+"@smithy/util-defaults-mode-node@^2.0.18":
+ version "2.0.18"
+ resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-2.0.18.tgz#29c640c363e4cb2b99c93c4c2a34e2297c5276f7"
+ integrity sha512-+3jMom/b/Cdp21tDnY4vKu249Al+G/P0HbRbct7/aSZDlROzv1tksaYukon6UUv7uoHn+/McqnsvqZHLlqvQ0g==
+ dependencies:
+ "@smithy/config-resolver" "^2.0.14"
+ "@smithy/credential-provider-imds" "^2.0.16"
+ "@smithy/node-config-provider" "^2.1.1"
+ "@smithy/property-provider" "^2.0.12"
+ "@smithy/smithy-client" "^2.1.10"
+ "@smithy/types" "^2.3.5"
tslib "^2.5.0"
"@smithy/util-hex-encoding@^2.0.0":
@@ -3317,31 +3317,31 @@
dependencies:
tslib "^2.5.0"
-"@smithy/util-middleware@^2.0.3":
- version "2.0.3"
- resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-2.0.3.tgz#478cbf957eaffa36aed624350be342bbf15d3c42"
- integrity sha512-+FOCFYOxd2HO7v/0hkFSETKf7FYQWa08wh/x/4KUeoVBnLR4juw8Qi+TTqZI6E2h5LkzD9uOaxC9lAjrpVzaaA==
+"@smithy/util-middleware@^2.0.4":
+ version "2.0.4"
+ resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-2.0.4.tgz#2c406efac04e341c3df6435d71fd9c73e03feb46"
+ integrity sha512-Pbu6P4MBwRcjrLgdTR1O4Y3c0sTZn2JdOiJNcgL7EcIStcQodj+6ZTXtbyU/WTEU3MV2NMA10LxFc3AWHZ3+4A==
dependencies:
- "@smithy/types" "^2.3.4"
+ "@smithy/types" "^2.3.5"
tslib "^2.5.0"
-"@smithy/util-retry@^2.0.3":
- version "2.0.3"
- resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-2.0.3.tgz#a053855ddb51800bd679da03454cf626bc440918"
- integrity sha512-gw+czMnj82i+EaH7NL7XKkfX/ZKrCS2DIWwJFPKs76bMgkhf0y1C94Lybn7f8GkBI9lfIOUdPYtzm19zQOC8sw==
+"@smithy/util-retry@^2.0.4":
+ version "2.0.4"
+ resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-2.0.4.tgz#b3ae28e73b4bdec21480005e76f9eeb9d7279e89"
+ integrity sha512-b+n1jBBKc77C1E/zfBe1Zo7S9OXGBiGn55N0apfhZHxPUP/fMH5AhFUUcWaJh7NAnah284M5lGkBKuhnr3yK5w==
dependencies:
- "@smithy/service-error-classification" "^2.0.3"
- "@smithy/types" "^2.3.4"
+ "@smithy/service-error-classification" "^2.0.4"
+ "@smithy/types" "^2.3.5"
tslib "^2.5.0"
-"@smithy/util-stream@^2.0.14":
- version "2.0.14"
- resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-2.0.14.tgz#3fdd934e2bced80331dcaff18aefbcfe39ebf3cd"
- integrity sha512-XjvlDYe+9DieXhLf7p+EgkXwFtl34kHZcWfHnc5KaILbhyVfDLWuqKTFx6WwCFqb01iFIig8trGwExRIqqkBYg==
+"@smithy/util-stream@^2.0.15":
+ version "2.0.15"
+ resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-2.0.15.tgz#8c08f135535484f7a11ced4c697a5d901e316b3a"
+ integrity sha512-A/hkYJPH2N5MCWYvky4tTpQihpYAEzqnUfxDyG3L/yMndy/2sLvxnyQal9Opuj1e9FiKSTeMyjnU9xxZGs0mRw==
dependencies:
- "@smithy/fetch-http-handler" "^2.2.1"
- "@smithy/node-http-handler" "^2.1.6"
- "@smithy/types" "^2.3.4"
+ "@smithy/fetch-http-handler" "^2.2.2"
+ "@smithy/node-http-handler" "^2.1.7"
+ "@smithy/types" "^2.3.5"
"@smithy/util-base64" "^2.0.0"
"@smithy/util-buffer-from" "^2.0.0"
"@smithy/util-hex-encoding" "^2.0.0"
@@ -3363,13 +3363,13 @@
"@smithy/util-buffer-from" "^2.0.0"
tslib "^2.5.0"
-"@smithy/util-waiter@^2.0.10":
- version "2.0.10"
- resolved "https://registry.yarnpkg.com/@smithy/util-waiter/-/util-waiter-2.0.10.tgz#6cd28af8340ab54fa9adf10d193c4476a5673363"
- integrity sha512-yQjwWVrwYw+/f3hFQccE3zZF7lk6N6xtNcA6jvhWFYhnyKAm6B2mX8Gzftl0TbgoPUpzCvKYlvhaEpVtRpVfVw==
+"@smithy/util-waiter@^2.0.11":
+ version "2.0.11"
+ resolved "https://registry.yarnpkg.com/@smithy/util-waiter/-/util-waiter-2.0.11.tgz#1cef055d557675bb187221b510cd666643dc207a"
+ integrity sha512-8SJWUl9O1YhjC77EccgltI3q4XZQp3vp9DGEW6o0OdkUcwqm/H4qOLnMkA2n+NDojuM5Iia2jWoCdbluIiG7TA==
dependencies:
- "@smithy/abort-controller" "^2.0.10"
- "@smithy/types" "^2.3.4"
+ "@smithy/abort-controller" "^2.0.11"
+ "@smithy/types" "^2.3.5"
tslib "^2.5.0"
"@socket.io/component-emitter@~3.1.0":
From 7477787e718bc18be4d0b236ec0c3204cded1732 Mon Sep 17 00:00:00 2001
From: George Fu
Date: Mon, 9 Oct 2023 12:23:24 -0400
Subject: [PATCH 06/35] docs(lib-dynamodb): fix import path for api extractor
compatibility (#5336)
---
.../typescript/codegen/DocumentClientCommandGenerator.java | 6 +++---
.../src/commands/BatchExecuteStatementCommand.ts | 2 +-
lib/lib-dynamodb/src/commands/BatchGetCommand.ts | 2 +-
lib/lib-dynamodb/src/commands/BatchWriteCommand.ts | 2 +-
lib/lib-dynamodb/src/commands/DeleteCommand.ts | 2 +-
lib/lib-dynamodb/src/commands/ExecuteStatementCommand.ts | 2 +-
lib/lib-dynamodb/src/commands/ExecuteTransactionCommand.ts | 2 +-
lib/lib-dynamodb/src/commands/GetCommand.ts | 2 +-
lib/lib-dynamodb/src/commands/PutCommand.ts | 2 +-
lib/lib-dynamodb/src/commands/QueryCommand.ts | 2 +-
lib/lib-dynamodb/src/commands/ScanCommand.ts | 2 +-
lib/lib-dynamodb/src/commands/TransactGetCommand.ts | 2 +-
lib/lib-dynamodb/src/commands/TransactWriteCommand.ts | 2 +-
lib/lib-dynamodb/src/commands/UpdateCommand.ts | 2 +-
14 files changed, 16 insertions(+), 16 deletions(-)
diff --git a/codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/DocumentClientCommandGenerator.java b/codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/DocumentClientCommandGenerator.java
index 4815634a06620..833e6525d61b0 100644
--- a/codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/DocumentClientCommandGenerator.java
+++ b/codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/DocumentClientCommandGenerator.java
@@ -233,7 +233,7 @@ private void writeKeyNode(MemberShape member) {
Shape collectionMemberTarget = model.expectShape(collectionMember.getTarget());
if (collectionMemberTarget.isUnionShape()
&& symbolProvider.toSymbol(collectionMemberTarget).getName().equals("AttributeValue")) {
- writer.addImport("ALL_MEMBERS", null, "../src/commands/utils");
+ writer.addImport("ALL_MEMBERS", null, "./commands/utils");
writer.write("ALL_MEMBERS // set/list of AttributeValue");
return;
}
@@ -243,7 +243,7 @@ private void writeKeyNode(MemberShape member) {
});
} else if (memberTarget.isUnionShape()) {
if (symbolProvider.toSymbol(memberTarget).getName().equals("AttributeValue")) {
- writer.addImport("SELF", null, "../src/commands/utils");
+ writer.addImport("SELF", null, "./commands/utils");
writer.write("SELF");
return;
} else {
@@ -258,7 +258,7 @@ private void writeKeyNode(MemberShape member) {
Shape mapMemberTarget = model.expectShape(mapMember.getTarget());
if (mapMemberTarget.isUnionShape()
&& symbolProvider.toSymbol(mapMemberTarget).getName().equals("AttributeValue")) {
- writer.addImport("ALL_VALUES", null, "../src/commands/utils");
+ writer.addImport("ALL_VALUES", null, "./commands/utils");
writer.write("ALL_VALUES // map with AttributeValue");
return;
} else {
diff --git a/lib/lib-dynamodb/src/commands/BatchExecuteStatementCommand.ts b/lib/lib-dynamodb/src/commands/BatchExecuteStatementCommand.ts
index 3e7ba0e7b1688..91f035e392b8d 100644
--- a/lib/lib-dynamodb/src/commands/BatchExecuteStatementCommand.ts
+++ b/lib/lib-dynamodb/src/commands/BatchExecuteStatementCommand.ts
@@ -11,8 +11,8 @@ import { NativeAttributeValue } from "@aws-sdk/util-dynamodb";
import { Command as $Command } from "@smithy/smithy-client";
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@smithy/types";
-import { ALL_MEMBERS, ALL_VALUES } from "../../src/commands/utils";
import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand";
+import { ALL_MEMBERS, ALL_VALUES } from "../commands/utils";
import { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient";
/**
diff --git a/lib/lib-dynamodb/src/commands/BatchGetCommand.ts b/lib/lib-dynamodb/src/commands/BatchGetCommand.ts
index 2d2c7b1d6bfc4..3441f23fbe3ba 100644
--- a/lib/lib-dynamodb/src/commands/BatchGetCommand.ts
+++ b/lib/lib-dynamodb/src/commands/BatchGetCommand.ts
@@ -9,8 +9,8 @@ import { NativeAttributeValue } from "@aws-sdk/util-dynamodb";
import { Command as $Command } from "@smithy/smithy-client";
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@smithy/types";
-import { ALL_VALUES } from "../../src/commands/utils";
import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand";
+import { ALL_VALUES } from "../commands/utils";
import { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient";
/**
diff --git a/lib/lib-dynamodb/src/commands/BatchWriteCommand.ts b/lib/lib-dynamodb/src/commands/BatchWriteCommand.ts
index da06cac6d9c65..7ad13815f7141 100644
--- a/lib/lib-dynamodb/src/commands/BatchWriteCommand.ts
+++ b/lib/lib-dynamodb/src/commands/BatchWriteCommand.ts
@@ -12,8 +12,8 @@ import { NativeAttributeValue } from "@aws-sdk/util-dynamodb";
import { Command as $Command } from "@smithy/smithy-client";
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@smithy/types";
-import { ALL_VALUES } from "../../src/commands/utils";
import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand";
+import { ALL_VALUES } from "../commands/utils";
import { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient";
/**
diff --git a/lib/lib-dynamodb/src/commands/DeleteCommand.ts b/lib/lib-dynamodb/src/commands/DeleteCommand.ts
index 4399439fe1b18..36537394788b6 100644
--- a/lib/lib-dynamodb/src/commands/DeleteCommand.ts
+++ b/lib/lib-dynamodb/src/commands/DeleteCommand.ts
@@ -10,8 +10,8 @@ import { NativeAttributeValue } from "@aws-sdk/util-dynamodb";
import { Command as $Command } from "@smithy/smithy-client";
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@smithy/types";
-import { ALL_MEMBERS, ALL_VALUES, SELF } from "../../src/commands/utils";
import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand";
+import { ALL_MEMBERS, ALL_VALUES, SELF } from "../commands/utils";
import { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient";
/**
diff --git a/lib/lib-dynamodb/src/commands/ExecuteStatementCommand.ts b/lib/lib-dynamodb/src/commands/ExecuteStatementCommand.ts
index 4dcdbcf7a67e8..6a8328e786f68 100644
--- a/lib/lib-dynamodb/src/commands/ExecuteStatementCommand.ts
+++ b/lib/lib-dynamodb/src/commands/ExecuteStatementCommand.ts
@@ -8,8 +8,8 @@ import { NativeAttributeValue } from "@aws-sdk/util-dynamodb";
import { Command as $Command } from "@smithy/smithy-client";
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@smithy/types";
-import { ALL_MEMBERS, ALL_VALUES } from "../../src/commands/utils";
import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand";
+import { ALL_MEMBERS, ALL_VALUES } from "../commands/utils";
import { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient";
/**
diff --git a/lib/lib-dynamodb/src/commands/ExecuteTransactionCommand.ts b/lib/lib-dynamodb/src/commands/ExecuteTransactionCommand.ts
index f74575239d2b5..de06a1f0ad3a8 100644
--- a/lib/lib-dynamodb/src/commands/ExecuteTransactionCommand.ts
+++ b/lib/lib-dynamodb/src/commands/ExecuteTransactionCommand.ts
@@ -10,8 +10,8 @@ import { NativeAttributeValue } from "@aws-sdk/util-dynamodb";
import { Command as $Command } from "@smithy/smithy-client";
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@smithy/types";
-import { ALL_MEMBERS, ALL_VALUES } from "../../src/commands/utils";
import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand";
+import { ALL_MEMBERS, ALL_VALUES } from "../commands/utils";
import { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient";
/**
diff --git a/lib/lib-dynamodb/src/commands/GetCommand.ts b/lib/lib-dynamodb/src/commands/GetCommand.ts
index 4f2dd07b61f1a..023003368bdbb 100644
--- a/lib/lib-dynamodb/src/commands/GetCommand.ts
+++ b/lib/lib-dynamodb/src/commands/GetCommand.ts
@@ -8,8 +8,8 @@ import { NativeAttributeValue } from "@aws-sdk/util-dynamodb";
import { Command as $Command } from "@smithy/smithy-client";
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@smithy/types";
-import { ALL_VALUES } from "../../src/commands/utils";
import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand";
+import { ALL_VALUES } from "../commands/utils";
import { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient";
/**
diff --git a/lib/lib-dynamodb/src/commands/PutCommand.ts b/lib/lib-dynamodb/src/commands/PutCommand.ts
index 920000ed30727..d8cf3a68f7a64 100644
--- a/lib/lib-dynamodb/src/commands/PutCommand.ts
+++ b/lib/lib-dynamodb/src/commands/PutCommand.ts
@@ -10,8 +10,8 @@ import { NativeAttributeValue } from "@aws-sdk/util-dynamodb";
import { Command as $Command } from "@smithy/smithy-client";
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@smithy/types";
-import { ALL_MEMBERS, ALL_VALUES, SELF } from "../../src/commands/utils";
import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand";
+import { ALL_MEMBERS, ALL_VALUES, SELF } from "../commands/utils";
import { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient";
/**
diff --git a/lib/lib-dynamodb/src/commands/QueryCommand.ts b/lib/lib-dynamodb/src/commands/QueryCommand.ts
index 80003eb6de310..fb8c6d186b6f7 100644
--- a/lib/lib-dynamodb/src/commands/QueryCommand.ts
+++ b/lib/lib-dynamodb/src/commands/QueryCommand.ts
@@ -9,8 +9,8 @@ import { NativeAttributeValue } from "@aws-sdk/util-dynamodb";
import { Command as $Command } from "@smithy/smithy-client";
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@smithy/types";
-import { ALL_MEMBERS, ALL_VALUES } from "../../src/commands/utils";
import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand";
+import { ALL_MEMBERS, ALL_VALUES } from "../commands/utils";
import { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient";
/**
diff --git a/lib/lib-dynamodb/src/commands/ScanCommand.ts b/lib/lib-dynamodb/src/commands/ScanCommand.ts
index b4c89e45aeef7..fbd4330338631 100644
--- a/lib/lib-dynamodb/src/commands/ScanCommand.ts
+++ b/lib/lib-dynamodb/src/commands/ScanCommand.ts
@@ -9,8 +9,8 @@ import { NativeAttributeValue } from "@aws-sdk/util-dynamodb";
import { Command as $Command } from "@smithy/smithy-client";
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@smithy/types";
-import { ALL_MEMBERS, ALL_VALUES } from "../../src/commands/utils";
import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand";
+import { ALL_MEMBERS, ALL_VALUES } from "../commands/utils";
import { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient";
/**
diff --git a/lib/lib-dynamodb/src/commands/TransactGetCommand.ts b/lib/lib-dynamodb/src/commands/TransactGetCommand.ts
index c4b7a37928450..ce9688fe5add3 100644
--- a/lib/lib-dynamodb/src/commands/TransactGetCommand.ts
+++ b/lib/lib-dynamodb/src/commands/TransactGetCommand.ts
@@ -11,8 +11,8 @@ import { NativeAttributeValue } from "@aws-sdk/util-dynamodb";
import { Command as $Command } from "@smithy/smithy-client";
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@smithy/types";
-import { ALL_VALUES } from "../../src/commands/utils";
import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand";
+import { ALL_VALUES } from "../commands/utils";
import { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient";
/**
diff --git a/lib/lib-dynamodb/src/commands/TransactWriteCommand.ts b/lib/lib-dynamodb/src/commands/TransactWriteCommand.ts
index 36a6e86af05dc..c486ee2f61a80 100644
--- a/lib/lib-dynamodb/src/commands/TransactWriteCommand.ts
+++ b/lib/lib-dynamodb/src/commands/TransactWriteCommand.ts
@@ -14,8 +14,8 @@ import { NativeAttributeValue } from "@aws-sdk/util-dynamodb";
import { Command as $Command } from "@smithy/smithy-client";
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@smithy/types";
-import { ALL_VALUES } from "../../src/commands/utils";
import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand";
+import { ALL_VALUES } from "../commands/utils";
import { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient";
/**
diff --git a/lib/lib-dynamodb/src/commands/UpdateCommand.ts b/lib/lib-dynamodb/src/commands/UpdateCommand.ts
index add23bdb9539b..378f73a104496 100644
--- a/lib/lib-dynamodb/src/commands/UpdateCommand.ts
+++ b/lib/lib-dynamodb/src/commands/UpdateCommand.ts
@@ -11,8 +11,8 @@ import { NativeAttributeValue } from "@aws-sdk/util-dynamodb";
import { Command as $Command } from "@smithy/smithy-client";
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@smithy/types";
-import { ALL_MEMBERS, ALL_VALUES, SELF } from "../../src/commands/utils";
import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand";
+import { ALL_MEMBERS, ALL_VALUES, SELF } from "../commands/utils";
import { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient";
/**
From 931e3491a4e86c7869755129d392fad57f0b3b0f Mon Sep 17 00:00:00 2001
From: George Fu
Date: Tue, 10 Oct 2023 12:55:50 -0400
Subject: [PATCH 07/35] test(lib-dynamodb): increase e2e timeout for
lib-dynamodb (#5337)
---
lib/lib-dynamodb/src/test/lib-dynamodb.e2e.spec.ts | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/lib/lib-dynamodb/src/test/lib-dynamodb.e2e.spec.ts b/lib/lib-dynamodb/src/test/lib-dynamodb.e2e.spec.ts
index 0bb80af2fed60..75e2a7fd78068 100644
--- a/lib/lib-dynamodb/src/test/lib-dynamodb.e2e.spec.ts
+++ b/lib/lib-dynamodb/src/test/lib-dynamodb.e2e.spec.ts
@@ -23,7 +23,8 @@ import {
UpdateCommandOutput,
} from "@aws-sdk/lib-dynamodb";
-jest.setTimeout(60000); // expected running time: 10s
+// expected running time: table creation (~20s) + operations 10s
+jest.setTimeout(180000);
describe(DynamoDBDocument.name, () => {
const dynamodb = new DynamoDB({ region: "us-west-2", maxAttempts: 10 });
@@ -157,7 +158,7 @@ describe(DynamoDBDocument.name, () => {
})
.catch(passError);
await waitUntilTableExists(
- { client: dynamodb, maxWaitTime: 60 },
+ { client: dynamodb, maxWaitTime: 120 },
{
TableName,
}
From bde7d54c63c8c23ba2f76cf4e66ba909e6a6414f Mon Sep 17 00:00:00 2001
From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com>
Date: Tue, 10 Oct 2023 10:59:54 -0700
Subject: [PATCH 08/35] chore(util-endpoints): remove utility to read service
specific endpoints (#5341)
---
packages/util-endpoints/package.json | 1 -
.../src/getEndpointUrlConfig.spec.ts | 91 -------------------
.../src/getEndpointUrlConfig.ts | 36 --------
3 files changed, 128 deletions(-)
delete mode 100644 packages/util-endpoints/src/getEndpointUrlConfig.spec.ts
delete mode 100644 packages/util-endpoints/src/getEndpointUrlConfig.ts
diff --git a/packages/util-endpoints/package.json b/packages/util-endpoints/package.json
index 7d2085605945f..c7e914985b74f 100644
--- a/packages/util-endpoints/package.json
+++ b/packages/util-endpoints/package.json
@@ -23,7 +23,6 @@
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "*",
- "@smithy/node-config-provider": "^2.1.1",
"tslib": "^2.5.0"
},
"engines": {
diff --git a/packages/util-endpoints/src/getEndpointUrlConfig.spec.ts b/packages/util-endpoints/src/getEndpointUrlConfig.spec.ts
deleted file mode 100644
index 1455516508866..0000000000000
--- a/packages/util-endpoints/src/getEndpointUrlConfig.spec.ts
+++ /dev/null
@@ -1,91 +0,0 @@
-import { getEndpointUrlConfig } from "./getEndpointUrlConfig";
-
-const ENV_ENDPOINT_URL = "AWS_ENDPOINT_URL";
-const CONFIG_ENDPOINT_URL = "endpoint_url";
-
-describe(getEndpointUrlConfig.name, () => {
- const serviceId = "mockServiceId";
- const endpointUrlConfig = getEndpointUrlConfig(serviceId);
-
- const mockEndpoint = "https://mock-endpoint.com";
- const ORIGINAL_ENV = process.env;
-
- beforeEach(() => {
- process.env = {};
- });
-
- afterEach(() => {
- process.env = ORIGINAL_ENV;
- });
-
- describe("environmentVariableSelector", () => {
- beforeEach(() => {
- process.env[ENV_ENDPOINT_URL] = mockEndpoint;
- });
-
- it.each([
- ["foo", `${ENV_ENDPOINT_URL}_FOO`],
- ["foobar", `${ENV_ENDPOINT_URL}_FOOBAR`],
- ["foo bar", `${ENV_ENDPOINT_URL}_FOO_BAR`],
- ])("returns endpoint for '%s' from environment variable %s", (serviceId, envKey) => {
- const serviceMockEndpoint = `${mockEndpoint}/${envKey}`;
- process.env[envKey] = serviceMockEndpoint;
-
- const endpointUrlConfig = getEndpointUrlConfig(serviceId);
- expect(endpointUrlConfig.environmentVariableSelector(process.env)).toEqual(serviceMockEndpoint);
- });
-
- it(`returns endpoint from environment variable ${ENV_ENDPOINT_URL}`, () => {
- expect(endpointUrlConfig.environmentVariableSelector(process.env)).toEqual(mockEndpoint);
- });
-
- it("returns undefined, if endpoint not available in environment variables", () => {
- process.env[ENV_ENDPOINT_URL] = undefined;
- expect(endpointUrlConfig.environmentVariableSelector(process.env)).toBeUndefined();
- });
- });
-
- describe("configFileSelector", () => {
- const profile = { [CONFIG_ENDPOINT_URL]: mockEndpoint };
-
- // ToDo: Enable once support for services section is added.
- it.skip.each([
- ["foo", "foo"],
- ["foobar", "foobar"],
- ["foo bar", "foo_bar"],
- ])("returns endpoint for '%s' from config file '%s'", (serviceId, serviceConfigId) => {
- const serviceMockEndpoint = `${mockEndpoint}/${serviceConfigId}`;
- const serviceSectionName = `services ${serviceConfigId}_dev`;
-
- const profileWithServices = {
- ...profile,
- services: serviceSectionName,
- };
- const parsedIni = {
- profileName: profileWithServices,
- [serviceSectionName]: {
- [serviceConfigId]: {
- [CONFIG_ENDPOINT_URL]: serviceMockEndpoint,
- },
- },
- };
-
- // @ts-ignore
- expect(endpointUrlConfig.environmentVariableSelector(profileWithServices, parsedIni)).toEqual(
- serviceMockEndpoint
- );
- });
-
- it("returns endpoint from config file, if available", () => {
- expect(endpointUrlConfig.configFileSelector(profile)).toEqual(mockEndpoint);
- });
-
- it("returns undefined, if endpoint not available in config", () => {
- expect(endpointUrlConfig.environmentVariableSelector({})).toBeUndefined();
- });
- });
-
- it("returns undefined by default", () => {
- expect(endpointUrlConfig.default).toBeUndefined();
- });
-});
diff --git a/packages/util-endpoints/src/getEndpointUrlConfig.ts b/packages/util-endpoints/src/getEndpointUrlConfig.ts
deleted file mode 100644
index c0f73e7c37fa3..0000000000000
--- a/packages/util-endpoints/src/getEndpointUrlConfig.ts
+++ /dev/null
@@ -1,36 +0,0 @@
-import { IniSection } from "@aws-sdk/types";
-import { LoadedConfigSelectors } from "@smithy/node-config-provider";
-
-const ENV_ENDPOINT_URL = "AWS_ENDPOINT_URL";
-const CONFIG_ENDPOINT_URL = "endpoint_url";
-
-export const getEndpointUrlConfig = (serviceId: string): LoadedConfigSelectors => ({
- environmentVariableSelector: (env: NodeJS.ProcessEnv) => {
- // The value provided by a service-specific environment variable.
- const serviceEndpointUrlSections = [ENV_ENDPOINT_URL, ...serviceId.split(" ").map((w) => w.toUpperCase())];
- const serviceEndpointUrl = env[serviceEndpointUrlSections.join("_")];
- if (serviceEndpointUrl) return serviceEndpointUrl;
-
- // The value provided by the global endpoint environment variable.
- const endpointUrl = env[ENV_ENDPOINT_URL];
- if (endpointUrl) return endpointUrl;
-
- return undefined;
- },
-
- configFileSelector: (profile: IniSection) => {
- // The value provided by a service-specific parameter from a services definition section
- // referenced in a profile in the shared configuration file.
-
- // ToDo: profile is selected one. It does not have access to other 'services' section.
- // The configFileSelector interface needs to be modified to pass ParsedIniData as optional second parameter.
-
- // The value provided by the global parameter from a profile in the shared configuration file.
- const endpointUrl = profile[CONFIG_ENDPOINT_URL];
- if (endpointUrl) return endpointUrl;
-
- return undefined;
- },
-
- default: undefined,
-});
From e1db7b10aa63e142f7a2fbdefa57a79844f8a798 Mon Sep 17 00:00:00 2001
From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com>
Date: Tue, 10 Oct 2023 12:50:45 -0700
Subject: [PATCH 09/35] test(middleware-flexible-checksums):
flexibleChecksumsResponseMiddleware.spec.ts (#5342)
---
.../src/flexibleChecksumsMiddleware.spec.ts | 42 +---------
...lexibleChecksumsResponseMiddleware.spec.ts | 84 +++++++++++++++++++
2 files changed, 85 insertions(+), 41 deletions(-)
create mode 100644 packages/middleware-flexible-checksums/src/flexibleChecksumsResponseMiddleware.spec.ts
diff --git a/packages/middleware-flexible-checksums/src/flexibleChecksumsMiddleware.spec.ts b/packages/middleware-flexible-checksums/src/flexibleChecksumsMiddleware.spec.ts
index 730f04fc2dc38..995ae1db5480d 100644
--- a/packages/middleware-flexible-checksums/src/flexibleChecksumsMiddleware.spec.ts
+++ b/packages/middleware-flexible-checksums/src/flexibleChecksumsMiddleware.spec.ts
@@ -1,17 +1,15 @@
import { HttpRequest } from "@smithy/protocol-http";
-import { BuildHandlerArguments, DeserializeHandlerArguments } from "@smithy/types";
+import { BuildHandlerArguments } from "@smithy/types";
import { PreviouslyResolved } from "./configuration";
import { ChecksumAlgorithm } from "./constants";
import { flexibleChecksumsMiddleware } from "./flexibleChecksumsMiddleware";
-import { flexibleChecksumsResponseMiddleware } from "./flexibleChecksumsResponseMiddleware";
import { getChecksumAlgorithmForRequest } from "./getChecksumAlgorithmForRequest";
import { getChecksumLocationName } from "./getChecksumLocationName";
import { hasHeader } from "./hasHeader";
import { isStreaming } from "./isStreaming";
import { selectChecksumAlgorithmFunction } from "./selectChecksumAlgorithmFunction";
import { stringHasher } from "./stringHasher";
-import { validateChecksumFromResponse } from "./validateChecksumFromResponse";
jest.mock("@smithy/protocol-http");
jest.mock("./getChecksumAlgorithmForRequest");
@@ -20,7 +18,6 @@ jest.mock("./hasHeader");
jest.mock("./isStreaming");
jest.mock("./selectChecksumAlgorithmFunction");
jest.mock("./stringHasher");
-jest.mock("./validateChecksumFromResponse");
describe(flexibleChecksumsMiddleware.name, () => {
const mockNext = jest.fn();
@@ -92,24 +89,6 @@ describe(flexibleChecksumsMiddleware.name, () => {
expect(hasHeader).toHaveBeenCalledWith(mockChecksumLocationName, mockHeadersWithChecksumHeader);
});
});
-
- describe("response validation", () => {
- it("if requestValidationModeMember is not defined", async () => {
- const handler = flexibleChecksumsMiddleware(mockConfig, mockMiddlewareConfig)(mockNext, {});
- await handler(mockArgs);
- expect(validateChecksumFromResponse).not.toHaveBeenCalled();
- });
-
- it("if requestValidationModeMember is not set to 'ENABLED' in input", async () => {
- const mockRequestValidationModeMember = "mockRequestValidationModeMember";
- const handler = flexibleChecksumsMiddleware(mockConfig, {
- ...mockMiddlewareConfig,
- requestValidationModeMember: mockRequestValidationModeMember,
- })(mockNext, {});
- await handler(mockArgs);
- expect(validateChecksumFromResponse).not.toHaveBeenCalled();
- });
- });
});
describe("adds checksum in the request header", () => {
@@ -189,23 +168,4 @@ describe(flexibleChecksumsMiddleware.name, () => {
expect(mockBase64Encoder).toHaveBeenCalledWith(mockRawChecksum);
});
});
-
- it("validates checksum from the response header", async () => {
- const mockRequestValidationModeMember = "mockRequestValidationModeMember";
- const mockInput = { [mockRequestValidationModeMember]: "ENABLED" };
- const mockResponseAlgorithms = ["ALGO1", "ALGO2"];
-
- const responseHandler = flexibleChecksumsResponseMiddleware(mockConfig, {
- ...mockMiddlewareConfig,
- input: mockInput,
- requestValidationModeMember: mockRequestValidationModeMember,
- responseAlgorithms: mockResponseAlgorithms,
- })(mockNext, {});
-
- await responseHandler({ ...mockArgs, input: mockInput } as DeserializeHandlerArguments);
- expect(validateChecksumFromResponse).toHaveBeenCalledWith(mockResult.response, {
- config: mockConfig,
- responseAlgorithms: mockResponseAlgorithms,
- });
- });
});
diff --git a/packages/middleware-flexible-checksums/src/flexibleChecksumsResponseMiddleware.spec.ts b/packages/middleware-flexible-checksums/src/flexibleChecksumsResponseMiddleware.spec.ts
new file mode 100644
index 0000000000000..818e7cb88c5c3
--- /dev/null
+++ b/packages/middleware-flexible-checksums/src/flexibleChecksumsResponseMiddleware.spec.ts
@@ -0,0 +1,84 @@
+import { HttpRequest } from "@smithy/protocol-http";
+import { DeserializeHandlerArguments } from "@smithy/types";
+
+import { PreviouslyResolved } from "./configuration";
+import { flexibleChecksumsResponseMiddleware } from "./flexibleChecksumsResponseMiddleware";
+import { FlexibleChecksumsMiddlewareConfig } from "./getFlexibleChecksumsPlugin";
+import { isStreaming } from "./isStreaming";
+import { validateChecksumFromResponse } from "./validateChecksumFromResponse";
+
+jest.mock("@smithy/protocol-http");
+jest.mock("./isStreaming");
+jest.mock("./validateChecksumFromResponse");
+
+describe(flexibleChecksumsResponseMiddleware.name, () => {
+ const mockNext = jest.fn();
+
+ const mockInput = {};
+ const mockConfig = {} as PreviouslyResolved;
+ const mockRequestValidationModeMember = "ChecksumEnabled";
+ const mockMiddlewareConfig = {
+ input: mockInput,
+ requestChecksumRequired: false,
+ requestValidationModeMember: mockRequestValidationModeMember,
+ };
+
+ const mockRequest = {};
+ const mockArgs = { input: mockInput, request: mockRequest } as DeserializeHandlerArguments;
+ const mockResult = { response: { body: "mockResponsebody" } };
+
+ beforeEach(() => {
+ mockNext.mockResolvedValueOnce(mockResult);
+ const { isInstance } = HttpRequest;
+ (isInstance as unknown as jest.Mock).mockReturnValue(true);
+ (isStreaming as jest.Mock).mockReturnValue(false);
+ });
+
+ afterEach(() => {
+ expect(mockNext).toHaveBeenCalledTimes(1);
+ jest.clearAllMocks();
+ });
+
+ describe("skips", () => {
+ it("if not an instance of HttpRequest", async () => {
+ const { isInstance } = HttpRequest;
+ (isInstance as unknown as jest.Mock).mockReturnValue(false);
+ const handler = flexibleChecksumsResponseMiddleware(mockConfig, mockMiddlewareConfig)(mockNext, {});
+ await handler(mockArgs);
+ expect(validateChecksumFromResponse).not.toHaveBeenCalled();
+ });
+
+ describe("response checksum", () => {
+ it("if requestValidationModeMember is not defined", async () => {
+ const mockMwConfig = Object.assign({}, mockMiddlewareConfig) as FlexibleChecksumsMiddlewareConfig;
+ delete mockMwConfig.requestValidationModeMember;
+ const handler = flexibleChecksumsResponseMiddleware(mockConfig, mockMwConfig)(mockNext, {});
+ await handler(mockArgs);
+ expect(validateChecksumFromResponse).not.toHaveBeenCalled();
+ });
+
+ it("if requestValidationModeMember is not enabled in input", async () => {
+ const handler = flexibleChecksumsResponseMiddleware(mockConfig, mockMiddlewareConfig)(mockNext, {});
+ await handler(mockArgs);
+ expect(validateChecksumFromResponse).not.toHaveBeenCalled();
+ });
+ });
+ });
+
+ it("validates checksum from the response header", async () => {
+ const mockInput = { [mockRequestValidationModeMember]: "ENABLED" };
+ const mockResponseAlgorithms = ["ALGO1", "ALGO2"];
+
+ const handler = flexibleChecksumsResponseMiddleware(mockConfig, {
+ ...mockMiddlewareConfig,
+ input: mockInput,
+ responseAlgorithms: mockResponseAlgorithms,
+ })(mockNext, {});
+
+ await handler({ ...mockArgs, input: mockInput });
+ expect(validateChecksumFromResponse).toHaveBeenCalledWith(mockResult.response, {
+ config: mockConfig,
+ responseAlgorithms: mockResponseAlgorithms,
+ });
+ });
+});
From 78a50c939078c4069d9059e1472066c97d69cf6f Mon Sep 17 00:00:00 2001
From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com>
Date: Tue, 10 Oct 2023 13:26:39 -0700
Subject: [PATCH 10/35] chore(middleware-flexible-checksums): split
FlexibleChecksumsMiddlewareConfig into request/response (#5344)
---
.../src/flexibleChecksumsMiddleware.ts | 28 ++++++++++-
...lexibleChecksumsResponseMiddleware.spec.ts | 3 --
.../flexibleChecksumsResponseMiddleware.ts | 20 +++++++-
.../src/getFlexibleChecksumsPlugin.ts | 47 ++++---------------
4 files changed, 54 insertions(+), 44 deletions(-)
diff --git a/packages/middleware-flexible-checksums/src/flexibleChecksumsMiddleware.ts b/packages/middleware-flexible-checksums/src/flexibleChecksumsMiddleware.ts
index d03a473d84d41..83fd9acff2395 100644
--- a/packages/middleware-flexible-checksums/src/flexibleChecksumsMiddleware.ts
+++ b/packages/middleware-flexible-checksums/src/flexibleChecksumsMiddleware.ts
@@ -2,6 +2,7 @@ import { HttpRequest } from "@smithy/protocol-http";
import {
BuildHandler,
BuildHandlerArguments,
+ BuildHandlerOptions,
BuildHandlerOutput,
BuildMiddleware,
MetadataBearer,
@@ -10,17 +11,40 @@ import {
import { PreviouslyResolved } from "./configuration";
import { getChecksumAlgorithmForRequest } from "./getChecksumAlgorithmForRequest";
import { getChecksumLocationName } from "./getChecksumLocationName";
-import { FlexibleChecksumsMiddlewareConfig } from "./getFlexibleChecksumsPlugin";
import { hasHeader } from "./hasHeader";
import { isStreaming } from "./isStreaming";
import { selectChecksumAlgorithmFunction } from "./selectChecksumAlgorithmFunction";
import { stringHasher } from "./stringHasher";
+export interface FlexibleChecksumsRequestMiddlewareConfig {
+ /**
+ * The input object for the operation.
+ */
+ input: Object;
+
+ /**
+ * Indicates an operation requires a checksum in its HTTP request.
+ */
+ requestChecksumRequired: boolean;
+
+ /**
+ * Defines a top-level operation input member that is used to configure request checksum behavior.
+ */
+ requestAlgorithmMember?: string;
+}
+
+export const flexibleChecksumsMiddlewareOptions: BuildHandlerOptions = {
+ name: "flexibleChecksumsMiddleware",
+ step: "build",
+ tags: ["BODY_CHECKSUM"],
+ override: true,
+};
+
/**
* @internal
*/
export const flexibleChecksumsMiddleware =
- (config: PreviouslyResolved, middlewareConfig: FlexibleChecksumsMiddlewareConfig): BuildMiddleware =>
+ (config: PreviouslyResolved, middlewareConfig: FlexibleChecksumsRequestMiddlewareConfig): BuildMiddleware =>
(next: BuildHandler): BuildHandler =>
async (args: BuildHandlerArguments): Promise> => {
if (!HttpRequest.isInstance(args.request)) {
diff --git a/packages/middleware-flexible-checksums/src/flexibleChecksumsResponseMiddleware.spec.ts b/packages/middleware-flexible-checksums/src/flexibleChecksumsResponseMiddleware.spec.ts
index 818e7cb88c5c3..01a744ba2efd7 100644
--- a/packages/middleware-flexible-checksums/src/flexibleChecksumsResponseMiddleware.spec.ts
+++ b/packages/middleware-flexible-checksums/src/flexibleChecksumsResponseMiddleware.spec.ts
@@ -18,8 +18,6 @@ describe(flexibleChecksumsResponseMiddleware.name, () => {
const mockConfig = {} as PreviouslyResolved;
const mockRequestValidationModeMember = "ChecksumEnabled";
const mockMiddlewareConfig = {
- input: mockInput,
- requestChecksumRequired: false,
requestValidationModeMember: mockRequestValidationModeMember,
};
@@ -71,7 +69,6 @@ describe(flexibleChecksumsResponseMiddleware.name, () => {
const handler = flexibleChecksumsResponseMiddleware(mockConfig, {
...mockMiddlewareConfig,
- input: mockInput,
responseAlgorithms: mockResponseAlgorithms,
})(mockNext, {});
diff --git a/packages/middleware-flexible-checksums/src/flexibleChecksumsResponseMiddleware.ts b/packages/middleware-flexible-checksums/src/flexibleChecksumsResponseMiddleware.ts
index 7dc8b57558d31..1bad69b96e52a 100644
--- a/packages/middleware-flexible-checksums/src/flexibleChecksumsResponseMiddleware.ts
+++ b/packages/middleware-flexible-checksums/src/flexibleChecksumsResponseMiddleware.ts
@@ -9,11 +9,24 @@ import {
} from "@smithy/types";
import { PreviouslyResolved } from "./configuration";
-import { FlexibleChecksumsMiddlewareConfig } from "./getFlexibleChecksumsPlugin";
import { isStreaming } from "./isStreaming";
import { createReadStreamOnBuffer } from "./streams/create-read-stream-on-buffer";
import { validateChecksumFromResponse } from "./validateChecksumFromResponse";
+export interface FlexibleChecksumsResponseMiddlewareConfig {
+ /**
+ * Defines a top-level operation input member used to opt-in to best-effort validation
+ * of a checksum returned in the HTTP response of the operation.
+ */
+ requestValidationModeMember?: string;
+
+ /**
+ * Defines the checksum algorithms clients SHOULD look for when validating checksums
+ * returned in the HTTP response.
+ */
+ responseAlgorithms?: string[];
+}
+
/**
* @internal
*/
@@ -31,7 +44,10 @@ export const flexibleChecksumsResponseMiddlewareOptions: RelativeMiddlewareOptio
* The validation counterpart to the flexibleChecksumsMiddleware.
*/
export const flexibleChecksumsResponseMiddleware =
- (config: PreviouslyResolved, middlewareConfig: FlexibleChecksumsMiddlewareConfig): DeserializeMiddleware =>
+ (
+ config: PreviouslyResolved,
+ middlewareConfig: FlexibleChecksumsResponseMiddlewareConfig
+ ): DeserializeMiddleware =>
(next: DeserializeHandler): DeserializeHandler =>
async (args: DeserializeHandlerArguments): Promise> => {
if (!HttpRequest.isInstance(args.request)) {
diff --git a/packages/middleware-flexible-checksums/src/getFlexibleChecksumsPlugin.ts b/packages/middleware-flexible-checksums/src/getFlexibleChecksumsPlugin.ts
index a1a18ed7388d0..94dd3ecea9b07 100644
--- a/packages/middleware-flexible-checksums/src/getFlexibleChecksumsPlugin.ts
+++ b/packages/middleware-flexible-checksums/src/getFlexibleChecksumsPlugin.ts
@@ -1,47 +1,20 @@
-import { BuildHandlerOptions, Pluggable } from "@smithy/types";
+import { Pluggable } from "@smithy/types";
import { PreviouslyResolved } from "./configuration";
-import { flexibleChecksumsMiddleware } from "./flexibleChecksumsMiddleware";
+import {
+ flexibleChecksumsMiddleware,
+ flexibleChecksumsMiddlewareOptions,
+ FlexibleChecksumsRequestMiddlewareConfig,
+} from "./flexibleChecksumsMiddleware";
import {
flexibleChecksumsResponseMiddleware,
+ FlexibleChecksumsResponseMiddlewareConfig,
flexibleChecksumsResponseMiddlewareOptions,
} from "./flexibleChecksumsResponseMiddleware";
-export const flexibleChecksumsMiddlewareOptions: BuildHandlerOptions = {
- name: "flexibleChecksumsMiddleware",
- step: "build",
- tags: ["BODY_CHECKSUM"],
- override: true,
-};
-
-export interface FlexibleChecksumsMiddlewareConfig {
- /**
- * The input object for the operation.
- */
- input: Object;
-
- /**
- * Indicates an operation requires a checksum in its HTTP request.
- */
- requestChecksumRequired: boolean;
-
- /**
- * Defines a top-level operation input member that is used to configure request checksum behavior.
- */
- requestAlgorithmMember?: string;
-
- /**
- * Defines a top-level operation input member used to opt-in to best-effort validation
- * of a checksum returned in the HTTP response of the operation.
- */
- requestValidationModeMember?: string;
-
- /**
- * Defines the checksum algorithms clients SHOULD look for when validating checksums
- * returned in the HTTP response.
- */
- responseAlgorithms?: string[];
-}
+export interface FlexibleChecksumsMiddlewareConfig
+ extends FlexibleChecksumsRequestMiddlewareConfig,
+ FlexibleChecksumsResponseMiddlewareConfig {}
export const getFlexibleChecksumsPlugin = (
config: PreviouslyResolved,
From 6a6a75e69dbc05750cab0ce83c2235f87c75b922 Mon Sep 17 00:00:00 2001
From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com>
Date: Wed, 11 Oct 2023 07:57:48 -0700
Subject: [PATCH 11/35] fix(middleware-flexible-checksums): skip checksum
validation for s3 whole-object multipart GET (#5345)
---
...lexibleChecksumsResponseMiddleware.spec.ts | 76 +++++++++++++++----
.../flexibleChecksumsResponseMiddleware.ts | 23 +++++-
.../src/isChecksumWithPartNumber.spec.ts | 19 +++++
.../src/isChecksumWithPartNumber.ts | 16 ++++
.../src/selectChecksumAlgorithmFunction.ts | 2 +-
.../src/validateChecksumFromResponse.spec.ts | 66 ++++++++--------
6 files changed, 149 insertions(+), 53 deletions(-)
create mode 100644 packages/middleware-flexible-checksums/src/isChecksumWithPartNumber.spec.ts
create mode 100644 packages/middleware-flexible-checksums/src/isChecksumWithPartNumber.ts
diff --git a/packages/middleware-flexible-checksums/src/flexibleChecksumsResponseMiddleware.spec.ts b/packages/middleware-flexible-checksums/src/flexibleChecksumsResponseMiddleware.spec.ts
index 01a744ba2efd7..5dc42ae848369 100644
--- a/packages/middleware-flexible-checksums/src/flexibleChecksumsResponseMiddleware.spec.ts
+++ b/packages/middleware-flexible-checksums/src/flexibleChecksumsResponseMiddleware.spec.ts
@@ -2,34 +2,55 @@ import { HttpRequest } from "@smithy/protocol-http";
import { DeserializeHandlerArguments } from "@smithy/types";
import { PreviouslyResolved } from "./configuration";
+import { ChecksumAlgorithm } from "./constants";
import { flexibleChecksumsResponseMiddleware } from "./flexibleChecksumsResponseMiddleware";
+import { getChecksumLocationName } from "./getChecksumLocationName";
import { FlexibleChecksumsMiddlewareConfig } from "./getFlexibleChecksumsPlugin";
+import { isChecksumWithPartNumber } from "./isChecksumWithPartNumber";
import { isStreaming } from "./isStreaming";
import { validateChecksumFromResponse } from "./validateChecksumFromResponse";
jest.mock("@smithy/protocol-http");
+jest.mock("./isChecksumWithPartNumber");
jest.mock("./isStreaming");
+jest.mock("./getChecksumLocationName");
jest.mock("./validateChecksumFromResponse");
describe(flexibleChecksumsResponseMiddleware.name, () => {
const mockNext = jest.fn();
+ const mockContext = {
+ clientName: "mockClientName",
+ commandName: "mockCommandName",
+ };
- const mockInput = {};
const mockConfig = {} as PreviouslyResolved;
const mockRequestValidationModeMember = "ChecksumEnabled";
+ const mockResponseAlgorithms = [ChecksumAlgorithm.CRC32, ChecksumAlgorithm.CRC32C];
const mockMiddlewareConfig = {
requestValidationModeMember: mockRequestValidationModeMember,
+ responseAlgorithms: mockResponseAlgorithms,
};
+ const mockInput = { [mockRequestValidationModeMember]: "ENABLED" };
const mockRequest = {};
const mockArgs = { input: mockInput, request: mockRequest } as DeserializeHandlerArguments;
- const mockResult = { response: { body: "mockResponsebody" } };
+ const mockChecksum = "mockChecksum";
+ const mockResult = {
+ response: {
+ body: "mockResponsebody",
+ headers: {
+ [ChecksumAlgorithm.CRC32]: mockChecksum,
+ },
+ },
+ };
beforeEach(() => {
mockNext.mockResolvedValueOnce(mockResult);
const { isInstance } = HttpRequest;
(isInstance as unknown as jest.Mock).mockReturnValue(true);
+ (isChecksumWithPartNumber as jest.Mock).mockReturnValue(false);
(isStreaming as jest.Mock).mockReturnValue(false);
+ (getChecksumLocationName as jest.Mock).mockImplementation((algorithm) => algorithm);
});
afterEach(() => {
@@ -41,7 +62,7 @@ describe(flexibleChecksumsResponseMiddleware.name, () => {
it("if not an instance of HttpRequest", async () => {
const { isInstance } = HttpRequest;
(isInstance as unknown as jest.Mock).mockReturnValue(false);
- const handler = flexibleChecksumsResponseMiddleware(mockConfig, mockMiddlewareConfig)(mockNext, {});
+ const handler = flexibleChecksumsResponseMiddleware(mockConfig, mockMiddlewareConfig)(mockNext, mockContext);
await handler(mockArgs);
expect(validateChecksumFromResponse).not.toHaveBeenCalled();
});
@@ -50,32 +71,55 @@ describe(flexibleChecksumsResponseMiddleware.name, () => {
it("if requestValidationModeMember is not defined", async () => {
const mockMwConfig = Object.assign({}, mockMiddlewareConfig) as FlexibleChecksumsMiddlewareConfig;
delete mockMwConfig.requestValidationModeMember;
- const handler = flexibleChecksumsResponseMiddleware(mockConfig, mockMwConfig)(mockNext, {});
+ const handler = flexibleChecksumsResponseMiddleware(mockConfig, mockMwConfig)(mockNext, mockContext);
await handler(mockArgs);
expect(validateChecksumFromResponse).not.toHaveBeenCalled();
});
it("if requestValidationModeMember is not enabled in input", async () => {
- const handler = flexibleChecksumsResponseMiddleware(mockConfig, mockMiddlewareConfig)(mockNext, {});
+ const handler = flexibleChecksumsResponseMiddleware(mockConfig, mockMiddlewareConfig)(mockNext, mockContext);
+ await handler({ ...mockArgs, input: {} });
+ expect(validateChecksumFromResponse).not.toHaveBeenCalled();
+ });
+
+ it("if checksum is for S3 whole-object multipart GET", async () => {
+ (isChecksumWithPartNumber as jest.Mock).mockReturnValue(true);
+ const handler = flexibleChecksumsResponseMiddleware(mockConfig, mockMiddlewareConfig)(mockNext, {
+ clientName: "S3Client",
+ commandName: "GetObjectCommand",
+ });
await handler(mockArgs);
+ expect(isChecksumWithPartNumber).toHaveBeenCalledTimes(1);
+ expect(isChecksumWithPartNumber).toHaveBeenCalledWith(mockChecksum);
expect(validateChecksumFromResponse).not.toHaveBeenCalled();
});
});
});
- it("validates checksum from the response header", async () => {
- const mockInput = { [mockRequestValidationModeMember]: "ENABLED" };
- const mockResponseAlgorithms = ["ALGO1", "ALGO2"];
+ describe("validates checksum from response header", () => {
+ it("generic case", async () => {
+ const handler = flexibleChecksumsResponseMiddleware(mockConfig, mockMiddlewareConfig)(mockNext, mockContext);
- const handler = flexibleChecksumsResponseMiddleware(mockConfig, {
- ...mockMiddlewareConfig,
- responseAlgorithms: mockResponseAlgorithms,
- })(mockNext, {});
+ await handler(mockArgs);
+ expect(validateChecksumFromResponse).toHaveBeenCalledWith(mockResult.response, {
+ config: mockConfig,
+ responseAlgorithms: mockResponseAlgorithms,
+ });
+ });
- await handler({ ...mockArgs, input: mockInput });
- expect(validateChecksumFromResponse).toHaveBeenCalledWith(mockResult.response, {
- config: mockConfig,
- responseAlgorithms: mockResponseAlgorithms,
+ it("if checksum is for S3 GET without part number", async () => {
+ (isChecksumWithPartNumber as jest.Mock).mockReturnValue(false);
+ const handler = flexibleChecksumsResponseMiddleware(mockConfig, mockMiddlewareConfig)(mockNext, {
+ clientName: "S3Client",
+ commandName: "GetObjectCommand",
+ });
+ await handler(mockArgs);
+ expect(isChecksumWithPartNumber).toHaveBeenCalledTimes(1);
+ expect(isChecksumWithPartNumber).toHaveBeenCalledWith(mockChecksum);
+ expect(validateChecksumFromResponse).toHaveBeenCalledWith(mockResult.response, {
+ config: mockConfig,
+ responseAlgorithms: mockResponseAlgorithms,
+ });
});
});
});
diff --git a/packages/middleware-flexible-checksums/src/flexibleChecksumsResponseMiddleware.ts b/packages/middleware-flexible-checksums/src/flexibleChecksumsResponseMiddleware.ts
index 1bad69b96e52a..27735dc5b1693 100644
--- a/packages/middleware-flexible-checksums/src/flexibleChecksumsResponseMiddleware.ts
+++ b/packages/middleware-flexible-checksums/src/flexibleChecksumsResponseMiddleware.ts
@@ -4,11 +4,16 @@ import {
DeserializeHandlerArguments,
DeserializeHandlerOutput,
DeserializeMiddleware,
+ HandlerExecutionContext,
MetadataBearer,
RelativeMiddlewareOptions,
} from "@smithy/types";
import { PreviouslyResolved } from "./configuration";
+import { ChecksumAlgorithm } from "./constants";
+import { getChecksumAlgorithmListForResponse } from "./getChecksumAlgorithmListForResponse";
+import { getChecksumLocationName } from "./getChecksumLocationName";
+import { isChecksumWithPartNumber } from "./isChecksumWithPartNumber";
import { isStreaming } from "./isStreaming";
import { createReadStreamOnBuffer } from "./streams/create-read-stream-on-buffer";
import { validateChecksumFromResponse } from "./validateChecksumFromResponse";
@@ -48,7 +53,10 @@ export const flexibleChecksumsResponseMiddleware =
config: PreviouslyResolved,
middlewareConfig: FlexibleChecksumsResponseMiddlewareConfig
): DeserializeMiddleware =>
- (next: DeserializeHandler): DeserializeHandler =>
+ (
+ next: DeserializeHandler,
+ context: HandlerExecutionContext
+ ): DeserializeHandler =>
async (args: DeserializeHandlerArguments): Promise> => {
if (!HttpRequest.isInstance(args.request)) {
return next(args);
@@ -63,6 +71,19 @@ export const flexibleChecksumsResponseMiddleware =
const { requestValidationModeMember, responseAlgorithms } = middlewareConfig;
// @ts-ignore Element implicitly has an 'any' type for input[requestValidationModeMember]
if (requestValidationModeMember && input[requestValidationModeMember] === "ENABLED") {
+ const { clientName, commandName } = context;
+ const isS3WholeObjectMultipartGetResponseChecksum =
+ clientName === "S3Client" &&
+ commandName === "GetObjectCommand" &&
+ getChecksumAlgorithmListForResponse(responseAlgorithms).every((algorithm: ChecksumAlgorithm) => {
+ const responseHeader = getChecksumLocationName(algorithm);
+ const checksumFromResponse = response.headers[responseHeader];
+ return !checksumFromResponse || isChecksumWithPartNumber(checksumFromResponse);
+ });
+ if (isS3WholeObjectMultipartGetResponseChecksum) {
+ return result;
+ }
+
const isStreamingBody = isStreaming(response.body);
if (isStreamingBody) {
diff --git a/packages/middleware-flexible-checksums/src/isChecksumWithPartNumber.spec.ts b/packages/middleware-flexible-checksums/src/isChecksumWithPartNumber.spec.ts
new file mode 100644
index 0000000000000..72e6c7fca5e51
--- /dev/null
+++ b/packages/middleware-flexible-checksums/src/isChecksumWithPartNumber.spec.ts
@@ -0,0 +1,19 @@
+import { isChecksumWithPartNumber } from "./isChecksumWithPartNumber";
+
+describe(isChecksumWithPartNumber.name, () => {
+ it.each([1, 5000, 10000])("returns true for part number: %s", (partNumber) => {
+ expect(isChecksumWithPartNumber(`checksum-${partNumber}`)).toBe(true);
+ });
+
+ it.each([0, 10001])("returns false for part number: %s", (partNumber) => {
+ expect(isChecksumWithPartNumber(`checksum-${partNumber}`)).toBe(false);
+ });
+
+ it("returns false for checksum without part number", () => {
+ expect(isChecksumWithPartNumber("checksum")).toBe(false);
+ });
+
+ it("returns false for checksum with invalid part number", () => {
+ expect(isChecksumWithPartNumber("checksum-invalid")).toBe(false);
+ });
+});
diff --git a/packages/middleware-flexible-checksums/src/isChecksumWithPartNumber.ts b/packages/middleware-flexible-checksums/src/isChecksumWithPartNumber.ts
new file mode 100644
index 0000000000000..5f117b827c9d2
--- /dev/null
+++ b/packages/middleware-flexible-checksums/src/isChecksumWithPartNumber.ts
@@ -0,0 +1,16 @@
+// Check if the checkusm string ends with "-#" where # is a number between 1 and 10000 (inclusive)
+export const isChecksumWithPartNumber = (checksum: string): boolean => {
+ const lastHyphenIndex = checksum.lastIndexOf("-");
+
+ if (lastHyphenIndex !== -1) {
+ const numberPart = checksum.slice(lastHyphenIndex + 1);
+ if (!numberPart.startsWith("0")) {
+ const number = parseInt(numberPart, 10);
+ if (!isNaN(number) && number >= 1 && number <= 10000) {
+ return true;
+ }
+ }
+ }
+
+ return false;
+};
diff --git a/packages/middleware-flexible-checksums/src/selectChecksumAlgorithmFunction.ts b/packages/middleware-flexible-checksums/src/selectChecksumAlgorithmFunction.ts
index e5514ce179560..39e0f192245a0 100644
--- a/packages/middleware-flexible-checksums/src/selectChecksumAlgorithmFunction.ts
+++ b/packages/middleware-flexible-checksums/src/selectChecksumAlgorithmFunction.ts
@@ -1,6 +1,6 @@
import { AwsCrc32 } from "@aws-crypto/crc32";
import { AwsCrc32c } from "@aws-crypto/crc32c";
-import { Checksum, ChecksumConstructor, HashConstructor } from "@smithy/types";
+import { ChecksumConstructor, HashConstructor } from "@smithy/types";
import { PreviouslyResolved } from "./configuration";
import { ChecksumAlgorithm } from "./constants";
diff --git a/packages/middleware-flexible-checksums/src/validateChecksumFromResponse.spec.ts b/packages/middleware-flexible-checksums/src/validateChecksumFromResponse.spec.ts
index 65d8353af7019..1ff7b65378630 100644
--- a/packages/middleware-flexible-checksums/src/validateChecksumFromResponse.spec.ts
+++ b/packages/middleware-flexible-checksums/src/validateChecksumFromResponse.spec.ts
@@ -28,6 +28,12 @@ describe(validateChecksumFromResponse.name, () => {
const mockChecksum = "mockChecksum";
const mockResponseAlgorithms = [ChecksumAlgorithm.CRC32, ChecksumAlgorithm.CRC32C];
+
+ const mockOptions = {
+ config: mockConfig,
+ responseAlgorithms: mockResponseAlgorithms,
+ };
+
const mockChecksumAlgorithmFn = jest.fn();
const getMockResponseWithHeader = (headerKey: string, headerValue: string) => ({
@@ -50,35 +56,34 @@ describe(validateChecksumFromResponse.name, () => {
jest.clearAllMocks();
});
- it("skip validation if response algorithms is empty", async () => {
- const emptyAlgorithmsList = [];
- await validateChecksumFromResponse(mockResponse, { config: mockConfig, responseAlgorithms: emptyAlgorithmsList });
- expect(getChecksumAlgorithmListForResponse).toHaveBeenCalledWith(emptyAlgorithmsList);
- expect(getChecksumLocationName).not.toHaveBeenCalled();
- });
+ describe("skip validation", () => {
+ afterEach(() => {
+ expect(selectChecksumAlgorithmFunction).not.toHaveBeenCalled();
+ expect(getChecksum).not.toHaveBeenCalled();
+ });
- it("skip validation if updated algorithm list from response is empty", async () => {
- (getChecksumAlgorithmListForResponse as jest.Mock).mockImplementation(() => []);
- await validateChecksumFromResponse(mockResponse, {
- config: mockConfig,
- responseAlgorithms: mockResponseAlgorithms,
+ it("if response algorithms is empty", async () => {
+ const emptyAlgorithmsList = [];
+ await validateChecksumFromResponse(mockResponse, { ...mockOptions, responseAlgorithms: emptyAlgorithmsList });
+ expect(getChecksumAlgorithmListForResponse).toHaveBeenCalledWith(emptyAlgorithmsList);
+ expect(getChecksumLocationName).not.toHaveBeenCalled();
});
- expect(getChecksumAlgorithmListForResponse).toHaveBeenCalledWith(mockResponseAlgorithms);
- expect(getChecksumLocationName).not.toHaveBeenCalled();
- });
- it("skip validation if checksum is not present in header", async () => {
- await validateChecksumFromResponse(mockResponse, {
- config: mockConfig,
- responseAlgorithms: mockResponseAlgorithms,
+ it("if updated algorithm list from response is empty", async () => {
+ (getChecksumAlgorithmListForResponse as jest.Mock).mockImplementation(() => []);
+ await validateChecksumFromResponse(mockResponse, mockOptions);
+ expect(getChecksumAlgorithmListForResponse).toHaveBeenCalledWith(mockResponseAlgorithms);
+ expect(getChecksumLocationName).not.toHaveBeenCalled();
+ });
+
+ it("if checksum is not present in header", async () => {
+ await validateChecksumFromResponse(mockResponse, mockOptions);
+ expect(getChecksumAlgorithmListForResponse).toHaveBeenCalledWith(mockResponseAlgorithms);
+ expect(getChecksumLocationName).toHaveBeenCalledTimes(mockResponseAlgorithms.length);
});
- expect(getChecksumAlgorithmListForResponse).toHaveBeenCalledWith(mockResponseAlgorithms);
- expect(getChecksumLocationName).toHaveBeenCalledTimes(mockResponseAlgorithms.length);
- expect(selectChecksumAlgorithmFunction).not.toHaveBeenCalled();
- expect(getChecksum).not.toHaveBeenCalled();
});
- describe("successful validation for accurate checksum value", () => {
+ describe("successful validation", () => {
afterEach(() => {
expect(getChecksumAlgorithmListForResponse).toHaveBeenCalledWith(mockResponseAlgorithms);
expect(selectChecksumAlgorithmFunction).toHaveBeenCalledTimes(1);
@@ -87,20 +92,14 @@ describe(validateChecksumFromResponse.name, () => {
it("when checksum is populated for first algorithm", async () => {
const responseWithChecksum = getMockResponseWithHeader(mockResponseAlgorithms[0], mockChecksum);
- await validateChecksumFromResponse(responseWithChecksum, {
- config: mockConfig,
- responseAlgorithms: mockResponseAlgorithms,
- });
+ await validateChecksumFromResponse(responseWithChecksum, mockOptions);
expect(getChecksumLocationName).toHaveBeenCalledTimes(1);
expect(getChecksumLocationName).toHaveBeenCalledWith(mockResponseAlgorithms[0]);
});
it("when checksum is populated for second algorithm", async () => {
const responseWithChecksum = getMockResponseWithHeader(mockResponseAlgorithms[1], mockChecksum);
- await validateChecksumFromResponse(responseWithChecksum, {
- config: mockConfig,
- responseAlgorithms: mockResponseAlgorithms,
- });
+ await validateChecksumFromResponse(responseWithChecksum, mockOptions);
expect(getChecksumLocationName).toHaveBeenCalledTimes(2);
expect(getChecksumLocationName).toHaveBeenNthCalledWith(1, mockResponseAlgorithms[0]);
expect(getChecksumLocationName).toHaveBeenNthCalledWith(2, mockResponseAlgorithms[1]);
@@ -111,10 +110,7 @@ describe(validateChecksumFromResponse.name, () => {
const incorrectChecksum = "incorrectChecksum";
const responseWithChecksum = getMockResponseWithHeader(mockResponseAlgorithms[0], incorrectChecksum);
try {
- await validateChecksumFromResponse(responseWithChecksum, {
- config: mockConfig,
- responseAlgorithms: mockResponseAlgorithms,
- });
+ await validateChecksumFromResponse(responseWithChecksum, mockOptions);
fail("should throw checksum mismatch error");
} catch (error) {
expect(error.message).toMatch(
From e64bc58399a5809b803827bd0b25b96a1d409bf6 Mon Sep 17 00:00:00 2001
From: George Fu
Date: Wed, 11 Oct 2023 19:04:32 -0400
Subject: [PATCH 12/35] test(lib-dynamodb): add timestamp to table name in e2e
tests (#5347)
* test(lib-dynamodb): add timestamp to table name in e2e tests
* test(lib-dynamodb): additional table name randomness
---
lib/lib-dynamodb/src/test/lib-dynamodb.e2e.spec.ts | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/lib/lib-dynamodb/src/test/lib-dynamodb.e2e.spec.ts b/lib/lib-dynamodb/src/test/lib-dynamodb.e2e.spec.ts
index 75e2a7fd78068..589d0c9acc58c 100644
--- a/lib/lib-dynamodb/src/test/lib-dynamodb.e2e.spec.ts
+++ b/lib/lib-dynamodb/src/test/lib-dynamodb.e2e.spec.ts
@@ -40,14 +40,14 @@ describe(DynamoDBDocument.name, () => {
}
}
- // Random element limited to 0-99 to avoid concurrent build IO.
// Tables will be dropped at the end of the test.
// For faster test development, remove this random suffix and
// don't delete the table in afterAll().
// The table will in that case be re-used.
- const randId = String((Math.random() * 99) | 0);
+ const randId = (Math.random() + 1).toString(36).substring(2, 6);
+ const timestamp = (Date.now() / 1000) | 0;
- const TableName = `js-sdk-dynamodb-test-${randId}`;
+ const TableName = `js-sdk-dynamodb-test-${timestamp}-${randId}`;
const log = {
describe: null as null | DescribeTableCommandOutput,
From 39126a49b1750fabd059a3cb2abd3b89917d6b02 Mon Sep 17 00:00:00 2001
From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com>
Date: Wed, 11 Oct 2023 22:35:32 -0700
Subject: [PATCH 13/35] chore: read service specific endpoints from env/config
(#5350)
---
clients/client-accessanalyzer/package.json | 10 +--
clients/client-account/package.json | 10 +--
clients/client-acm-pca/package.json | 10 +--
clients/client-acm/package.json | 10 +--
.../client-alexa-for-business/package.json | 10 +--
clients/client-amp/package.json | 10 +--
clients/client-amplify/package.json | 10 +--
clients/client-amplifybackend/package.json | 10 +--
clients/client-amplifyuibuilder/package.json | 10 +--
clients/client-api-gateway/package.json | 12 ++--
.../package.json | 10 +--
clients/client-apigatewayv2/package.json | 12 ++--
clients/client-app-mesh/package.json | 10 +--
clients/client-appconfig/package.json | 12 ++--
clients/client-appconfigdata/package.json | 12 ++--
clients/client-appfabric/package.json | 10 +--
clients/client-appflow/package.json | 10 +--
clients/client-appintegrations/package.json | 10 +--
.../package.json | 10 +--
.../package.json | 10 +--
.../client-application-insights/package.json | 10 +--
.../package.json | 10 +--
clients/client-apprunner/package.json | 10 +--
clients/client-appstream/package.json | 10 +--
clients/client-appsync/package.json | 12 ++--
clients/client-arc-zonal-shift/package.json | 10 +--
clients/client-athena/package.json | 10 +--
clients/client-auditmanager/package.json | 10 +--
.../client-auto-scaling-plans/package.json | 10 +--
clients/client-auto-scaling/package.json | 10 +--
clients/client-backup-gateway/package.json | 10 +--
clients/client-backup/package.json | 10 +--
clients/client-backupstorage/package.json | 12 ++--
clients/client-batch/package.json | 10 +--
clients/client-bedrock-runtime/package.json | 12 ++--
clients/client-bedrock/package.json | 10 +--
clients/client-billingconductor/package.json | 10 +--
clients/client-braket/package.json | 10 +--
clients/client-budgets/package.json | 10 +--
.../client-chime-sdk-identity/package.json | 10 +--
.../package.json | 10 +--
.../client-chime-sdk-meetings/package.json | 10 +--
.../client-chime-sdk-messaging/package.json | 10 +--
clients/client-chime-sdk-voice/package.json | 10 +--
clients/client-chime/package.json | 10 +--
clients/client-cleanrooms/package.json | 10 +--
clients/client-cloud9/package.json | 10 +--
clients/client-cloudcontrol/package.json | 10 +--
clients/client-clouddirectory/package.json | 10 +--
clients/client-cloudformation/package.json | 10 +--
clients/client-cloudfront/package.json | 12 ++--
clients/client-cloudhsm-v2/package.json | 10 +--
clients/client-cloudhsm/package.json | 10 +--
.../client-cloudsearch-domain/package.json | 10 +--
clients/client-cloudsearch/package.json | 10 +--
clients/client-cloudtrail-data/package.json | 10 +--
clients/client-cloudtrail/package.json | 10 +--
clients/client-cloudwatch-events/package.json | 10 +--
clients/client-cloudwatch-logs/package.json | 10 +--
clients/client-cloudwatch/package.json | 10 +--
clients/client-codeartifact/package.json | 12 ++--
clients/client-codebuild/package.json | 10 +--
clients/client-codecatalyst/package.json | 10 +--
clients/client-codecommit/package.json | 10 +--
clients/client-codedeploy/package.json | 10 +--
clients/client-codeguru-reviewer/package.json | 10 +--
clients/client-codeguru-security/package.json | 10 +--
clients/client-codeguruprofiler/package.json | 12 ++--
clients/client-codepipeline/package.json | 10 +--
.../client-codestar-connections/package.json | 10 +--
.../package.json | 10 +--
clients/client-codestar/package.json | 10 +--
.../package.json | 10 +--
clients/client-cognito-identity/package.json | 10 +--
clients/client-cognito-sync/package.json | 10 +--
clients/client-comprehend/package.json | 10 +--
clients/client-comprehendmedical/package.json | 10 +--
clients/client-compute-optimizer/package.json | 10 +--
clients/client-config-service/package.json | 10 +--
.../client-connect-contact-lens/package.json | 10 +--
clients/client-connect/package.json | 10 +--
clients/client-connectcampaigns/package.json | 10 +--
clients/client-connectcases/package.json | 10 +--
.../client-connectparticipant/package.json | 10 +--
clients/client-controltower/package.json | 10 +--
.../package.json | 10 +--
clients/client-cost-explorer/package.json | 10 +--
clients/client-customer-profiles/package.json | 10 +--
clients/client-data-pipeline/package.json | 10 +--
.../package.json | 10 +--
clients/client-databrew/package.json | 10 +--
clients/client-dataexchange/package.json | 10 +--
clients/client-datasync/package.json | 10 +--
clients/client-datazone/package.json | 10 +--
clients/client-dax/package.json | 10 +--
clients/client-detective/package.json | 10 +--
clients/client-device-farm/package.json | 10 +--
clients/client-devops-guru/package.json | 10 +--
clients/client-direct-connect/package.json | 10 +--
clients/client-directory-service/package.json | 10 +--
clients/client-dlm/package.json | 10 +--
clients/client-docdb-elastic/package.json | 10 +--
clients/client-docdb/package.json | 10 +--
clients/client-drs/package.json | 10 +--
clients/client-dynamodb-streams/package.json | 10 +--
clients/client-dynamodb/package.json | 10 +--
clients/client-ebs/package.json | 12 ++--
.../client-ec2-instance-connect/package.json | 10 +--
clients/client-ec2/package.json | 10 +--
clients/client-ecr-public/package.json | 10 +--
clients/client-ecr/package.json | 10 +--
clients/client-ecs/package.json | 10 +--
clients/client-efs/package.json | 10 +--
clients/client-eks/package.json | 10 +--
clients/client-elastic-beanstalk/package.json | 10 +--
clients/client-elastic-inference/package.json | 10 +--
.../package.json | 10 +--
.../package.json | 10 +--
.../client-elastic-transcoder/package.json | 10 +--
clients/client-elasticache/package.json | 10 +--
.../client-elasticsearch-service/package.json | 10 +--
clients/client-emr-containers/package.json | 10 +--
clients/client-emr-serverless/package.json | 10 +--
clients/client-emr/package.json | 10 +--
clients/client-entityresolution/package.json | 10 +--
clients/client-eventbridge/package.json | 10 +--
clients/client-evidently/package.json | 10 +--
clients/client-finspace-data/package.json | 10 +--
clients/client-finspace/package.json | 10 +--
clients/client-firehose/package.json | 10 +--
clients/client-fis/package.json | 10 +--
clients/client-fms/package.json | 10 +--
clients/client-forecast/package.json | 10 +--
clients/client-forecastquery/package.json | 10 +--
clients/client-frauddetector/package.json | 10 +--
clients/client-fsx/package.json | 10 +--
clients/client-gamelift/package.json | 10 +--
clients/client-gamesparks/package.json | 10 +--
clients/client-glacier/package.json | 12 ++--
.../client-global-accelerator/package.json | 10 +--
clients/client-glue/package.json | 10 +--
clients/client-grafana/package.json | 10 +--
clients/client-greengrass/package.json | 10 +--
clients/client-greengrassv2/package.json | 10 +--
clients/client-groundstation/package.json | 10 +--
clients/client-guardduty/package.json | 10 +--
clients/client-health/package.json | 10 +--
clients/client-healthlake/package.json | 10 +--
clients/client-honeycode/package.json | 10 +--
clients/client-iam/package.json | 10 +--
clients/client-identitystore/package.json | 10 +--
clients/client-imagebuilder/package.json | 10 +--
clients/client-inspector/package.json | 10 +--
clients/client-inspector2/package.json | 10 +--
clients/client-internetmonitor/package.json | 10 +--
.../package.json | 10 +--
.../client-iot-1click-projects/package.json | 10 +--
clients/client-iot-data-plane/package.json | 12 ++--
clients/client-iot-events-data/package.json | 10 +--
clients/client-iot-events/package.json | 10 +--
.../client-iot-jobs-data-plane/package.json | 10 +--
clients/client-iot-roborunner/package.json | 10 +--
clients/client-iot-wireless/package.json | 12 ++--
clients/client-iot/package.json | 10 +--
clients/client-iotanalytics/package.json | 10 +--
clients/client-iotdeviceadvisor/package.json | 10 +--
clients/client-iotfleethub/package.json | 10 +--
clients/client-iotfleetwise/package.json | 10 +--
.../client-iotsecuretunneling/package.json | 10 +--
clients/client-iotsitewise/package.json | 10 +--
clients/client-iotthingsgraph/package.json | 10 +--
clients/client-iottwinmaker/package.json | 10 +--
clients/client-ivs-realtime/package.json | 10 +--
clients/client-ivs/package.json | 10 +--
clients/client-ivschat/package.json | 10 +--
clients/client-kafka/package.json | 10 +--
clients/client-kafkaconnect/package.json | 10 +--
clients/client-kendra-ranking/package.json | 10 +--
clients/client-kendra/package.json | 10 +--
clients/client-keyspaces/package.json | 10 +--
.../client-kinesis-analytics-v2/package.json | 10 +--
clients/client-kinesis-analytics/package.json | 10 +--
.../package.json | 12 ++--
.../client-kinesis-video-media/package.json | 12 ++--
.../package.json | 10 +--
.../package.json | 10 +--
clients/client-kinesis-video/package.json | 10 +--
clients/client-kinesis/package.json | 10 +--
clients/client-kms/package.json | 10 +--
clients/client-lakeformation/package.json | 12 ++--
clients/client-lambda/package.json | 12 ++--
.../package.json | 10 +--
clients/client-lex-models-v2/package.json | 10 +--
.../client-lex-runtime-service/package.json | 12 ++--
clients/client-lex-runtime-v2/package.json | 12 ++--
.../package.json | 10 +--
.../package.json | 10 +--
clients/client-license-manager/package.json | 10 +--
clients/client-lightsail/package.json | 10 +--
clients/client-location/package.json | 12 ++--
clients/client-lookoutequipment/package.json | 10 +--
clients/client-lookoutmetrics/package.json | 10 +--
clients/client-lookoutvision/package.json | 10 +--
clients/client-m2/package.json | 10 +--
clients/client-machine-learning/package.json | 10 +--
clients/client-macie/package.json | 10 +--
clients/client-macie2/package.json | 10 +--
.../package.json | 10 +--
clients/client-managedblockchain/package.json | 10 +--
.../client-marketplace-catalog/package.json | 10 +--
.../package.json | 10 +--
.../package.json | 10 +--
.../client-marketplace-metering/package.json | 10 +--
clients/client-mediaconnect/package.json | 10 +--
clients/client-mediaconvert/package.json | 10 +--
clients/client-medialive/package.json | 12 ++--
clients/client-mediapackage-vod/package.json | 10 +--
clients/client-mediapackage/package.json | 10 +--
clients/client-mediapackagev2/package.json | 10 +--
clients/client-mediastore-data/package.json | 12 ++--
clients/client-mediastore/package.json | 10 +--
clients/client-mediatailor/package.json | 10 +--
clients/client-medical-imaging/package.json | 12 ++--
clients/client-memorydb/package.json | 10 +--
clients/client-mgn/package.json | 10 +--
.../package.json | 10 +--
clients/client-migration-hub/package.json | 10 +--
.../client-migrationhub-config/package.json | 10 +--
.../package.json | 10 +--
.../client-migrationhubstrategy/package.json | 10 +--
clients/client-mobile/package.json | 10 +--
clients/client-mq/package.json | 10 +--
clients/client-mturk/package.json | 10 +--
clients/client-mwaa/package.json | 10 +--
clients/client-neptune/package.json | 10 +--
clients/client-neptunedata/package.json | 12 ++--
clients/client-network-firewall/package.json | 10 +--
clients/client-networkmanager/package.json | 10 +--
clients/client-nimble/package.json | 10 +--
clients/client-oam/package.json | 10 +--
clients/client-omics/package.json | 12 ++--
clients/client-opensearch/package.json | 10 +--
.../client-opensearchserverless/package.json | 10 +--
clients/client-opsworks/package.json | 10 +--
clients/client-opsworkscm/package.json | 10 +--
clients/client-organizations/package.json | 10 +--
clients/client-osis/package.json | 10 +--
clients/client-outposts/package.json | 10 +--
clients/client-panorama/package.json | 10 +--
.../package.json | 10 +--
.../client-payment-cryptography/package.json | 10 +--
clients/client-pca-connector-ad/package.json | 10 +--
.../client-personalize-events/package.json | 10 +--
.../client-personalize-runtime/package.json | 10 +--
clients/client-personalize/package.json | 10 +--
clients/client-pi/package.json | 10 +--
clients/client-pinpoint-email/package.json | 10 +--
.../client-pinpoint-sms-voice-v2/package.json | 10 +--
.../client-pinpoint-sms-voice/package.json | 10 +--
clients/client-pinpoint/package.json | 10 +--
clients/client-pipes/package.json | 10 +--
clients/client-polly/package.json | 12 ++--
clients/client-pricing/package.json | 10 +--
clients/client-privatenetworks/package.json | 10 +--
clients/client-proton/package.json | 10 +--
clients/client-qldb-session/package.json | 10 +--
clients/client-qldb/package.json | 10 +--
clients/client-quicksight/package.json | 10 +--
clients/client-ram/package.json | 10 +--
clients/client-rbin/package.json | 10 +--
clients/client-rds-data/package.json | 10 +--
clients/client-rds/package.json | 10 +--
clients/client-redshift-data/package.json | 10 +--
.../client-redshift-serverless/package.json | 10 +--
clients/client-redshift/package.json | 10 +--
clients/client-rekognition/package.json | 10 +--
.../client-rekognitionstreaming/package.json | 10 +--
clients/client-resiliencehub/package.json | 10 +--
.../client-resource-explorer-2/package.json | 10 +--
.../package.json | 10 +--
clients/client-resource-groups/package.json | 10 +--
clients/client-robomaker/package.json | 10 +--
clients/client-rolesanywhere/package.json | 10 +--
clients/client-route-53-domains/package.json | 10 +--
clients/client-route-53/package.json | 10 +--
.../package.json | 10 +--
.../package.json | 10 +--
.../package.json | 10 +--
clients/client-route53resolver/package.json | 10 +--
clients/client-rum/package.json | 10 +--
clients/client-s3-control/package.json | 10 +--
clients/client-s3/package.json | 12 ++--
clients/client-s3outposts/package.json | 10 +--
.../client-sagemaker-a2i-runtime/package.json | 10 +--
clients/client-sagemaker-edge/package.json | 10 +--
.../package.json | 10 +--
.../client-sagemaker-geospatial/package.json | 12 ++--
clients/client-sagemaker-metrics/package.json | 10 +--
clients/client-sagemaker-runtime/package.json | 12 ++--
clients/client-sagemaker/package.json | 10 +--
clients/client-savingsplans/package.json | 10 +--
clients/client-scheduler/package.json | 10 +--
clients/client-schemas/package.json | 12 ++--
clients/client-secrets-manager/package.json | 10 +--
clients/client-securityhub/package.json | 10 +--
clients/client-securitylake/package.json | 10 +--
.../package.json | 10 +--
.../package.json | 10 +--
clients/client-service-catalog/package.json | 10 +--
clients/client-service-quotas/package.json | 10 +--
clients/client-servicediscovery/package.json | 10 +--
clients/client-ses/package.json | 10 +--
clients/client-sesv2/package.json | 10 +--
clients/client-sfn/package.json | 10 +--
clients/client-shield/package.json | 10 +--
clients/client-signer/package.json | 10 +--
clients/client-simspaceweaver/package.json | 10 +--
clients/client-sms/package.json | 10 +--
.../package.json | 10 +--
clients/client-snowball/package.json | 10 +--
clients/client-sns/package.json | 10 +--
clients/client-sqs/package.json | 10 +--
clients/client-ssm-contacts/package.json | 10 +--
clients/client-ssm-incidents/package.json | 10 +--
clients/client-ssm-sap/package.json | 10 +--
clients/client-ssm/package.json | 10 +--
clients/client-sso-admin/package.json | 10 +--
clients/client-sso-oidc/package.json | 10 +--
clients/client-sso/package.json | 10 +--
clients/client-storage-gateway/package.json | 10 +--
clients/client-sts/package.json | 10 +--
clients/client-support-app/package.json | 10 +--
clients/client-support/package.json | 10 +--
clients/client-swf/package.json | 10 +--
clients/client-synthetics/package.json | 10 +--
clients/client-textract/package.json | 10 +--
clients/client-timestream-query/package.json | 10 +--
clients/client-timestream-write/package.json | 10 +--
clients/client-tnb/package.json | 12 ++--
.../client-transcribe-streaming/package.json | 10 +--
clients/client-transcribe/package.json | 10 +--
clients/client-transfer/package.json | 10 +--
clients/client-translate/package.json | 10 +--
.../client-verifiedpermissions/package.json | 10 +--
clients/client-voice-id/package.json | 10 +--
clients/client-vpc-lattice/package.json | 10 +--
clients/client-waf-regional/package.json | 10 +--
clients/client-waf/package.json | 10 +--
clients/client-wafv2/package.json | 10 +--
clients/client-wellarchitected/package.json | 10 +--
clients/client-wisdom/package.json | 10 +--
clients/client-workdocs/package.json | 10 +--
clients/client-worklink/package.json | 10 +--
clients/client-workmail/package.json | 10 +--
.../client-workmailmessageflow/package.json | 12 ++--
clients/client-workspaces-web/package.json | 10 +--
clients/client-workspaces/package.json | 10 +--
clients/client-xray/package.json | 10 +--
lib/lib-dynamodb/package.json | 2 +-
lib/lib-storage/package.json | 4 +-
.../credential-provider-http/package.json | 2 +-
packages/middleware-sdk-ec2/package.json | 4 +-
packages/middleware-sdk-rds/package.json | 2 +-
packages/middleware-sdk-s3/package.json | 2 +-
packages/middleware-websocket/package.json | 2 +-
packages/s3-presigned-post/package.json | 2 +-
packages/s3-request-presigner/package.json | 4 +-
packages/smithy-client/package.json | 2 +-
packages/token-providers/package.json | 10 +--
packages/util-create-request/package.json | 2 +-
private/aws-client-api-test/package.json | 6 +-
private/aws-echo-service/package.json | 8 +--
private/aws-middleware-test/package.json | 2 +-
private/aws-protocoltests-ec2/package.json | 8 +--
.../aws-protocoltests-json-10/package.json | 8 +--
private/aws-protocoltests-json/package.json | 8 +--
private/aws-protocoltests-query/package.json | 8 +--
.../aws-protocoltests-restjson/package.json | 10 +--
.../aws-protocoltests-restxml/package.json | 10 +--
private/aws-restjson-server/package.json | 8 +--
.../package.json | 8 +--
private/weather/package.json | 8 +--
scripts/generate-clients/config.js | 2 +-
yarn.lock | 67 ++++++++++---------
384 files changed, 1923 insertions(+), 1922 deletions(-)
diff --git a/clients/client-accessanalyzer/package.json b/clients/client-accessanalyzer/package.json
index 10654fa85c0ec..1b2aa16080fb4 100644
--- a/clients/client-accessanalyzer/package.json
+++ b/clients/client-accessanalyzer/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-account/package.json b/clients/client-account/package.json
index 4a7b5e1994137..35c9d1df5fa73 100644
--- a/clients/client-account/package.json
+++ b/clients/client-account/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-acm-pca/package.json b/clients/client-acm-pca/package.json
index 1fd5605962ff1..6aaf6893525ba 100644
--- a/clients/client-acm-pca/package.json
+++ b/clients/client-acm-pca/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-acm/package.json b/clients/client-acm/package.json
index a149557674259..cf7c2d35f0daa 100644
--- a/clients/client-acm/package.json
+++ b/clients/client-acm/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-alexa-for-business/package.json b/clients/client-alexa-for-business/package.json
index 4b4a40535fd30..5e3ac2451c9ad 100644
--- a/clients/client-alexa-for-business/package.json
+++ b/clients/client-alexa-for-business/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-amp/package.json b/clients/client-amp/package.json
index 285fccff042d8..bf2b0d0253512 100644
--- a/clients/client-amp/package.json
+++ b/clients/client-amp/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-amplify/package.json b/clients/client-amplify/package.json
index d73d7239e4161..7eb23b6c1672e 100644
--- a/clients/client-amplify/package.json
+++ b/clients/client-amplify/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-amplifybackend/package.json b/clients/client-amplifybackend/package.json
index 21979e925f0af..ff34ee5004d7d 100644
--- a/clients/client-amplifybackend/package.json
+++ b/clients/client-amplifybackend/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-amplifyuibuilder/package.json b/clients/client-amplifyuibuilder/package.json
index f3f98b1b95822..29db62ed879db 100644
--- a/clients/client-amplifyuibuilder/package.json
+++ b/clients/client-amplifyuibuilder/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-api-gateway/package.json b/clients/client-api-gateway/package.json
index a28bf35a8bb6c..43fe5c5fbf39c 100644
--- a/clients/client-api-gateway/package.json
+++ b/clients/client-api-gateway/package.json
@@ -35,27 +35,27 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
- "@smithy/util-stream": "^2.0.15",
+ "@smithy/util-stream": "^2.0.16",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-apigatewaymanagementapi/package.json b/clients/client-apigatewaymanagementapi/package.json
index 1b36f83bea4b8..f2870097308b6 100644
--- a/clients/client-apigatewaymanagementapi/package.json
+++ b/clients/client-apigatewaymanagementapi/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-apigatewayv2/package.json b/clients/client-apigatewayv2/package.json
index 07b3f51b2b390..243ad9541e941 100644
--- a/clients/client-apigatewayv2/package.json
+++ b/clients/client-apigatewayv2/package.json
@@ -34,27 +34,27 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
- "@smithy/util-stream": "^2.0.15",
+ "@smithy/util-stream": "^2.0.16",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-app-mesh/package.json b/clients/client-app-mesh/package.json
index 25f1a7aebde1d..4175b42aa4d02 100644
--- a/clients/client-app-mesh/package.json
+++ b/clients/client-app-mesh/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-appconfig/package.json b/clients/client-appconfig/package.json
index a708bb43bfd53..6ba37a800800d 100644
--- a/clients/client-appconfig/package.json
+++ b/clients/client-appconfig/package.json
@@ -34,27 +34,27 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
- "@smithy/util-stream": "^2.0.15",
+ "@smithy/util-stream": "^2.0.16",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-appconfigdata/package.json b/clients/client-appconfigdata/package.json
index 5a1125aa2254e..969cd53e9c671 100644
--- a/clients/client-appconfigdata/package.json
+++ b/clients/client-appconfigdata/package.json
@@ -34,27 +34,27 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
- "@smithy/util-stream": "^2.0.15",
+ "@smithy/util-stream": "^2.0.16",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-appfabric/package.json b/clients/client-appfabric/package.json
index 77f38bf4402da..1a60c4810b1ef 100644
--- a/clients/client-appfabric/package.json
+++ b/clients/client-appfabric/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-appflow/package.json b/clients/client-appflow/package.json
index 50a138beacdbc..5dc8281c3144b 100644
--- a/clients/client-appflow/package.json
+++ b/clients/client-appflow/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-appintegrations/package.json b/clients/client-appintegrations/package.json
index 009475870bfc9..2cc516b5a5007 100644
--- a/clients/client-appintegrations/package.json
+++ b/clients/client-appintegrations/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-application-auto-scaling/package.json b/clients/client-application-auto-scaling/package.json
index d8da8146a4912..a38ba8e3c2ddd 100644
--- a/clients/client-application-auto-scaling/package.json
+++ b/clients/client-application-auto-scaling/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-application-discovery-service/package.json b/clients/client-application-discovery-service/package.json
index 2f000a8ab366c..dbab0b00b27fb 100644
--- a/clients/client-application-discovery-service/package.json
+++ b/clients/client-application-discovery-service/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-application-insights/package.json b/clients/client-application-insights/package.json
index b3b1453e31460..bc6061990be4f 100644
--- a/clients/client-application-insights/package.json
+++ b/clients/client-application-insights/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-applicationcostprofiler/package.json b/clients/client-applicationcostprofiler/package.json
index e6f6335a06978..d4c4119cf37f9 100644
--- a/clients/client-applicationcostprofiler/package.json
+++ b/clients/client-applicationcostprofiler/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-apprunner/package.json b/clients/client-apprunner/package.json
index aabd57121b271..d166c2791b07e 100644
--- a/clients/client-apprunner/package.json
+++ b/clients/client-apprunner/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-appstream/package.json b/clients/client-appstream/package.json
index d19b9d3153005..1d74f14736f97 100644
--- a/clients/client-appstream/package.json
+++ b/clients/client-appstream/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-appsync/package.json b/clients/client-appsync/package.json
index 3a9bf72570066..8764031c59bc1 100644
--- a/clients/client-appsync/package.json
+++ b/clients/client-appsync/package.json
@@ -34,27 +34,27 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
- "@smithy/util-stream": "^2.0.15",
+ "@smithy/util-stream": "^2.0.16",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-arc-zonal-shift/package.json b/clients/client-arc-zonal-shift/package.json
index 84a62b95577e7..b2cd47a8ea8db 100644
--- a/clients/client-arc-zonal-shift/package.json
+++ b/clients/client-arc-zonal-shift/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-athena/package.json b/clients/client-athena/package.json
index d62f2282d4301..36d426bf8ebb9 100644
--- a/clients/client-athena/package.json
+++ b/clients/client-athena/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-auditmanager/package.json b/clients/client-auditmanager/package.json
index a12d8cf316b4c..cfb1c91b3d372 100644
--- a/clients/client-auditmanager/package.json
+++ b/clients/client-auditmanager/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-auto-scaling-plans/package.json b/clients/client-auto-scaling-plans/package.json
index 63343600f86f3..0e06703ab3c41 100644
--- a/clients/client-auto-scaling-plans/package.json
+++ b/clients/client-auto-scaling-plans/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-auto-scaling/package.json b/clients/client-auto-scaling/package.json
index 4aa1a2bc7afc1..8c5453e6e6410 100644
--- a/clients/client-auto-scaling/package.json
+++ b/clients/client-auto-scaling/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-backup-gateway/package.json b/clients/client-backup-gateway/package.json
index c691557e0da20..057ff52d685ad 100644
--- a/clients/client-backup-gateway/package.json
+++ b/clients/client-backup-gateway/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-backup/package.json b/clients/client-backup/package.json
index 9743bee4d5809..b3132f788c99d 100644
--- a/clients/client-backup/package.json
+++ b/clients/client-backup/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-backupstorage/package.json b/clients/client-backupstorage/package.json
index db7ecd2b6c9f0..1aa45b66a7105 100644
--- a/clients/client-backupstorage/package.json
+++ b/clients/client-backupstorage/package.json
@@ -34,27 +34,27 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
- "@smithy/util-stream": "^2.0.15",
+ "@smithy/util-stream": "^2.0.16",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-batch/package.json b/clients/client-batch/package.json
index c1e6fefdbc5a8..5a672b939f4ae 100644
--- a/clients/client-batch/package.json
+++ b/clients/client-batch/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-bedrock-runtime/package.json b/clients/client-bedrock-runtime/package.json
index f8c138f2ee67e..bde8ca3cf803d 100644
--- a/clients/client-bedrock-runtime/package.json
+++ b/clients/client-bedrock-runtime/package.json
@@ -37,27 +37,27 @@
"@smithy/eventstream-serde-browser": "^2.0.11",
"@smithy/eventstream-serde-config-resolver": "^2.0.11",
"@smithy/eventstream-serde-node": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
- "@smithy/util-stream": "^2.0.15",
+ "@smithy/util-stream": "^2.0.16",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-bedrock/package.json b/clients/client-bedrock/package.json
index e701740f1ab83..fe988963ffd43 100644
--- a/clients/client-bedrock/package.json
+++ b/clients/client-bedrock/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-billingconductor/package.json b/clients/client-billingconductor/package.json
index a76a62df56e5e..98338f57f41ee 100644
--- a/clients/client-billingconductor/package.json
+++ b/clients/client-billingconductor/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-braket/package.json b/clients/client-braket/package.json
index 6a05003eafaac..d0c8e9676476b 100644
--- a/clients/client-braket/package.json
+++ b/clients/client-braket/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-budgets/package.json b/clients/client-budgets/package.json
index 9255a521e0f7f..ff40e581f7a28 100644
--- a/clients/client-budgets/package.json
+++ b/clients/client-budgets/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-chime-sdk-identity/package.json b/clients/client-chime-sdk-identity/package.json
index 3510a3a12a2af..381b075b6fa3c 100644
--- a/clients/client-chime-sdk-identity/package.json
+++ b/clients/client-chime-sdk-identity/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-chime-sdk-media-pipelines/package.json b/clients/client-chime-sdk-media-pipelines/package.json
index c1fc6cde21bd4..2cde99452f104 100644
--- a/clients/client-chime-sdk-media-pipelines/package.json
+++ b/clients/client-chime-sdk-media-pipelines/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-chime-sdk-meetings/package.json b/clients/client-chime-sdk-meetings/package.json
index 9ae89bbf4f7aa..e2df07cf9bab9 100644
--- a/clients/client-chime-sdk-meetings/package.json
+++ b/clients/client-chime-sdk-meetings/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-chime-sdk-messaging/package.json b/clients/client-chime-sdk-messaging/package.json
index 7a474cc58e6b7..20f78fa498960 100644
--- a/clients/client-chime-sdk-messaging/package.json
+++ b/clients/client-chime-sdk-messaging/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-chime-sdk-voice/package.json b/clients/client-chime-sdk-voice/package.json
index c27a46eb7906a..b6d2acfac9984 100644
--- a/clients/client-chime-sdk-voice/package.json
+++ b/clients/client-chime-sdk-voice/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-chime/package.json b/clients/client-chime/package.json
index 2be2cc21694e9..3984235fd8b4e 100644
--- a/clients/client-chime/package.json
+++ b/clients/client-chime/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-cleanrooms/package.json b/clients/client-cleanrooms/package.json
index 24d73bb3eb9a7..8061ce5e1a0ef 100644
--- a/clients/client-cleanrooms/package.json
+++ b/clients/client-cleanrooms/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-cloud9/package.json b/clients/client-cloud9/package.json
index 176ce03be542c..3a39a61f0cc85 100644
--- a/clients/client-cloud9/package.json
+++ b/clients/client-cloud9/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-cloudcontrol/package.json b/clients/client-cloudcontrol/package.json
index eda4c3993466e..f121d61cb9d3e 100644
--- a/clients/client-cloudcontrol/package.json
+++ b/clients/client-cloudcontrol/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-clouddirectory/package.json b/clients/client-clouddirectory/package.json
index eaf2b3cccacc8..d12ce74cd0315 100644
--- a/clients/client-clouddirectory/package.json
+++ b/clients/client-clouddirectory/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-cloudformation/package.json b/clients/client-cloudformation/package.json
index 031353e3129df..0863f91597582 100644
--- a/clients/client-cloudformation/package.json
+++ b/clients/client-cloudformation/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-cloudfront/package.json b/clients/client-cloudfront/package.json
index 4b10af82d9778..c17bee16f02d7 100644
--- a/clients/client-cloudfront/package.json
+++ b/clients/client-cloudfront/package.json
@@ -35,27 +35,27 @@
"@aws-sdk/util-user-agent-node": "*",
"@aws-sdk/xml-builder": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
- "@smithy/util-stream": "^2.0.15",
+ "@smithy/util-stream": "^2.0.16",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
"fast-xml-parser": "4.2.5",
diff --git a/clients/client-cloudhsm-v2/package.json b/clients/client-cloudhsm-v2/package.json
index c70821787d8df..93fad385fc018 100644
--- a/clients/client-cloudhsm-v2/package.json
+++ b/clients/client-cloudhsm-v2/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-cloudhsm/package.json b/clients/client-cloudhsm/package.json
index 1c128c5360f43..1180812383552 100644
--- a/clients/client-cloudhsm/package.json
+++ b/clients/client-cloudhsm/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-cloudsearch-domain/package.json b/clients/client-cloudsearch-domain/package.json
index 0adb7acae6600..63c85fa97cac3 100644
--- a/clients/client-cloudsearch-domain/package.json
+++ b/clients/client-cloudsearch-domain/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-cloudsearch/package.json b/clients/client-cloudsearch/package.json
index 31b4d35fba577..6e3aff1ce10ca 100644
--- a/clients/client-cloudsearch/package.json
+++ b/clients/client-cloudsearch/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"fast-xml-parser": "4.2.5",
diff --git a/clients/client-cloudtrail-data/package.json b/clients/client-cloudtrail-data/package.json
index 4530284b993ba..ad00764d68b44 100644
--- a/clients/client-cloudtrail-data/package.json
+++ b/clients/client-cloudtrail-data/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-cloudtrail/package.json b/clients/client-cloudtrail/package.json
index 6300cf924a422..9d0bcdca97d3f 100644
--- a/clients/client-cloudtrail/package.json
+++ b/clients/client-cloudtrail/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-cloudwatch-events/package.json b/clients/client-cloudwatch-events/package.json
index eb5d6d9b8ad15..79f46e77ce1c2 100644
--- a/clients/client-cloudwatch-events/package.json
+++ b/clients/client-cloudwatch-events/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-cloudwatch-logs/package.json b/clients/client-cloudwatch-logs/package.json
index 9bbf9794817ba..66cde5c27211c 100644
--- a/clients/client-cloudwatch-logs/package.json
+++ b/clients/client-cloudwatch-logs/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-cloudwatch/package.json b/clients/client-cloudwatch/package.json
index de3b98e48ac19..ce62978bb0abb 100644
--- a/clients/client-cloudwatch/package.json
+++ b/clients/client-cloudwatch/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-codeartifact/package.json b/clients/client-codeartifact/package.json
index 5bbb974be6059..a308e97d878f7 100644
--- a/clients/client-codeartifact/package.json
+++ b/clients/client-codeartifact/package.json
@@ -34,27 +34,27 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
- "@smithy/util-stream": "^2.0.15",
+ "@smithy/util-stream": "^2.0.16",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-codebuild/package.json b/clients/client-codebuild/package.json
index fa642d000c7c8..fa94ec3b8e766 100644
--- a/clients/client-codebuild/package.json
+++ b/clients/client-codebuild/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-codecatalyst/package.json b/clients/client-codecatalyst/package.json
index da6cf27b84398..48c6ebf471532 100644
--- a/clients/client-codecatalyst/package.json
+++ b/clients/client-codecatalyst/package.json
@@ -32,25 +32,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-codecommit/package.json b/clients/client-codecommit/package.json
index 32e183b7ad5a6..7b47c62c10c77 100644
--- a/clients/client-codecommit/package.json
+++ b/clients/client-codecommit/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-codedeploy/package.json b/clients/client-codedeploy/package.json
index 788670ba75dad..673b901f0675e 100644
--- a/clients/client-codedeploy/package.json
+++ b/clients/client-codedeploy/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-codeguru-reviewer/package.json b/clients/client-codeguru-reviewer/package.json
index d1eee90f2d198..2168198a0c63a 100644
--- a/clients/client-codeguru-reviewer/package.json
+++ b/clients/client-codeguru-reviewer/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-codeguru-security/package.json b/clients/client-codeguru-security/package.json
index 735510c8aa58e..c6eda186c4f7f 100644
--- a/clients/client-codeguru-security/package.json
+++ b/clients/client-codeguru-security/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-codeguruprofiler/package.json b/clients/client-codeguruprofiler/package.json
index f803a360a5165..a75321241d2cf 100644
--- a/clients/client-codeguruprofiler/package.json
+++ b/clients/client-codeguruprofiler/package.json
@@ -34,27 +34,27 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
- "@smithy/util-stream": "^2.0.15",
+ "@smithy/util-stream": "^2.0.16",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-codepipeline/package.json b/clients/client-codepipeline/package.json
index 4695f7e0821cd..af65d3f34477b 100644
--- a/clients/client-codepipeline/package.json
+++ b/clients/client-codepipeline/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-codestar-connections/package.json b/clients/client-codestar-connections/package.json
index 9fe2bf2ad069a..c26af9f32cd65 100644
--- a/clients/client-codestar-connections/package.json
+++ b/clients/client-codestar-connections/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-codestar-notifications/package.json b/clients/client-codestar-notifications/package.json
index 75a79b672af5e..a31574e933dc6 100644
--- a/clients/client-codestar-notifications/package.json
+++ b/clients/client-codestar-notifications/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-codestar/package.json b/clients/client-codestar/package.json
index 7c1fd701aaac8..a9c26d2e2a0f3 100644
--- a/clients/client-codestar/package.json
+++ b/clients/client-codestar/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-cognito-identity-provider/package.json b/clients/client-cognito-identity-provider/package.json
index a0174b1d5e2c1..aa5ca02c2f158 100644
--- a/clients/client-cognito-identity-provider/package.json
+++ b/clients/client-cognito-identity-provider/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-cognito-identity/package.json b/clients/client-cognito-identity/package.json
index 00ae2b0bc01a6..44006e05faa5e 100644
--- a/clients/client-cognito-identity/package.json
+++ b/clients/client-cognito-identity/package.json
@@ -35,25 +35,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-cognito-sync/package.json b/clients/client-cognito-sync/package.json
index 42a46dffea4d6..caba2fb2482ab 100644
--- a/clients/client-cognito-sync/package.json
+++ b/clients/client-cognito-sync/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-comprehend/package.json b/clients/client-comprehend/package.json
index 61146eb6ff204..4415d2aad9f43 100644
--- a/clients/client-comprehend/package.json
+++ b/clients/client-comprehend/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-comprehendmedical/package.json b/clients/client-comprehendmedical/package.json
index 3a7956b4d6896..e375c860188e8 100644
--- a/clients/client-comprehendmedical/package.json
+++ b/clients/client-comprehendmedical/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-compute-optimizer/package.json b/clients/client-compute-optimizer/package.json
index 0dd5a79fbce89..4ed5eddf243d0 100644
--- a/clients/client-compute-optimizer/package.json
+++ b/clients/client-compute-optimizer/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-config-service/package.json b/clients/client-config-service/package.json
index fad492d99b624..dee7d716140b6 100644
--- a/clients/client-config-service/package.json
+++ b/clients/client-config-service/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-connect-contact-lens/package.json b/clients/client-connect-contact-lens/package.json
index 2865e00c9eade..02dc062bd3704 100644
--- a/clients/client-connect-contact-lens/package.json
+++ b/clients/client-connect-contact-lens/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-connect/package.json b/clients/client-connect/package.json
index 6cc592f6f321a..7a34d2d3ab807 100644
--- a/clients/client-connect/package.json
+++ b/clients/client-connect/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-connectcampaigns/package.json b/clients/client-connectcampaigns/package.json
index 5ec66a7f87bc4..f671775163cc4 100644
--- a/clients/client-connectcampaigns/package.json
+++ b/clients/client-connectcampaigns/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-connectcases/package.json b/clients/client-connectcases/package.json
index 39e973a7ca66e..0d92f6cf5c99b 100644
--- a/clients/client-connectcases/package.json
+++ b/clients/client-connectcases/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-connectparticipant/package.json b/clients/client-connectparticipant/package.json
index f9f5f34fdcac8..19663f57fcb6f 100644
--- a/clients/client-connectparticipant/package.json
+++ b/clients/client-connectparticipant/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-controltower/package.json b/clients/client-controltower/package.json
index 01639b3cb9f7f..dfca13ec6a637 100644
--- a/clients/client-controltower/package.json
+++ b/clients/client-controltower/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-cost-and-usage-report-service/package.json b/clients/client-cost-and-usage-report-service/package.json
index 87c4f93124bca..57f7658d08104 100644
--- a/clients/client-cost-and-usage-report-service/package.json
+++ b/clients/client-cost-and-usage-report-service/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-cost-explorer/package.json b/clients/client-cost-explorer/package.json
index 2e15ca44c7e23..5f8554048f03b 100644
--- a/clients/client-cost-explorer/package.json
+++ b/clients/client-cost-explorer/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-customer-profiles/package.json b/clients/client-customer-profiles/package.json
index 39e9e668a0738..049b34f4e8c01 100644
--- a/clients/client-customer-profiles/package.json
+++ b/clients/client-customer-profiles/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-data-pipeline/package.json b/clients/client-data-pipeline/package.json
index fe8eb9dc781b2..1f999e859fb7c 100644
--- a/clients/client-data-pipeline/package.json
+++ b/clients/client-data-pipeline/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-database-migration-service/package.json b/clients/client-database-migration-service/package.json
index 11182d2112208..5fb298ee114c9 100644
--- a/clients/client-database-migration-service/package.json
+++ b/clients/client-database-migration-service/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-databrew/package.json b/clients/client-databrew/package.json
index 414ed9ccbe895..c1c608ca66da2 100644
--- a/clients/client-databrew/package.json
+++ b/clients/client-databrew/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-dataexchange/package.json b/clients/client-dataexchange/package.json
index 99797f8996535..80b1901b5aab5 100644
--- a/clients/client-dataexchange/package.json
+++ b/clients/client-dataexchange/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-datasync/package.json b/clients/client-datasync/package.json
index e84c5a13b5918..8722c573ce3db 100644
--- a/clients/client-datasync/package.json
+++ b/clients/client-datasync/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-datazone/package.json b/clients/client-datazone/package.json
index a8eb6d2cc0ea4..2ec0ac7f18c4c 100644
--- a/clients/client-datazone/package.json
+++ b/clients/client-datazone/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-dax/package.json b/clients/client-dax/package.json
index c6676069b1bbf..d022be7bff9ee 100644
--- a/clients/client-dax/package.json
+++ b/clients/client-dax/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-detective/package.json b/clients/client-detective/package.json
index 5a5f4ec7daf10..45e14e8c6f20c 100644
--- a/clients/client-detective/package.json
+++ b/clients/client-detective/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-device-farm/package.json b/clients/client-device-farm/package.json
index a1dd0b505bc17..bf2f96be02233 100644
--- a/clients/client-device-farm/package.json
+++ b/clients/client-device-farm/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-devops-guru/package.json b/clients/client-devops-guru/package.json
index 14b168fd23672..589c4ae4431d1 100644
--- a/clients/client-devops-guru/package.json
+++ b/clients/client-devops-guru/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-direct-connect/package.json b/clients/client-direct-connect/package.json
index 6b31dd0a36e8c..2809a67040ac0 100644
--- a/clients/client-direct-connect/package.json
+++ b/clients/client-direct-connect/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-directory-service/package.json b/clients/client-directory-service/package.json
index a61afac4fd03a..7130c5d2ce2a5 100644
--- a/clients/client-directory-service/package.json
+++ b/clients/client-directory-service/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-dlm/package.json b/clients/client-dlm/package.json
index 3204b24f283f3..7348db30b16d9 100644
--- a/clients/client-dlm/package.json
+++ b/clients/client-dlm/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-docdb-elastic/package.json b/clients/client-docdb-elastic/package.json
index ca6883c035e27..e8624669c421e 100644
--- a/clients/client-docdb-elastic/package.json
+++ b/clients/client-docdb-elastic/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-docdb/package.json b/clients/client-docdb/package.json
index 92c1698826fe5..2d7871bc11da1 100644
--- a/clients/client-docdb/package.json
+++ b/clients/client-docdb/package.json
@@ -35,25 +35,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-drs/package.json b/clients/client-drs/package.json
index dfcf389d766db..40f95644c88e4 100644
--- a/clients/client-drs/package.json
+++ b/clients/client-drs/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-dynamodb-streams/package.json b/clients/client-dynamodb-streams/package.json
index 004e6cd74162b..8f1de958f65e9 100644
--- a/clients/client-dynamodb-streams/package.json
+++ b/clients/client-dynamodb-streams/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-dynamodb/package.json b/clients/client-dynamodb/package.json
index 45e997d840b84..c4e96f57d837d 100644
--- a/clients/client-dynamodb/package.json
+++ b/clients/client-dynamodb/package.json
@@ -35,25 +35,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-ebs/package.json b/clients/client-ebs/package.json
index e3f54e8ff9d28..8b13da5010013 100644
--- a/clients/client-ebs/package.json
+++ b/clients/client-ebs/package.json
@@ -34,27 +34,27 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
- "@smithy/util-stream": "^2.0.15",
+ "@smithy/util-stream": "^2.0.16",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-ec2-instance-connect/package.json b/clients/client-ec2-instance-connect/package.json
index 3693d69b97edd..f9e6f317d27e2 100644
--- a/clients/client-ec2-instance-connect/package.json
+++ b/clients/client-ec2-instance-connect/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-ec2/package.json b/clients/client-ec2/package.json
index cbfd95e33b56e..202d7f077ad2b 100644
--- a/clients/client-ec2/package.json
+++ b/clients/client-ec2/package.json
@@ -35,25 +35,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-ecr-public/package.json b/clients/client-ecr-public/package.json
index 9bdd6d5b295a0..7a91bb17b6603 100644
--- a/clients/client-ecr-public/package.json
+++ b/clients/client-ecr-public/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-ecr/package.json b/clients/client-ecr/package.json
index b41a2b8d90685..5656c8adddb70 100644
--- a/clients/client-ecr/package.json
+++ b/clients/client-ecr/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-ecs/package.json b/clients/client-ecs/package.json
index 5a10bfd26bf98..2a5967dca5744 100644
--- a/clients/client-ecs/package.json
+++ b/clients/client-ecs/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-efs/package.json b/clients/client-efs/package.json
index 9c5a0179f1679..77c4f389b02e6 100644
--- a/clients/client-efs/package.json
+++ b/clients/client-efs/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-eks/package.json b/clients/client-eks/package.json
index d44190d0bbf4d..699a2a4c101c2 100644
--- a/clients/client-eks/package.json
+++ b/clients/client-eks/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-elastic-beanstalk/package.json b/clients/client-elastic-beanstalk/package.json
index 46f90c664b976..a7b06847ded2a 100644
--- a/clients/client-elastic-beanstalk/package.json
+++ b/clients/client-elastic-beanstalk/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-elastic-inference/package.json b/clients/client-elastic-inference/package.json
index 9c7fd35cabeec..c3f0cb053103a 100644
--- a/clients/client-elastic-inference/package.json
+++ b/clients/client-elastic-inference/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-elastic-load-balancing-v2/package.json b/clients/client-elastic-load-balancing-v2/package.json
index b4df33a7620f9..f4b3b2a24cde6 100644
--- a/clients/client-elastic-load-balancing-v2/package.json
+++ b/clients/client-elastic-load-balancing-v2/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-elastic-load-balancing/package.json b/clients/client-elastic-load-balancing/package.json
index 0729106307232..ab1812fc90fec 100644
--- a/clients/client-elastic-load-balancing/package.json
+++ b/clients/client-elastic-load-balancing/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-elastic-transcoder/package.json b/clients/client-elastic-transcoder/package.json
index 8cb8e26cc9c9d..a73402232bc38 100644
--- a/clients/client-elastic-transcoder/package.json
+++ b/clients/client-elastic-transcoder/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-elasticache/package.json b/clients/client-elasticache/package.json
index 577d4de1c3ed5..7fd72e7e886f2 100644
--- a/clients/client-elasticache/package.json
+++ b/clients/client-elasticache/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-elasticsearch-service/package.json b/clients/client-elasticsearch-service/package.json
index 243f5f8bd5269..d178dbd01e52d 100644
--- a/clients/client-elasticsearch-service/package.json
+++ b/clients/client-elasticsearch-service/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-emr-containers/package.json b/clients/client-emr-containers/package.json
index 48afdee87ec9c..00f0b06206d2b 100644
--- a/clients/client-emr-containers/package.json
+++ b/clients/client-emr-containers/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-emr-serverless/package.json b/clients/client-emr-serverless/package.json
index b3870e3819785..8b738044f020f 100644
--- a/clients/client-emr-serverless/package.json
+++ b/clients/client-emr-serverless/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-emr/package.json b/clients/client-emr/package.json
index 54ad8a1941033..81fb802daef9d 100644
--- a/clients/client-emr/package.json
+++ b/clients/client-emr/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-entityresolution/package.json b/clients/client-entityresolution/package.json
index 69f7fcb49158e..5522cd65c45b2 100644
--- a/clients/client-entityresolution/package.json
+++ b/clients/client-entityresolution/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-eventbridge/package.json b/clients/client-eventbridge/package.json
index 58e0f76ace443..c69f72fc6add9 100644
--- a/clients/client-eventbridge/package.json
+++ b/clients/client-eventbridge/package.json
@@ -37,25 +37,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-evidently/package.json b/clients/client-evidently/package.json
index ae07609c55f77..e7a921dc93952 100644
--- a/clients/client-evidently/package.json
+++ b/clients/client-evidently/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-finspace-data/package.json b/clients/client-finspace-data/package.json
index 68f28cf29186f..cce9dac6dd338 100644
--- a/clients/client-finspace-data/package.json
+++ b/clients/client-finspace-data/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-finspace/package.json b/clients/client-finspace/package.json
index 050b3eb23e404..a8cb9ba3551cd 100644
--- a/clients/client-finspace/package.json
+++ b/clients/client-finspace/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-firehose/package.json b/clients/client-firehose/package.json
index 9787092faf6b9..ff5a138c7dbcf 100644
--- a/clients/client-firehose/package.json
+++ b/clients/client-firehose/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-fis/package.json b/clients/client-fis/package.json
index 6ca38da41aeb0..e30483b384fc7 100644
--- a/clients/client-fis/package.json
+++ b/clients/client-fis/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-fms/package.json b/clients/client-fms/package.json
index 35fa07ecac992..cfeb5a84e5bf2 100644
--- a/clients/client-fms/package.json
+++ b/clients/client-fms/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-forecast/package.json b/clients/client-forecast/package.json
index 6840b45a5b975..a9e3b0da6ed72 100644
--- a/clients/client-forecast/package.json
+++ b/clients/client-forecast/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-forecastquery/package.json b/clients/client-forecastquery/package.json
index 57f27bbd9d689..f928bedb22ca2 100644
--- a/clients/client-forecastquery/package.json
+++ b/clients/client-forecastquery/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-frauddetector/package.json b/clients/client-frauddetector/package.json
index b75a4f9aee3fb..5c6b360475db9 100644
--- a/clients/client-frauddetector/package.json
+++ b/clients/client-frauddetector/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-fsx/package.json b/clients/client-fsx/package.json
index 9b4e2674e2e6d..599ba9ab338f7 100644
--- a/clients/client-fsx/package.json
+++ b/clients/client-fsx/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-gamelift/package.json b/clients/client-gamelift/package.json
index 2c0f7a95e88ad..a7a2fe6e0ff04 100644
--- a/clients/client-gamelift/package.json
+++ b/clients/client-gamelift/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-gamesparks/package.json b/clients/client-gamesparks/package.json
index 37656cffe3d8b..e54e9185f26e4 100644
--- a/clients/client-gamesparks/package.json
+++ b/clients/client-gamesparks/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-glacier/package.json b/clients/client-glacier/package.json
index 09cc000fd7f35..d50f69196a18e 100644
--- a/clients/client-glacier/package.json
+++ b/clients/client-glacier/package.json
@@ -37,27 +37,27 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
- "@smithy/util-stream": "^2.0.15",
+ "@smithy/util-stream": "^2.0.16",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0"
diff --git a/clients/client-global-accelerator/package.json b/clients/client-global-accelerator/package.json
index cbf0ad3106411..7da461af6edde 100644
--- a/clients/client-global-accelerator/package.json
+++ b/clients/client-global-accelerator/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-glue/package.json b/clients/client-glue/package.json
index fb1a78aff3d0e..0b408ab3d7289 100644
--- a/clients/client-glue/package.json
+++ b/clients/client-glue/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-grafana/package.json b/clients/client-grafana/package.json
index 8326fca6ef160..0dfd9b3a47737 100644
--- a/clients/client-grafana/package.json
+++ b/clients/client-grafana/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-greengrass/package.json b/clients/client-greengrass/package.json
index 343fe58fc08a9..6a5515aba639b 100644
--- a/clients/client-greengrass/package.json
+++ b/clients/client-greengrass/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-greengrassv2/package.json b/clients/client-greengrassv2/package.json
index b3d083672a157..ac29444cd614d 100644
--- a/clients/client-greengrassv2/package.json
+++ b/clients/client-greengrassv2/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-groundstation/package.json b/clients/client-groundstation/package.json
index 107747ed2c3af..005f3a0949b2e 100644
--- a/clients/client-groundstation/package.json
+++ b/clients/client-groundstation/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-guardduty/package.json b/clients/client-guardduty/package.json
index b81f22bb0d654..ea4e0e56fd88f 100644
--- a/clients/client-guardduty/package.json
+++ b/clients/client-guardduty/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-health/package.json b/clients/client-health/package.json
index 38feab67fa950..d6e20c0124701 100644
--- a/clients/client-health/package.json
+++ b/clients/client-health/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-healthlake/package.json b/clients/client-healthlake/package.json
index 360c2ac32d39f..0326ed6696efd 100644
--- a/clients/client-healthlake/package.json
+++ b/clients/client-healthlake/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-honeycode/package.json b/clients/client-honeycode/package.json
index 69f46b4092989..861ca95eb5161 100644
--- a/clients/client-honeycode/package.json
+++ b/clients/client-honeycode/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-iam/package.json b/clients/client-iam/package.json
index c5889176d6c44..e83ca86714873 100644
--- a/clients/client-iam/package.json
+++ b/clients/client-iam/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-identitystore/package.json b/clients/client-identitystore/package.json
index 04ab0d91c8e53..e5145a75f5779 100644
--- a/clients/client-identitystore/package.json
+++ b/clients/client-identitystore/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-imagebuilder/package.json b/clients/client-imagebuilder/package.json
index e08c74746d6c9..c30eebe2c0b37 100644
--- a/clients/client-imagebuilder/package.json
+++ b/clients/client-imagebuilder/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-inspector/package.json b/clients/client-inspector/package.json
index 0182dbc8fff5d..de118fd381bde 100644
--- a/clients/client-inspector/package.json
+++ b/clients/client-inspector/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-inspector2/package.json b/clients/client-inspector2/package.json
index 3ed573e43ab5c..7ee55b54a3cc0 100644
--- a/clients/client-inspector2/package.json
+++ b/clients/client-inspector2/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-internetmonitor/package.json b/clients/client-internetmonitor/package.json
index 3e6ca452d36c9..e21a986cb5cd6 100644
--- a/clients/client-internetmonitor/package.json
+++ b/clients/client-internetmonitor/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-iot-1click-devices-service/package.json b/clients/client-iot-1click-devices-service/package.json
index f8d0a1e825672..7b1d15eaef398 100644
--- a/clients/client-iot-1click-devices-service/package.json
+++ b/clients/client-iot-1click-devices-service/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-iot-1click-projects/package.json b/clients/client-iot-1click-projects/package.json
index f5d423388b52a..0ded19775f1e1 100644
--- a/clients/client-iot-1click-projects/package.json
+++ b/clients/client-iot-1click-projects/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-iot-data-plane/package.json b/clients/client-iot-data-plane/package.json
index c3e0c574e4102..a1de8518ad4cf 100644
--- a/clients/client-iot-data-plane/package.json
+++ b/clients/client-iot-data-plane/package.json
@@ -34,27 +34,27 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
- "@smithy/util-stream": "^2.0.15",
+ "@smithy/util-stream": "^2.0.16",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-iot-events-data/package.json b/clients/client-iot-events-data/package.json
index a62f793c020b6..9bab9ed7afa7c 100644
--- a/clients/client-iot-events-data/package.json
+++ b/clients/client-iot-events-data/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-iot-events/package.json b/clients/client-iot-events/package.json
index e309341e74585..d534bb30c3e92 100644
--- a/clients/client-iot-events/package.json
+++ b/clients/client-iot-events/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-iot-jobs-data-plane/package.json b/clients/client-iot-jobs-data-plane/package.json
index 59e9a19dd7add..8c0033a68150d 100644
--- a/clients/client-iot-jobs-data-plane/package.json
+++ b/clients/client-iot-jobs-data-plane/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-iot-roborunner/package.json b/clients/client-iot-roborunner/package.json
index e95532408f34f..1a22c04e9cd0b 100644
--- a/clients/client-iot-roborunner/package.json
+++ b/clients/client-iot-roborunner/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-iot-wireless/package.json b/clients/client-iot-wireless/package.json
index 208101f852705..760764f250e09 100644
--- a/clients/client-iot-wireless/package.json
+++ b/clients/client-iot-wireless/package.json
@@ -34,27 +34,27 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
- "@smithy/util-stream": "^2.0.15",
+ "@smithy/util-stream": "^2.0.16",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-iot/package.json b/clients/client-iot/package.json
index 4941cbe24b128..9dafe3fafa045 100644
--- a/clients/client-iot/package.json
+++ b/clients/client-iot/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-iotanalytics/package.json b/clients/client-iotanalytics/package.json
index 3ca3cc7145516..663e0a6a0c8ec 100644
--- a/clients/client-iotanalytics/package.json
+++ b/clients/client-iotanalytics/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-iotdeviceadvisor/package.json b/clients/client-iotdeviceadvisor/package.json
index 715fe76c83bf8..3b6667246b7c9 100644
--- a/clients/client-iotdeviceadvisor/package.json
+++ b/clients/client-iotdeviceadvisor/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-iotfleethub/package.json b/clients/client-iotfleethub/package.json
index cd6cff63cda72..65f5424a3a51d 100644
--- a/clients/client-iotfleethub/package.json
+++ b/clients/client-iotfleethub/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-iotfleetwise/package.json b/clients/client-iotfleetwise/package.json
index 7dbb9040db694..a3b7d7d3c5983 100644
--- a/clients/client-iotfleetwise/package.json
+++ b/clients/client-iotfleetwise/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-iotsecuretunneling/package.json b/clients/client-iotsecuretunneling/package.json
index 2cb17eab216d1..ea98d65311e67 100644
--- a/clients/client-iotsecuretunneling/package.json
+++ b/clients/client-iotsecuretunneling/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-iotsitewise/package.json b/clients/client-iotsitewise/package.json
index d78fb68d0119b..4747838855b12 100644
--- a/clients/client-iotsitewise/package.json
+++ b/clients/client-iotsitewise/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-iotthingsgraph/package.json b/clients/client-iotthingsgraph/package.json
index 7f525d9c11d6d..a39714739f3cb 100644
--- a/clients/client-iotthingsgraph/package.json
+++ b/clients/client-iotthingsgraph/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-iottwinmaker/package.json b/clients/client-iottwinmaker/package.json
index e8a6b6d73f6ae..d5288892eafc8 100644
--- a/clients/client-iottwinmaker/package.json
+++ b/clients/client-iottwinmaker/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-ivs-realtime/package.json b/clients/client-ivs-realtime/package.json
index deb52d838e6a8..c812394afce3f 100644
--- a/clients/client-ivs-realtime/package.json
+++ b/clients/client-ivs-realtime/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-ivs/package.json b/clients/client-ivs/package.json
index 86bb4e5ab66f1..18159f4ad3428 100644
--- a/clients/client-ivs/package.json
+++ b/clients/client-ivs/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-ivschat/package.json b/clients/client-ivschat/package.json
index a7b9aa0c5bf88..44c43c2fb0180 100644
--- a/clients/client-ivschat/package.json
+++ b/clients/client-ivschat/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-kafka/package.json b/clients/client-kafka/package.json
index e4e79b7c6a2d1..df4da19cf371c 100644
--- a/clients/client-kafka/package.json
+++ b/clients/client-kafka/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-kafkaconnect/package.json b/clients/client-kafkaconnect/package.json
index c5b0034ef1db1..b0f1077c63a14 100644
--- a/clients/client-kafkaconnect/package.json
+++ b/clients/client-kafkaconnect/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-kendra-ranking/package.json b/clients/client-kendra-ranking/package.json
index f4381870d6de7..9fde65545126d 100644
--- a/clients/client-kendra-ranking/package.json
+++ b/clients/client-kendra-ranking/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-kendra/package.json b/clients/client-kendra/package.json
index a7bb6b2de2e75..f0c304627f8fa 100644
--- a/clients/client-kendra/package.json
+++ b/clients/client-kendra/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-keyspaces/package.json b/clients/client-keyspaces/package.json
index 3b09b9c7a3a16..994f75587cde2 100644
--- a/clients/client-keyspaces/package.json
+++ b/clients/client-keyspaces/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-kinesis-analytics-v2/package.json b/clients/client-kinesis-analytics-v2/package.json
index e21813682b69e..f9fb039172057 100644
--- a/clients/client-kinesis-analytics-v2/package.json
+++ b/clients/client-kinesis-analytics-v2/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-kinesis-analytics/package.json b/clients/client-kinesis-analytics/package.json
index 4b18330b2ca23..27e4a02571549 100644
--- a/clients/client-kinesis-analytics/package.json
+++ b/clients/client-kinesis-analytics/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-kinesis-video-archived-media/package.json b/clients/client-kinesis-video-archived-media/package.json
index b309b224977c1..5602e199db48d 100644
--- a/clients/client-kinesis-video-archived-media/package.json
+++ b/clients/client-kinesis-video-archived-media/package.json
@@ -34,27 +34,27 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
- "@smithy/util-stream": "^2.0.15",
+ "@smithy/util-stream": "^2.0.16",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-kinesis-video-media/package.json b/clients/client-kinesis-video-media/package.json
index 406d582294aa0..29358af11f445 100644
--- a/clients/client-kinesis-video-media/package.json
+++ b/clients/client-kinesis-video-media/package.json
@@ -34,27 +34,27 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
- "@smithy/util-stream": "^2.0.15",
+ "@smithy/util-stream": "^2.0.16",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-kinesis-video-signaling/package.json b/clients/client-kinesis-video-signaling/package.json
index a8eefa7c73bf3..48ae4fc63b0cb 100644
--- a/clients/client-kinesis-video-signaling/package.json
+++ b/clients/client-kinesis-video-signaling/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-kinesis-video-webrtc-storage/package.json b/clients/client-kinesis-video-webrtc-storage/package.json
index c40f2bcf4ca83..1710a3649d407 100644
--- a/clients/client-kinesis-video-webrtc-storage/package.json
+++ b/clients/client-kinesis-video-webrtc-storage/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-kinesis-video/package.json b/clients/client-kinesis-video/package.json
index 90dd82a55635d..1d1f5e802c98c 100644
--- a/clients/client-kinesis-video/package.json
+++ b/clients/client-kinesis-video/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-kinesis/package.json b/clients/client-kinesis/package.json
index 47538c042a9ec..6a9d5887a7e59 100644
--- a/clients/client-kinesis/package.json
+++ b/clients/client-kinesis/package.json
@@ -38,25 +38,25 @@
"@smithy/eventstream-serde-browser": "^2.0.11",
"@smithy/eventstream-serde-config-resolver": "^2.0.11",
"@smithy/eventstream-serde-node": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-kms/package.json b/clients/client-kms/package.json
index 15811eef54d02..2fca124732113 100644
--- a/clients/client-kms/package.json
+++ b/clients/client-kms/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-lakeformation/package.json b/clients/client-lakeformation/package.json
index f3dab0711d09b..ef83a63229e3b 100644
--- a/clients/client-lakeformation/package.json
+++ b/clients/client-lakeformation/package.json
@@ -34,27 +34,27 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
- "@smithy/util-stream": "^2.0.15",
+ "@smithy/util-stream": "^2.0.16",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-lambda/package.json b/clients/client-lambda/package.json
index 08537303529c2..b772ab1295692 100644
--- a/clients/client-lambda/package.json
+++ b/clients/client-lambda/package.json
@@ -37,27 +37,27 @@
"@smithy/eventstream-serde-browser": "^2.0.11",
"@smithy/eventstream-serde-config-resolver": "^2.0.11",
"@smithy/eventstream-serde-node": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
- "@smithy/util-stream": "^2.0.15",
+ "@smithy/util-stream": "^2.0.16",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0"
diff --git a/clients/client-lex-model-building-service/package.json b/clients/client-lex-model-building-service/package.json
index fa291bd12a527..7ad0e533e0e8d 100644
--- a/clients/client-lex-model-building-service/package.json
+++ b/clients/client-lex-model-building-service/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-lex-models-v2/package.json b/clients/client-lex-models-v2/package.json
index 08b4b2d50924e..72f459306ca80 100644
--- a/clients/client-lex-models-v2/package.json
+++ b/clients/client-lex-models-v2/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-lex-runtime-service/package.json b/clients/client-lex-runtime-service/package.json
index 95d6d93f8e0d8..cf7689e8b3b02 100644
--- a/clients/client-lex-runtime-service/package.json
+++ b/clients/client-lex-runtime-service/package.json
@@ -36,27 +36,27 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
- "@smithy/util-stream": "^2.0.15",
+ "@smithy/util-stream": "^2.0.16",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-lex-runtime-v2/package.json b/clients/client-lex-runtime-v2/package.json
index 9e96891a0c14f..8f4bfec0ce55f 100644
--- a/clients/client-lex-runtime-v2/package.json
+++ b/clients/client-lex-runtime-v2/package.json
@@ -39,27 +39,27 @@
"@smithy/eventstream-serde-browser": "^2.0.11",
"@smithy/eventstream-serde-config-resolver": "^2.0.11",
"@smithy/eventstream-serde-node": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
- "@smithy/util-stream": "^2.0.15",
+ "@smithy/util-stream": "^2.0.16",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-license-manager-linux-subscriptions/package.json b/clients/client-license-manager-linux-subscriptions/package.json
index 5effe737dc707..4aea44f59ac12 100644
--- a/clients/client-license-manager-linux-subscriptions/package.json
+++ b/clients/client-license-manager-linux-subscriptions/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-license-manager-user-subscriptions/package.json b/clients/client-license-manager-user-subscriptions/package.json
index a213259b4fc4a..da7ad016e367c 100644
--- a/clients/client-license-manager-user-subscriptions/package.json
+++ b/clients/client-license-manager-user-subscriptions/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-license-manager/package.json b/clients/client-license-manager/package.json
index 7a2803891fe35..6d6b051732274 100644
--- a/clients/client-license-manager/package.json
+++ b/clients/client-license-manager/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-lightsail/package.json b/clients/client-lightsail/package.json
index b6a106fc80e77..ff63c4bd49620 100644
--- a/clients/client-lightsail/package.json
+++ b/clients/client-lightsail/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-location/package.json b/clients/client-location/package.json
index 862c03e2930d4..bb60ec7a5191c 100644
--- a/clients/client-location/package.json
+++ b/clients/client-location/package.json
@@ -34,27 +34,27 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
- "@smithy/util-stream": "^2.0.15",
+ "@smithy/util-stream": "^2.0.16",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-lookoutequipment/package.json b/clients/client-lookoutequipment/package.json
index 121a2056dfe08..fcec2da36ff7c 100644
--- a/clients/client-lookoutequipment/package.json
+++ b/clients/client-lookoutequipment/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-lookoutmetrics/package.json b/clients/client-lookoutmetrics/package.json
index d438274fcda0f..60980cb8a8cc2 100644
--- a/clients/client-lookoutmetrics/package.json
+++ b/clients/client-lookoutmetrics/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-lookoutvision/package.json b/clients/client-lookoutvision/package.json
index 61b026feb0fe8..61384ec8582db 100644
--- a/clients/client-lookoutvision/package.json
+++ b/clients/client-lookoutvision/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-m2/package.json b/clients/client-m2/package.json
index 6cdfc3ea4cb56..4503d5358b323 100644
--- a/clients/client-m2/package.json
+++ b/clients/client-m2/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-machine-learning/package.json b/clients/client-machine-learning/package.json
index 087c66ce9843d..d210829d005bb 100644
--- a/clients/client-machine-learning/package.json
+++ b/clients/client-machine-learning/package.json
@@ -35,25 +35,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-macie/package.json b/clients/client-macie/package.json
index 56809ce9ad0e7..32275f771eb8a 100644
--- a/clients/client-macie/package.json
+++ b/clients/client-macie/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-macie2/package.json b/clients/client-macie2/package.json
index 91f34651af3d9..b7317c1117734 100644
--- a/clients/client-macie2/package.json
+++ b/clients/client-macie2/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-managedblockchain-query/package.json b/clients/client-managedblockchain-query/package.json
index d983cab506eab..a54cde8d22d92 100644
--- a/clients/client-managedblockchain-query/package.json
+++ b/clients/client-managedblockchain-query/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-managedblockchain/package.json b/clients/client-managedblockchain/package.json
index 871f4c0287a66..770ed31b17929 100644
--- a/clients/client-managedblockchain/package.json
+++ b/clients/client-managedblockchain/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-marketplace-catalog/package.json b/clients/client-marketplace-catalog/package.json
index 54173ec042a10..4f1b1f73f9548 100644
--- a/clients/client-marketplace-catalog/package.json
+++ b/clients/client-marketplace-catalog/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-marketplace-commerce-analytics/package.json b/clients/client-marketplace-commerce-analytics/package.json
index 30985ce61d3fb..955e27fe5395d 100644
--- a/clients/client-marketplace-commerce-analytics/package.json
+++ b/clients/client-marketplace-commerce-analytics/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-marketplace-entitlement-service/package.json b/clients/client-marketplace-entitlement-service/package.json
index 46f12eaf7fd6b..887a2c5cf7247 100644
--- a/clients/client-marketplace-entitlement-service/package.json
+++ b/clients/client-marketplace-entitlement-service/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-marketplace-metering/package.json b/clients/client-marketplace-metering/package.json
index e02271e817368..990fafddaa450 100644
--- a/clients/client-marketplace-metering/package.json
+++ b/clients/client-marketplace-metering/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-mediaconnect/package.json b/clients/client-mediaconnect/package.json
index 744ad98f508d8..ff2b43fc2ddf9 100644
--- a/clients/client-mediaconnect/package.json
+++ b/clients/client-mediaconnect/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-mediaconvert/package.json b/clients/client-mediaconvert/package.json
index fd482816fee73..43fc62306c0e2 100644
--- a/clients/client-mediaconvert/package.json
+++ b/clients/client-mediaconvert/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-medialive/package.json b/clients/client-medialive/package.json
index 98b9af71171f5..34c5bb1d2366a 100644
--- a/clients/client-medialive/package.json
+++ b/clients/client-medialive/package.json
@@ -34,27 +34,27 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
- "@smithy/util-stream": "^2.0.15",
+ "@smithy/util-stream": "^2.0.16",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0",
diff --git a/clients/client-mediapackage-vod/package.json b/clients/client-mediapackage-vod/package.json
index 7ecf6f447ed91..030c21e9edaee 100644
--- a/clients/client-mediapackage-vod/package.json
+++ b/clients/client-mediapackage-vod/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-mediapackage/package.json b/clients/client-mediapackage/package.json
index 8bf7533177415..06c536549663c 100644
--- a/clients/client-mediapackage/package.json
+++ b/clients/client-mediapackage/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-mediapackagev2/package.json b/clients/client-mediapackagev2/package.json
index 68b99ee33c300..682f5f208018d 100644
--- a/clients/client-mediapackagev2/package.json
+++ b/clients/client-mediapackagev2/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-mediastore-data/package.json b/clients/client-mediastore-data/package.json
index 47a4db6e7721d..9f3277e356228 100644
--- a/clients/client-mediastore-data/package.json
+++ b/clients/client-mediastore-data/package.json
@@ -36,27 +36,27 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
- "@smithy/util-stream": "^2.0.15",
+ "@smithy/util-stream": "^2.0.16",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-mediastore/package.json b/clients/client-mediastore/package.json
index 4098ef4998bd0..d4b4215f13b6f 100644
--- a/clients/client-mediastore/package.json
+++ b/clients/client-mediastore/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-mediatailor/package.json b/clients/client-mediatailor/package.json
index 71550a3fdc2dd..d809a732e9b06 100644
--- a/clients/client-mediatailor/package.json
+++ b/clients/client-mediatailor/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-medical-imaging/package.json b/clients/client-medical-imaging/package.json
index 77a57f690143a..3175f4d04a999 100644
--- a/clients/client-medical-imaging/package.json
+++ b/clients/client-medical-imaging/package.json
@@ -34,27 +34,27 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
- "@smithy/util-stream": "^2.0.15",
+ "@smithy/util-stream": "^2.0.16",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-memorydb/package.json b/clients/client-memorydb/package.json
index 8dca7aebff47f..bcfb79b0cc255 100644
--- a/clients/client-memorydb/package.json
+++ b/clients/client-memorydb/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-mgn/package.json b/clients/client-mgn/package.json
index 19f208da9f4c9..28dca54f5fcd9 100644
--- a/clients/client-mgn/package.json
+++ b/clients/client-mgn/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-migration-hub-refactor-spaces/package.json b/clients/client-migration-hub-refactor-spaces/package.json
index 146e868cb0802..482b83c33452c 100644
--- a/clients/client-migration-hub-refactor-spaces/package.json
+++ b/clients/client-migration-hub-refactor-spaces/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-migration-hub/package.json b/clients/client-migration-hub/package.json
index a615cf9fba056..0d944cb460c77 100644
--- a/clients/client-migration-hub/package.json
+++ b/clients/client-migration-hub/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-migrationhub-config/package.json b/clients/client-migrationhub-config/package.json
index fad907d310145..87aff2cea296f 100644
--- a/clients/client-migrationhub-config/package.json
+++ b/clients/client-migrationhub-config/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-migrationhuborchestrator/package.json b/clients/client-migrationhuborchestrator/package.json
index 74cdbb3990bb6..6e7f735a84c6b 100644
--- a/clients/client-migrationhuborchestrator/package.json
+++ b/clients/client-migrationhuborchestrator/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-migrationhubstrategy/package.json b/clients/client-migrationhubstrategy/package.json
index e282df0364798..43f1c34fcb1b1 100644
--- a/clients/client-migrationhubstrategy/package.json
+++ b/clients/client-migrationhubstrategy/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-mobile/package.json b/clients/client-mobile/package.json
index 5c1e6861ecbbd..2649e24ae8fea 100644
--- a/clients/client-mobile/package.json
+++ b/clients/client-mobile/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-mq/package.json b/clients/client-mq/package.json
index 141567783eb35..d6688d469b32e 100644
--- a/clients/client-mq/package.json
+++ b/clients/client-mq/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-mturk/package.json b/clients/client-mturk/package.json
index 593e5c8c7d856..625e4d82dcb6e 100644
--- a/clients/client-mturk/package.json
+++ b/clients/client-mturk/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-mwaa/package.json b/clients/client-mwaa/package.json
index 8ab7cda2cc8fb..eb0a5eeedb436 100644
--- a/clients/client-mwaa/package.json
+++ b/clients/client-mwaa/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-neptune/package.json b/clients/client-neptune/package.json
index 1d8218a05ab33..f34620bf2c31f 100644
--- a/clients/client-neptune/package.json
+++ b/clients/client-neptune/package.json
@@ -35,25 +35,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-neptunedata/package.json b/clients/client-neptunedata/package.json
index 809a137dcaf2a..4534e94e2d2dd 100644
--- a/clients/client-neptunedata/package.json
+++ b/clients/client-neptunedata/package.json
@@ -34,27 +34,27 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
- "@smithy/util-stream": "^2.0.15",
+ "@smithy/util-stream": "^2.0.16",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-network-firewall/package.json b/clients/client-network-firewall/package.json
index d1d25ca6966b2..cb72df3a0fe86 100644
--- a/clients/client-network-firewall/package.json
+++ b/clients/client-network-firewall/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-networkmanager/package.json b/clients/client-networkmanager/package.json
index 6f138655e529f..397fb7cbe27d8 100644
--- a/clients/client-networkmanager/package.json
+++ b/clients/client-networkmanager/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-nimble/package.json b/clients/client-nimble/package.json
index 9725648aa12a4..ea85e2213b44a 100644
--- a/clients/client-nimble/package.json
+++ b/clients/client-nimble/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-oam/package.json b/clients/client-oam/package.json
index 0057dbb338927..0a87078f57359 100644
--- a/clients/client-oam/package.json
+++ b/clients/client-oam/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-omics/package.json b/clients/client-omics/package.json
index 0838b150f183a..a8e7b42609d94 100644
--- a/clients/client-omics/package.json
+++ b/clients/client-omics/package.json
@@ -34,27 +34,27 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
- "@smithy/util-stream": "^2.0.15",
+ "@smithy/util-stream": "^2.0.16",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0",
diff --git a/clients/client-opensearch/package.json b/clients/client-opensearch/package.json
index 7bf608f40f2c5..c9774ed0481e5 100644
--- a/clients/client-opensearch/package.json
+++ b/clients/client-opensearch/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-opensearchserverless/package.json b/clients/client-opensearchserverless/package.json
index 99be94a62759a..0e851ac75f77c 100644
--- a/clients/client-opensearchserverless/package.json
+++ b/clients/client-opensearchserverless/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-opsworks/package.json b/clients/client-opsworks/package.json
index 207996a6d2238..dafc0dac54b3a 100644
--- a/clients/client-opsworks/package.json
+++ b/clients/client-opsworks/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-opsworkscm/package.json b/clients/client-opsworkscm/package.json
index d65c0daaba454..f40b3108e53e8 100644
--- a/clients/client-opsworkscm/package.json
+++ b/clients/client-opsworkscm/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-organizations/package.json b/clients/client-organizations/package.json
index 25a9cd817a469..c160502f655b7 100644
--- a/clients/client-organizations/package.json
+++ b/clients/client-organizations/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-osis/package.json b/clients/client-osis/package.json
index e72512944c4e4..2135b146e4037 100644
--- a/clients/client-osis/package.json
+++ b/clients/client-osis/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-outposts/package.json b/clients/client-outposts/package.json
index 2b7fba2545f72..b0f46356c44cf 100644
--- a/clients/client-outposts/package.json
+++ b/clients/client-outposts/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-panorama/package.json b/clients/client-panorama/package.json
index 70686ea7414ac..a337df172dae9 100644
--- a/clients/client-panorama/package.json
+++ b/clients/client-panorama/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-payment-cryptography-data/package.json b/clients/client-payment-cryptography-data/package.json
index fe27f9bc6d367..ba994b702615b 100644
--- a/clients/client-payment-cryptography-data/package.json
+++ b/clients/client-payment-cryptography-data/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-payment-cryptography/package.json b/clients/client-payment-cryptography/package.json
index 9d45afa4c57d1..7343031d9c71f 100644
--- a/clients/client-payment-cryptography/package.json
+++ b/clients/client-payment-cryptography/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-pca-connector-ad/package.json b/clients/client-pca-connector-ad/package.json
index f2bba16362880..f01bb088ab806 100644
--- a/clients/client-pca-connector-ad/package.json
+++ b/clients/client-pca-connector-ad/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-personalize-events/package.json b/clients/client-personalize-events/package.json
index 002fa6547e8b1..a7e355aa90959 100644
--- a/clients/client-personalize-events/package.json
+++ b/clients/client-personalize-events/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-personalize-runtime/package.json b/clients/client-personalize-runtime/package.json
index 63480ac2a1b9d..6fa7dd1afd149 100644
--- a/clients/client-personalize-runtime/package.json
+++ b/clients/client-personalize-runtime/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-personalize/package.json b/clients/client-personalize/package.json
index 1351519db7521..0cb3d77c4a7e0 100644
--- a/clients/client-personalize/package.json
+++ b/clients/client-personalize/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-pi/package.json b/clients/client-pi/package.json
index 5555758e4d79f..a8d21ce36aeba 100644
--- a/clients/client-pi/package.json
+++ b/clients/client-pi/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-pinpoint-email/package.json b/clients/client-pinpoint-email/package.json
index 49dd2f9d84718..92cc58e502e65 100644
--- a/clients/client-pinpoint-email/package.json
+++ b/clients/client-pinpoint-email/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-pinpoint-sms-voice-v2/package.json b/clients/client-pinpoint-sms-voice-v2/package.json
index 6359b5ce52fc0..713fcb0cb434c 100644
--- a/clients/client-pinpoint-sms-voice-v2/package.json
+++ b/clients/client-pinpoint-sms-voice-v2/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-pinpoint-sms-voice/package.json b/clients/client-pinpoint-sms-voice/package.json
index 5fc4453e0644c..61956b9cd5357 100644
--- a/clients/client-pinpoint-sms-voice/package.json
+++ b/clients/client-pinpoint-sms-voice/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-pinpoint/package.json b/clients/client-pinpoint/package.json
index 5f863a1192e9d..22a8fd6ada0d4 100644
--- a/clients/client-pinpoint/package.json
+++ b/clients/client-pinpoint/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-pipes/package.json b/clients/client-pipes/package.json
index 81c3a98e123fe..58fdbfc6386ed 100644
--- a/clients/client-pipes/package.json
+++ b/clients/client-pipes/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-polly/package.json b/clients/client-polly/package.json
index 882b8d9c76cb4..5fa49a320d40d 100644
--- a/clients/client-polly/package.json
+++ b/clients/client-polly/package.json
@@ -34,27 +34,27 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
- "@smithy/util-stream": "^2.0.15",
+ "@smithy/util-stream": "^2.0.16",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-pricing/package.json b/clients/client-pricing/package.json
index 2ddb12637def5..3befe71f77968 100644
--- a/clients/client-pricing/package.json
+++ b/clients/client-pricing/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-privatenetworks/package.json b/clients/client-privatenetworks/package.json
index 06821646fdc39..93efe49349943 100644
--- a/clients/client-privatenetworks/package.json
+++ b/clients/client-privatenetworks/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-proton/package.json b/clients/client-proton/package.json
index fe15d81d35d6c..2d36dd83250f3 100644
--- a/clients/client-proton/package.json
+++ b/clients/client-proton/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-qldb-session/package.json b/clients/client-qldb-session/package.json
index bfc5027fcae00..e5399a6153ed0 100644
--- a/clients/client-qldb-session/package.json
+++ b/clients/client-qldb-session/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-qldb/package.json b/clients/client-qldb/package.json
index 04d0229123b95..066007bf8bc15 100644
--- a/clients/client-qldb/package.json
+++ b/clients/client-qldb/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-quicksight/package.json b/clients/client-quicksight/package.json
index 3e6896abfbfe9..0c647e5bdf273 100644
--- a/clients/client-quicksight/package.json
+++ b/clients/client-quicksight/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-ram/package.json b/clients/client-ram/package.json
index 3a75905d6f876..18e443e43d3b9 100644
--- a/clients/client-ram/package.json
+++ b/clients/client-ram/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-rbin/package.json b/clients/client-rbin/package.json
index 1a8365fbb86ec..e21b8ad90ed74 100644
--- a/clients/client-rbin/package.json
+++ b/clients/client-rbin/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-rds-data/package.json b/clients/client-rds-data/package.json
index f8be37a711da1..6963789033015 100644
--- a/clients/client-rds-data/package.json
+++ b/clients/client-rds-data/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-rds/package.json b/clients/client-rds/package.json
index cd41c57506be5..0ecb1a547bd9d 100644
--- a/clients/client-rds/package.json
+++ b/clients/client-rds/package.json
@@ -35,25 +35,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-redshift-data/package.json b/clients/client-redshift-data/package.json
index fd3d4a397a362..3bb6d78188c4c 100644
--- a/clients/client-redshift-data/package.json
+++ b/clients/client-redshift-data/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-redshift-serverless/package.json b/clients/client-redshift-serverless/package.json
index 34ff5611bca48..7e6a2812eda2f 100644
--- a/clients/client-redshift-serverless/package.json
+++ b/clients/client-redshift-serverless/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-redshift/package.json b/clients/client-redshift/package.json
index 284094fa96e12..d61504828e95b 100644
--- a/clients/client-redshift/package.json
+++ b/clients/client-redshift/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-rekognition/package.json b/clients/client-rekognition/package.json
index 0e2cf95aca35f..cc7edeb5387e3 100644
--- a/clients/client-rekognition/package.json
+++ b/clients/client-rekognition/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-rekognitionstreaming/package.json b/clients/client-rekognitionstreaming/package.json
index ac3436529d905..0bef5bfdf7ac3 100644
--- a/clients/client-rekognitionstreaming/package.json
+++ b/clients/client-rekognitionstreaming/package.json
@@ -40,25 +40,25 @@
"@smithy/eventstream-serde-browser": "^2.0.11",
"@smithy/eventstream-serde-config-resolver": "^2.0.11",
"@smithy/eventstream-serde-node": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-resiliencehub/package.json b/clients/client-resiliencehub/package.json
index 885ddbd437176..0d0ce2a04962f 100644
--- a/clients/client-resiliencehub/package.json
+++ b/clients/client-resiliencehub/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-resource-explorer-2/package.json b/clients/client-resource-explorer-2/package.json
index ff1c338415f5e..b098cfdaf8b9c 100644
--- a/clients/client-resource-explorer-2/package.json
+++ b/clients/client-resource-explorer-2/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-resource-groups-tagging-api/package.json b/clients/client-resource-groups-tagging-api/package.json
index 0b735f84a406b..8bb904079afa7 100644
--- a/clients/client-resource-groups-tagging-api/package.json
+++ b/clients/client-resource-groups-tagging-api/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-resource-groups/package.json b/clients/client-resource-groups/package.json
index 38f577a529455..7d2527e0d3435 100644
--- a/clients/client-resource-groups/package.json
+++ b/clients/client-resource-groups/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-robomaker/package.json b/clients/client-robomaker/package.json
index bd2fa2431d8eb..07cd2dc55df2f 100644
--- a/clients/client-robomaker/package.json
+++ b/clients/client-robomaker/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-rolesanywhere/package.json b/clients/client-rolesanywhere/package.json
index 9b91d1a2808e1..bf7d9db11063d 100644
--- a/clients/client-rolesanywhere/package.json
+++ b/clients/client-rolesanywhere/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-route-53-domains/package.json b/clients/client-route-53-domains/package.json
index a3616ba18c8d0..7a64db370cad7 100644
--- a/clients/client-route-53-domains/package.json
+++ b/clients/client-route-53-domains/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-route-53/package.json b/clients/client-route-53/package.json
index c1ad5efb0f101..a463348cc0a91 100644
--- a/clients/client-route-53/package.json
+++ b/clients/client-route-53/package.json
@@ -36,25 +36,25 @@
"@aws-sdk/util-user-agent-node": "*",
"@aws-sdk/xml-builder": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-route53-recovery-cluster/package.json b/clients/client-route53-recovery-cluster/package.json
index 7fb19cf7b5ecc..d3f3f9df19aa3 100644
--- a/clients/client-route53-recovery-cluster/package.json
+++ b/clients/client-route53-recovery-cluster/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-route53-recovery-control-config/package.json b/clients/client-route53-recovery-control-config/package.json
index 1253c43b757ac..30240d9275763 100644
--- a/clients/client-route53-recovery-control-config/package.json
+++ b/clients/client-route53-recovery-control-config/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-route53-recovery-readiness/package.json b/clients/client-route53-recovery-readiness/package.json
index 0527212fcd07f..212a41a9b0334 100644
--- a/clients/client-route53-recovery-readiness/package.json
+++ b/clients/client-route53-recovery-readiness/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-route53resolver/package.json b/clients/client-route53resolver/package.json
index a4df249bc0db6..3ec1782e1f836 100644
--- a/clients/client-route53resolver/package.json
+++ b/clients/client-route53resolver/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-rum/package.json b/clients/client-rum/package.json
index 242b2c5964e76..083206fe39ea5 100644
--- a/clients/client-rum/package.json
+++ b/clients/client-rum/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-s3-control/package.json b/clients/client-s3-control/package.json
index 891eadd6718af..11c4ce78ec4d2 100644
--- a/clients/client-s3-control/package.json
+++ b/clients/client-s3-control/package.json
@@ -38,7 +38,7 @@
"@aws-sdk/util-user-agent-node": "*",
"@aws-sdk/xml-builder": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-blob-browser": "^2.0.11",
"@smithy/hash-node": "^2.0.11",
"@smithy/hash-stream-node": "^2.0.11",
@@ -46,21 +46,21 @@
"@smithy/md5-js": "^2.0.11",
"@smithy/middleware-apply-body-checksum": "^2.0.13",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"fast-xml-parser": "4.2.5",
diff --git a/clients/client-s3/package.json b/clients/client-s3/package.json
index c5ccc01cced9c..5de80523fbfd6 100644
--- a/clients/client-s3/package.json
+++ b/clients/client-s3/package.json
@@ -49,30 +49,30 @@
"@smithy/eventstream-serde-browser": "^2.0.11",
"@smithy/eventstream-serde-config-resolver": "^2.0.11",
"@smithy/eventstream-serde-node": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-blob-browser": "^2.0.11",
"@smithy/hash-node": "^2.0.11",
"@smithy/hash-stream-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/md5-js": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
- "@smithy/util-stream": "^2.0.15",
+ "@smithy/util-stream": "^2.0.16",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
"fast-xml-parser": "4.2.5",
diff --git a/clients/client-s3outposts/package.json b/clients/client-s3outposts/package.json
index b367a1884de3b..8fc475bf9c103 100644
--- a/clients/client-s3outposts/package.json
+++ b/clients/client-s3outposts/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-sagemaker-a2i-runtime/package.json b/clients/client-sagemaker-a2i-runtime/package.json
index c566f7faccf84..b3fc4a200c3b8 100644
--- a/clients/client-sagemaker-a2i-runtime/package.json
+++ b/clients/client-sagemaker-a2i-runtime/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-sagemaker-edge/package.json b/clients/client-sagemaker-edge/package.json
index b83feebbc2668..dc15f46ff12e2 100644
--- a/clients/client-sagemaker-edge/package.json
+++ b/clients/client-sagemaker-edge/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-sagemaker-featurestore-runtime/package.json b/clients/client-sagemaker-featurestore-runtime/package.json
index e707293b65937..467eb25743bdb 100644
--- a/clients/client-sagemaker-featurestore-runtime/package.json
+++ b/clients/client-sagemaker-featurestore-runtime/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-sagemaker-geospatial/package.json b/clients/client-sagemaker-geospatial/package.json
index 5ab5eb3601620..bb93f8a17a629 100644
--- a/clients/client-sagemaker-geospatial/package.json
+++ b/clients/client-sagemaker-geospatial/package.json
@@ -34,27 +34,27 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
- "@smithy/util-stream": "^2.0.15",
+ "@smithy/util-stream": "^2.0.16",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/clients/client-sagemaker-metrics/package.json b/clients/client-sagemaker-metrics/package.json
index 2e5447d748ef7..65b411d6a840a 100644
--- a/clients/client-sagemaker-metrics/package.json
+++ b/clients/client-sagemaker-metrics/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-sagemaker-runtime/package.json b/clients/client-sagemaker-runtime/package.json
index 31705fb0ada7d..8ebce2d221457 100644
--- a/clients/client-sagemaker-runtime/package.json
+++ b/clients/client-sagemaker-runtime/package.json
@@ -37,27 +37,27 @@
"@smithy/eventstream-serde-browser": "^2.0.11",
"@smithy/eventstream-serde-config-resolver": "^2.0.11",
"@smithy/eventstream-serde-node": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
- "@smithy/util-stream": "^2.0.15",
+ "@smithy/util-stream": "^2.0.16",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-sagemaker/package.json b/clients/client-sagemaker/package.json
index 49c9830f428e5..5fdf10c850813 100644
--- a/clients/client-sagemaker/package.json
+++ b/clients/client-sagemaker/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-savingsplans/package.json b/clients/client-savingsplans/package.json
index e3a9b2a28856c..ffdf4a498f5cc 100644
--- a/clients/client-savingsplans/package.json
+++ b/clients/client-savingsplans/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-scheduler/package.json b/clients/client-scheduler/package.json
index 4d1e0b4dee2df..c85b1ba0de9a2 100644
--- a/clients/client-scheduler/package.json
+++ b/clients/client-scheduler/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-schemas/package.json b/clients/client-schemas/package.json
index 55682280c0688..d993bb7a720a0 100644
--- a/clients/client-schemas/package.json
+++ b/clients/client-schemas/package.json
@@ -34,27 +34,27 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
- "@smithy/util-stream": "^2.0.15",
+ "@smithy/util-stream": "^2.0.16",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
"tslib": "^2.5.0",
diff --git a/clients/client-secrets-manager/package.json b/clients/client-secrets-manager/package.json
index 5ab407863dbbf..d2d3965ec41a9 100644
--- a/clients/client-secrets-manager/package.json
+++ b/clients/client-secrets-manager/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-securityhub/package.json b/clients/client-securityhub/package.json
index f2289f25ed369..f0aefbade163d 100644
--- a/clients/client-securityhub/package.json
+++ b/clients/client-securityhub/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-securitylake/package.json b/clients/client-securitylake/package.json
index 43c7fd18e6e72..5a20b5fef1f71 100644
--- a/clients/client-securitylake/package.json
+++ b/clients/client-securitylake/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-serverlessapplicationrepository/package.json b/clients/client-serverlessapplicationrepository/package.json
index 9c9085ec2dde6..979cacc61c22d 100644
--- a/clients/client-serverlessapplicationrepository/package.json
+++ b/clients/client-serverlessapplicationrepository/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-service-catalog-appregistry/package.json b/clients/client-service-catalog-appregistry/package.json
index f2e265931c27f..4d540ac0a1eb8 100644
--- a/clients/client-service-catalog-appregistry/package.json
+++ b/clients/client-service-catalog-appregistry/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-service-catalog/package.json b/clients/client-service-catalog/package.json
index 7c6309905d5ab..5f20efd3d1ccf 100644
--- a/clients/client-service-catalog/package.json
+++ b/clients/client-service-catalog/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-service-quotas/package.json b/clients/client-service-quotas/package.json
index 0a96f1e5550fa..cd45f632be0a6 100644
--- a/clients/client-service-quotas/package.json
+++ b/clients/client-service-quotas/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-servicediscovery/package.json b/clients/client-servicediscovery/package.json
index fd5f5ce3f19be..6e05c1062157f 100644
--- a/clients/client-servicediscovery/package.json
+++ b/clients/client-servicediscovery/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-ses/package.json b/clients/client-ses/package.json
index 4a2220868b752..6b62cf8516a44 100644
--- a/clients/client-ses/package.json
+++ b/clients/client-ses/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-sesv2/package.json b/clients/client-sesv2/package.json
index 5c4e275481a53..c8a902bae2ee3 100644
--- a/clients/client-sesv2/package.json
+++ b/clients/client-sesv2/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-sfn/package.json b/clients/client-sfn/package.json
index fc55b5630047e..38f40482f600f 100644
--- a/clients/client-sfn/package.json
+++ b/clients/client-sfn/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-shield/package.json b/clients/client-shield/package.json
index e6bf12a842abe..bc1f33711a887 100644
--- a/clients/client-shield/package.json
+++ b/clients/client-shield/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-signer/package.json b/clients/client-signer/package.json
index 4e69751e16e3c..34ba7b5698e32 100644
--- a/clients/client-signer/package.json
+++ b/clients/client-signer/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-simspaceweaver/package.json b/clients/client-simspaceweaver/package.json
index 67d7b5a02b68a..7295177d0c8ef 100644
--- a/clients/client-simspaceweaver/package.json
+++ b/clients/client-simspaceweaver/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-sms/package.json b/clients/client-sms/package.json
index 71126dfda3ab9..521caa2e30032 100644
--- a/clients/client-sms/package.json
+++ b/clients/client-sms/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-snow-device-management/package.json b/clients/client-snow-device-management/package.json
index 7d8240a9f0e53..ed88e8d2067f8 100644
--- a/clients/client-snow-device-management/package.json
+++ b/clients/client-snow-device-management/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-snowball/package.json b/clients/client-snowball/package.json
index 9d8d8ea632561..d682db3d648cb 100644
--- a/clients/client-snowball/package.json
+++ b/clients/client-snowball/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-sns/package.json b/clients/client-sns/package.json
index 5ba6289872e9c..413377c88d4ed 100644
--- a/clients/client-sns/package.json
+++ b/clients/client-sns/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"fast-xml-parser": "4.2.5",
diff --git a/clients/client-sqs/package.json b/clients/client-sqs/package.json
index 6d20c8143b891..c2b66dc5b3f14 100644
--- a/clients/client-sqs/package.json
+++ b/clients/client-sqs/package.json
@@ -35,26 +35,26 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/md5-js": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"fast-xml-parser": "4.2.5",
diff --git a/clients/client-ssm-contacts/package.json b/clients/client-ssm-contacts/package.json
index d66fa402f8fff..8dff718884c50 100644
--- a/clients/client-ssm-contacts/package.json
+++ b/clients/client-ssm-contacts/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-ssm-incidents/package.json b/clients/client-ssm-incidents/package.json
index dda50ed83b344..112f194838dc7 100644
--- a/clients/client-ssm-incidents/package.json
+++ b/clients/client-ssm-incidents/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-ssm-sap/package.json b/clients/client-ssm-sap/package.json
index 9fd8ee100af2f..c489e1019056b 100644
--- a/clients/client-ssm-sap/package.json
+++ b/clients/client-ssm-sap/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-ssm/package.json b/clients/client-ssm/package.json
index a724db2acbc48..1815058d16ccd 100644
--- a/clients/client-ssm/package.json
+++ b/clients/client-ssm/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-sso-admin/package.json b/clients/client-sso-admin/package.json
index 66d2a04e21a64..10c39390275f2 100644
--- a/clients/client-sso-admin/package.json
+++ b/clients/client-sso-admin/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-sso-oidc/package.json b/clients/client-sso-oidc/package.json
index e39449de2770d..1b12b9c38a200 100644
--- a/clients/client-sso-oidc/package.json
+++ b/clients/client-sso-oidc/package.json
@@ -31,25 +31,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-sso/package.json b/clients/client-sso/package.json
index 84f62572f37dc..9bace95bfbb08 100644
--- a/clients/client-sso/package.json
+++ b/clients/client-sso/package.json
@@ -31,25 +31,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-storage-gateway/package.json b/clients/client-storage-gateway/package.json
index 10f75ab774d68..a20fa35182b98 100644
--- a/clients/client-storage-gateway/package.json
+++ b/clients/client-storage-gateway/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-sts/package.json b/clients/client-sts/package.json
index 12faed42fe522..7b2e7a8707405 100644
--- a/clients/client-sts/package.json
+++ b/clients/client-sts/package.json
@@ -36,25 +36,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"fast-xml-parser": "4.2.5",
diff --git a/clients/client-support-app/package.json b/clients/client-support-app/package.json
index d5c9915e13920..b9b7d71276678 100644
--- a/clients/client-support-app/package.json
+++ b/clients/client-support-app/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-support/package.json b/clients/client-support/package.json
index cce791c0a1321..91c1d361f7a03 100644
--- a/clients/client-support/package.json
+++ b/clients/client-support/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-swf/package.json b/clients/client-swf/package.json
index 6e0dd8abca3ba..99729f3af9847 100644
--- a/clients/client-swf/package.json
+++ b/clients/client-swf/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-synthetics/package.json b/clients/client-synthetics/package.json
index 41caa47c9d708..75c7eb659bcb7 100644
--- a/clients/client-synthetics/package.json
+++ b/clients/client-synthetics/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-textract/package.json b/clients/client-textract/package.json
index cee5403521913..f6e3ec0001f79 100644
--- a/clients/client-textract/package.json
+++ b/clients/client-textract/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-timestream-query/package.json b/clients/client-timestream-query/package.json
index 793d1d7925278..4b732e9078367 100644
--- a/clients/client-timestream-query/package.json
+++ b/clients/client-timestream-query/package.json
@@ -35,25 +35,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-timestream-write/package.json b/clients/client-timestream-write/package.json
index de38d824c6be4..2dd051aaf125f 100644
--- a/clients/client-timestream-write/package.json
+++ b/clients/client-timestream-write/package.json
@@ -35,25 +35,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-tnb/package.json b/clients/client-tnb/package.json
index fbd2e58fb15a8..673f8a4a5e81b 100644
--- a/clients/client-tnb/package.json
+++ b/clients/client-tnb/package.json
@@ -34,27 +34,27 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
- "@smithy/util-stream": "^2.0.15",
+ "@smithy/util-stream": "^2.0.16",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-transcribe-streaming/package.json b/clients/client-transcribe-streaming/package.json
index 566bc932c89cf..b722c41d76440 100644
--- a/clients/client-transcribe-streaming/package.json
+++ b/clients/client-transcribe-streaming/package.json
@@ -42,25 +42,25 @@
"@smithy/eventstream-serde-browser": "^2.0.11",
"@smithy/eventstream-serde-config-resolver": "^2.0.11",
"@smithy/eventstream-serde-node": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-transcribe/package.json b/clients/client-transcribe/package.json
index 1980dc082bdae..a4429b612be90 100644
--- a/clients/client-transcribe/package.json
+++ b/clients/client-transcribe/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-transfer/package.json b/clients/client-transfer/package.json
index d628c9abe2fbc..188977d099536 100644
--- a/clients/client-transfer/package.json
+++ b/clients/client-transfer/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"@smithy/util-waiter": "^2.0.11",
diff --git a/clients/client-translate/package.json b/clients/client-translate/package.json
index a00b1a90035e3..f2ee1b16b35f6 100644
--- a/clients/client-translate/package.json
+++ b/clients/client-translate/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-verifiedpermissions/package.json b/clients/client-verifiedpermissions/package.json
index 751568cfe48e2..b1cc0dbb7923a 100644
--- a/clients/client-verifiedpermissions/package.json
+++ b/clients/client-verifiedpermissions/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-voice-id/package.json b/clients/client-voice-id/package.json
index fa4ead1ba2fd3..b6c4a2eef7da6 100644
--- a/clients/client-voice-id/package.json
+++ b/clients/client-voice-id/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-vpc-lattice/package.json b/clients/client-vpc-lattice/package.json
index 74bc07e493adb..101a2f2bba1a5 100644
--- a/clients/client-vpc-lattice/package.json
+++ b/clients/client-vpc-lattice/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-waf-regional/package.json b/clients/client-waf-regional/package.json
index 507feaebf24b0..872ccdccc87a6 100644
--- a/clients/client-waf-regional/package.json
+++ b/clients/client-waf-regional/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-waf/package.json b/clients/client-waf/package.json
index 0a519c1f1a28a..18be953dc0603 100644
--- a/clients/client-waf/package.json
+++ b/clients/client-waf/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-wafv2/package.json b/clients/client-wafv2/package.json
index 70f9a9dfacc42..8d315842369cf 100644
--- a/clients/client-wafv2/package.json
+++ b/clients/client-wafv2/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-wellarchitected/package.json b/clients/client-wellarchitected/package.json
index 17e939f353fde..9db1d26e699bb 100644
--- a/clients/client-wellarchitected/package.json
+++ b/clients/client-wellarchitected/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-wisdom/package.json b/clients/client-wisdom/package.json
index 8ba3290b59594..2841c20e622cf 100644
--- a/clients/client-wisdom/package.json
+++ b/clients/client-wisdom/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-workdocs/package.json b/clients/client-workdocs/package.json
index aabcd51cf500d..a231b89c88bb9 100644
--- a/clients/client-workdocs/package.json
+++ b/clients/client-workdocs/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-worklink/package.json b/clients/client-worklink/package.json
index 1d671e06866e7..827dace9d08a1 100644
--- a/clients/client-worklink/package.json
+++ b/clients/client-worklink/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-workmail/package.json b/clients/client-workmail/package.json
index 8e3dffd647f15..9ff9776188bd8 100644
--- a/clients/client-workmail/package.json
+++ b/clients/client-workmail/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-workmailmessageflow/package.json b/clients/client-workmailmessageflow/package.json
index 4265a52521684..429633a2d7113 100644
--- a/clients/client-workmailmessageflow/package.json
+++ b/clients/client-workmailmessageflow/package.json
@@ -34,27 +34,27 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
- "@smithy/util-stream": "^2.0.15",
+ "@smithy/util-stream": "^2.0.16",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/clients/client-workspaces-web/package.json b/clients/client-workspaces-web/package.json
index 115d3e06a921e..ca2dfe6df490f 100644
--- a/clients/client-workspaces-web/package.json
+++ b/clients/client-workspaces-web/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/clients/client-workspaces/package.json b/clients/client-workspaces/package.json
index a80b61b7df523..7a1a609d021cc 100644
--- a/clients/client-workspaces/package.json
+++ b/clients/client-workspaces/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/clients/client-xray/package.json b/clients/client-xray/package.json
index b09c2a796205a..e6b86f304d67f 100644
--- a/clients/client-xray/package.json
+++ b/clients/client-xray/package.json
@@ -34,25 +34,25 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/lib/lib-dynamodb/package.json b/lib/lib-dynamodb/package.json
index 3b6b8a82fd044..77885868d7333 100644
--- a/lib/lib-dynamodb/package.json
+++ b/lib/lib-dynamodb/package.json
@@ -34,7 +34,7 @@
},
"devDependencies": {
"@aws-sdk/client-dynamodb": "*",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@tsconfig/recommended": "1.0.1",
"@types/node": "^14.14.31",
diff --git a/lib/lib-storage/package.json b/lib/lib-storage/package.json
index 0452f266c33e9..e1fb32c4c7b97 100644
--- a/lib/lib-storage/package.json
+++ b/lib/lib-storage/package.json
@@ -26,8 +26,8 @@
"license": "Apache-2.0",
"dependencies": {
"@smithy/abort-controller": "^2.0.1",
- "@smithy/middleware-endpoint": "^2.0.11",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/middleware-endpoint": "^2.1.0",
+ "@smithy/smithy-client": "^2.1.11",
"buffer": "5.6.0",
"events": "3.3.0",
"stream-browserify": "3.0.0",
diff --git a/packages/credential-provider-http/package.json b/packages/credential-provider-http/package.json
index 8cba6b6448ecc..f414a13ca06e1 100644
--- a/packages/credential-provider-http/package.json
+++ b/packages/credential-provider-http/package.json
@@ -27,7 +27,7 @@
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/types": "*",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/property-provider": "^2.0.0",
"@smithy/protocol-http": "^3.0.7",
diff --git a/packages/middleware-sdk-ec2/package.json b/packages/middleware-sdk-ec2/package.json
index 48a30056d0171..60a36b3ca2ab5 100644
--- a/packages/middleware-sdk-ec2/package.json
+++ b/packages/middleware-sdk-ec2/package.json
@@ -23,10 +23,10 @@
"dependencies": {
"@aws-sdk/types": "*",
"@aws-sdk/util-format-url": "*",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/protocol-http": "^3.0.7",
"@smithy/signature-v4": "^2.0.0",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
diff --git a/packages/middleware-sdk-rds/package.json b/packages/middleware-sdk-rds/package.json
index 1e2bd2960e14e..256912deff6d0 100644
--- a/packages/middleware-sdk-rds/package.json
+++ b/packages/middleware-sdk-rds/package.json
@@ -23,7 +23,7 @@
"dependencies": {
"@aws-sdk/types": "*",
"@aws-sdk/util-format-url": "*",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/protocol-http": "^3.0.7",
"@smithy/signature-v4": "^2.0.0",
"@smithy/types": "^2.3.5",
diff --git a/packages/middleware-sdk-s3/package.json b/packages/middleware-sdk-s3/package.json
index 889eff1898300..aa8687e482a6c 100644
--- a/packages/middleware-sdk-s3/package.json
+++ b/packages/middleware-sdk-s3/package.json
@@ -26,7 +26,7 @@
"@aws-sdk/types": "*",
"@aws-sdk/util-arn-parser": "*",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
diff --git a/packages/middleware-websocket/package.json b/packages/middleware-websocket/package.json
index 8b1706f5327be..09113737ca8d5 100644
--- a/packages/middleware-websocket/package.json
+++ b/packages/middleware-websocket/package.json
@@ -25,7 +25,7 @@
"@aws-sdk/types": "*",
"@aws-sdk/util-format-url": "*",
"@smithy/eventstream-serde-browser": "^2.0.11",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/protocol-http": "^3.0.7",
"@smithy/signature-v4": "^2.0.0",
"@smithy/types": "^2.3.5",
diff --git a/packages/s3-presigned-post/package.json b/packages/s3-presigned-post/package.json
index 9376d2424be0e..077f842ed45ec 100644
--- a/packages/s3-presigned-post/package.json
+++ b/packages/s3-presigned-post/package.json
@@ -25,7 +25,7 @@
"@aws-sdk/client-s3": "*",
"@aws-sdk/types": "*",
"@aws-sdk/util-format-url": "*",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/signature-v4": "^2.0.0",
"@smithy/types": "^2.3.5",
"@smithy/util-hex-encoding": "^2.0.0",
diff --git a/packages/s3-request-presigner/package.json b/packages/s3-request-presigner/package.json
index a78944ed447b8..c48627e8f7529 100644
--- a/packages/s3-request-presigner/package.json
+++ b/packages/s3-request-presigner/package.json
@@ -24,9 +24,9 @@
"@aws-sdk/signature-v4-multi-region": "*",
"@aws-sdk/types": "*",
"@aws-sdk/util-format-url": "*",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
diff --git a/packages/smithy-client/package.json b/packages/smithy-client/package.json
index b122be693b16a..a01a401044cbc 100644
--- a/packages/smithy-client/package.json
+++ b/packages/smithy-client/package.json
@@ -22,7 +22,7 @@
},
"license": "Apache-2.0",
"dependencies": {
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"tslib": "^2.5.0"
},
"engines": {
diff --git a/packages/token-providers/package.json b/packages/token-providers/package.json
index 1a3652cb58a85..9824f8bab7c6e 100644
--- a/packages/token-providers/package.json
+++ b/packages/token-providers/package.json
@@ -38,11 +38,11 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
- "@smithy/middleware-endpoint": "^2.0.11",
+ "@smithy/middleware-endpoint": "^2.1.0",
"@smithy/middleware-retry": "^2.0.16",
"@smithy/middleware-serde": "^2.0.11",
"@smithy/middleware-stack": "^2.0.5",
@@ -51,14 +51,14 @@
"@smithy/property-provider": "^2.0.0",
"@smithy/protocol-http": "^3.0.7",
"@smithy/shared-ini-file-loader": "^2.0.6",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
diff --git a/packages/util-create-request/package.json b/packages/util-create-request/package.json
index 4e9750255f558..e8ecb62908a7d 100644
--- a/packages/util-create-request/package.json
+++ b/packages/util-create-request/package.json
@@ -23,7 +23,7 @@
"dependencies": {
"@aws-sdk/types": "*",
"@smithy/middleware-stack": "^2.0.5",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"tslib": "^2.5.0"
},
diff --git a/private/aws-client-api-test/package.json b/private/aws-client-api-test/package.json
index d91791707aecf..079cb3d9ff61f 100644
--- a/private/aws-client-api-test/package.json
+++ b/private/aws-client-api-test/package.json
@@ -25,14 +25,14 @@
"@smithy/middleware-retry": "^2.0.16",
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
- "@smithy/util-stream": "^2.0.15",
+ "@smithy/util-stream": "^2.0.16",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/private/aws-echo-service/package.json b/private/aws-echo-service/package.json
index 9dc37e9492cd4..1ca28c77fdc14 100644
--- a/private/aws-echo-service/package.json
+++ b/private/aws-echo-service/package.json
@@ -28,7 +28,7 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
@@ -38,14 +38,14 @@
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/private/aws-middleware-test/package.json b/private/aws-middleware-test/package.json
index 20088fa40c221..e5e66e425d1df 100644
--- a/private/aws-middleware-test/package.json
+++ b/private/aws-middleware-test/package.json
@@ -27,7 +27,7 @@
"@aws-sdk/client-xray": "*",
"@smithy/protocol-http": "^3.0.7",
"@smithy/types": "^2.3.5",
- "@smithy/util-stream": "^2.0.15",
+ "@smithy/util-stream": "^2.0.16",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/private/aws-protocoltests-ec2/package.json b/private/aws-protocoltests-ec2/package.json
index fcb56b97d2a83..3d531ef057b4e 100644
--- a/private/aws-protocoltests-ec2/package.json
+++ b/private/aws-protocoltests-ec2/package.json
@@ -28,7 +28,7 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
@@ -38,14 +38,14 @@
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"fast-xml-parser": "4.2.5",
diff --git a/private/aws-protocoltests-json-10/package.json b/private/aws-protocoltests-json-10/package.json
index e434343493209..816ddb89e7049 100644
--- a/private/aws-protocoltests-json-10/package.json
+++ b/private/aws-protocoltests-json-10/package.json
@@ -28,7 +28,7 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
@@ -38,14 +38,14 @@
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/private/aws-protocoltests-json/package.json b/private/aws-protocoltests-json/package.json
index 9d438fc1e1397..44603d281b819 100644
--- a/private/aws-protocoltests-json/package.json
+++ b/private/aws-protocoltests-json/package.json
@@ -31,7 +31,7 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
@@ -41,14 +41,14 @@
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
diff --git a/private/aws-protocoltests-query/package.json b/private/aws-protocoltests-query/package.json
index fc1d091369260..4883af9d9fb38 100644
--- a/private/aws-protocoltests-query/package.json
+++ b/private/aws-protocoltests-query/package.json
@@ -28,7 +28,7 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
@@ -38,14 +38,14 @@
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
"fast-xml-parser": "4.2.5",
diff --git a/private/aws-protocoltests-restjson/package.json b/private/aws-protocoltests-restjson/package.json
index 94346d104c578..60a105c633c3a 100644
--- a/private/aws-protocoltests-restjson/package.json
+++ b/private/aws-protocoltests-restjson/package.json
@@ -28,7 +28,7 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-blob-browser": "^2.0.11",
"@smithy/hash-node": "^2.0.11",
"@smithy/hash-stream-node": "^2.0.11",
@@ -43,16 +43,16 @@
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
"@smithy/querystring-builder": "^2.0.11",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
- "@smithy/util-stream": "^2.0.15",
+ "@smithy/util-stream": "^2.0.16",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
diff --git a/private/aws-protocoltests-restxml/package.json b/private/aws-protocoltests-restxml/package.json
index ccdb7621e1db9..d10e0729d1d6c 100644
--- a/private/aws-protocoltests-restxml/package.json
+++ b/private/aws-protocoltests-restxml/package.json
@@ -29,7 +29,7 @@
"@aws-sdk/util-user-agent-node": "*",
"@aws-sdk/xml-builder": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
@@ -40,16 +40,16 @@
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
"@smithy/querystring-builder": "^2.0.11",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
- "@smithy/util-stream": "^2.0.15",
+ "@smithy/util-stream": "^2.0.16",
"@smithy/util-utf8": "^2.0.0",
"entities": "2.2.0",
"fast-xml-parser": "4.2.5",
diff --git a/private/aws-restjson-server/package.json b/private/aws-restjson-server/package.json
index d044c435743ed..f0903c1996ccc 100644
--- a/private/aws-restjson-server/package.json
+++ b/private/aws-restjson-server/package.json
@@ -23,7 +23,7 @@
"@aws-sdk/types": "*",
"@aws-smithy/server-common": "1.0.0-alpha.10",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
@@ -32,14 +32,14 @@
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/private/aws-restjson-validation-server/package.json b/private/aws-restjson-validation-server/package.json
index 1f9e59f075c02..fcb850b4ed434 100644
--- a/private/aws-restjson-validation-server/package.json
+++ b/private/aws-restjson-validation-server/package.json
@@ -23,7 +23,7 @@
"@aws-sdk/types": "*",
"@aws-smithy/server-common": "1.0.0-alpha.10",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
@@ -32,14 +32,14 @@
"@smithy/middleware-stack": "^2.0.5",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-utf8": "^2.0.0",
"tslib": "^2.5.0"
},
diff --git a/private/weather/package.json b/private/weather/package.json
index f025c413892da..dac554f91f3be 100644
--- a/private/weather/package.json
+++ b/private/weather/package.json
@@ -32,7 +32,7 @@
"@aws-sdk/util-user-agent-browser": "*",
"@aws-sdk/util-user-agent-node": "*",
"@smithy/config-resolver": "^2.0.14",
- "@smithy/fetch-http-handler": "^2.2.2",
+ "@smithy/fetch-http-handler": "^2.2.3",
"@smithy/hash-node": "^2.0.11",
"@smithy/invalid-dependency": "^2.0.11",
"@smithy/middleware-content-length": "^2.0.13",
@@ -42,14 +42,14 @@
"@smithy/node-config-provider": "^2.1.1",
"@smithy/node-http-handler": "^2.1.7",
"@smithy/protocol-http": "^3.0.7",
- "@smithy/smithy-client": "^2.1.10",
+ "@smithy/smithy-client": "^2.1.11",
"@smithy/types": "^2.3.5",
"@smithy/url-parser": "^2.0.11",
"@smithy/util-base64": "^2.0.0",
"@smithy/util-body-length-browser": "^2.0.0",
"@smithy/util-body-length-node": "^2.1.0",
- "@smithy/util-defaults-mode-browser": "^2.0.14",
- "@smithy/util-defaults-mode-node": "^2.0.18",
+ "@smithy/util-defaults-mode-browser": "^2.0.15",
+ "@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-middleware": "^2.0.4",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
diff --git a/scripts/generate-clients/config.js b/scripts/generate-clients/config.js
index 6c74aaa314a05..0f7f6a6c01567 100644
--- a/scripts/generate-clients/config.js
+++ b/scripts/generate-clients/config.js
@@ -1,5 +1,5 @@
// Update this commit when taking up new changes from smithy-typescript.
module.exports = {
// Use full commit hash as we explicitly fetch it.
- SMITHY_TS_COMMIT: "5fb6d4c68777a3d358158eddcb18d22da3fd5c8d",
+ SMITHY_TS_COMMIT: "fcc0c4602ff33b3f3e00e4ced42f85ffa57e38bc",
};
diff --git a/yarn.lock b/yarn.lock
index 416a92e28f8ff..45b344ab0efc4 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -110,25 +110,25 @@
"@aws-sdk/util-user-agent-browser" "*"
"@aws-sdk/util-user-agent-node" "*"
"@smithy/config-resolver" "^2.0.14"
- "@smithy/fetch-http-handler" "^2.2.2"
+ "@smithy/fetch-http-handler" "^2.2.3"
"@smithy/hash-node" "^2.0.11"
"@smithy/invalid-dependency" "^2.0.11"
"@smithy/middleware-content-length" "^2.0.13"
- "@smithy/middleware-endpoint" "^2.0.11"
+ "@smithy/middleware-endpoint" "^2.1.0"
"@smithy/middleware-retry" "^2.0.16"
"@smithy/middleware-serde" "^2.0.11"
"@smithy/middleware-stack" "^2.0.5"
"@smithy/node-config-provider" "^2.1.1"
"@smithy/node-http-handler" "^2.1.7"
"@smithy/protocol-http" "^3.0.7"
- "@smithy/smithy-client" "^2.1.10"
+ "@smithy/smithy-client" "^2.1.11"
"@smithy/types" "^2.3.5"
"@smithy/url-parser" "^2.0.11"
"@smithy/util-base64" "^2.0.0"
"@smithy/util-body-length-browser" "^2.0.0"
"@smithy/util-body-length-node" "^2.1.0"
- "@smithy/util-defaults-mode-browser" "^2.0.14"
- "@smithy/util-defaults-mode-node" "^2.0.18"
+ "@smithy/util-defaults-mode-browser" "^2.0.15"
+ "@smithy/util-defaults-mode-node" "^2.0.19"
"@smithy/util-retry" "^2.0.4"
"@smithy/util-utf8" "^2.0.0"
fast-xml-parser "4.2.5"
@@ -2922,10 +2922,10 @@
"@smithy/types" "^2.3.5"
tslib "^2.5.0"
-"@smithy/fetch-http-handler@^2.2.2":
- version "2.2.2"
- resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-2.2.2.tgz#c698c24ee75b7b8b6ff7bffb7c26ae9b3363d8cc"
- integrity sha512-K7aRtRuaBjzlk+jWWeyfDTLAmRRvmA4fU8eHUXtjsuEDgi3f356ZE32VD2ssxIH13RCLVZbXMt5h7wHzYiSuVA==
+"@smithy/fetch-http-handler@^2.2.3":
+ version "2.2.3"
+ resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-2.2.3.tgz#86445f63dbf09ec331b6199fc2f0f44fec1b1417"
+ integrity sha512-0G9sePU+0R+8d7cie+OXzNbbkjnD4RfBlVCs46ZEuQAMcxK8OniemYXSSkOc80CCk8Il4DnlYZcUSvsIs2OB2w==
dependencies:
"@smithy/protocol-http" "^3.0.7"
"@smithy/querystring-builder" "^2.0.11"
@@ -3005,12 +3005,13 @@
"@smithy/types" "^2.3.5"
tslib "^2.5.0"
-"@smithy/middleware-endpoint@^2.0.11":
- version "2.0.11"
- resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-2.0.11.tgz#c3c380ef13c43ee7443ebb4b3e2b6bb26464ff87"
- integrity sha512-mCugsvB15up6fqpzUEpMT4CuJmFkEI+KcozA7QMzYguXCaIilyMKsyxgamwmr+o7lo3QdjN0//XLQ9bWFL129g==
+"@smithy/middleware-endpoint@^2.1.0":
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-2.1.0.tgz#847d8640759f60fca29d3249370d0582136535aa"
+ integrity sha512-e6HZbfrp9CNTJqIPSgkydB9mNQXiq5pkHF3ZB6rOzPPR9PkJBoGFo9TcM7FaaKFUaH4Kc20AX6WwwVyIlNhXTA==
dependencies:
"@smithy/middleware-serde" "^2.0.11"
+ "@smithy/node-config-provider" "^2.1.1"
"@smithy/types" "^2.3.5"
"@smithy/url-parser" "^2.0.11"
"@smithy/util-middleware" "^2.0.4"
@@ -3186,14 +3187,14 @@
"@smithy/util-utf8" "^2.0.0"
tslib "^2.5.0"
-"@smithy/smithy-client@^2.1.10":
- version "2.1.10"
- resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-2.1.10.tgz#cfe93559dbec1511c434c8e94e1659ec74cf54f7"
- integrity sha512-2OEmZDiW1Z196QHuQZ5M6cBE8FCSG0H2HADP1G+DY8P3agsvb0YJyfhyKuJbxIQy15tr3eDAK6FOrlbxgKOOew==
+"@smithy/smithy-client@^2.1.11":
+ version "2.1.11"
+ resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-2.1.11.tgz#7e27c9969048952703ae493311245d1af62c73b8"
+ integrity sha512-okjMbuBBCTiieK665OFN/ap6u9+Z9z55PMphS5FYCsS6Zfp137Q3qlnt0OgBAnUVnH/mNGyoJV0LBX9gkTWptg==
dependencies:
"@smithy/middleware-stack" "^2.0.5"
"@smithy/types" "^2.3.5"
- "@smithy/util-stream" "^2.0.15"
+ "@smithy/util-stream" "^2.0.16"
tslib "^2.5.0"
"@smithy/types@^1.2.0":
@@ -3279,27 +3280,27 @@
dependencies:
tslib "^2.5.0"
-"@smithy/util-defaults-mode-browser@^2.0.14":
- version "2.0.14"
- resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-2.0.14.tgz#e1c6f67277e5887eed8290d24c18175f2ae22b3d"
- integrity sha512-NupG7SWUucm3vJrvlpt9jG1XeoPJphjcivgcUUXhDJbUPy4F04LhlTiAhWSzwlCNcF8OJsMvZ/DWbpYD3pselw==
+"@smithy/util-defaults-mode-browser@^2.0.15":
+ version "2.0.15"
+ resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-2.0.15.tgz#0ab82d6e88dbebcca5e570678790a0160bd2619c"
+ integrity sha512-2raMZOYKSuke7QlDg/HDcxQdrp0zteJ8z+S0B9Rn23J55ZFNK1+IjG4HkN6vo/0u3Xy/JOdJ93ibiBSB8F7kOw==
dependencies:
"@smithy/property-provider" "^2.0.12"
- "@smithy/smithy-client" "^2.1.10"
+ "@smithy/smithy-client" "^2.1.11"
"@smithy/types" "^2.3.5"
bowser "^2.11.0"
tslib "^2.5.0"
-"@smithy/util-defaults-mode-node@^2.0.18":
- version "2.0.18"
- resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-2.0.18.tgz#29c640c363e4cb2b99c93c4c2a34e2297c5276f7"
- integrity sha512-+3jMom/b/Cdp21tDnY4vKu249Al+G/P0HbRbct7/aSZDlROzv1tksaYukon6UUv7uoHn+/McqnsvqZHLlqvQ0g==
+"@smithy/util-defaults-mode-node@^2.0.19":
+ version "2.0.19"
+ resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-2.0.19.tgz#8996479c76dd68baae65fd863180a802a66fdf5d"
+ integrity sha512-7pScU4jBFADB2MBYKM3zb5onMh6Nn0X3IfaFVLYPyCarTIZDLUtUl1GtruzEUJPmDzP+uGeqOtU589HDY0Ni6g==
dependencies:
"@smithy/config-resolver" "^2.0.14"
"@smithy/credential-provider-imds" "^2.0.16"
"@smithy/node-config-provider" "^2.1.1"
"@smithy/property-provider" "^2.0.12"
- "@smithy/smithy-client" "^2.1.10"
+ "@smithy/smithy-client" "^2.1.11"
"@smithy/types" "^2.3.5"
tslib "^2.5.0"
@@ -3334,12 +3335,12 @@
"@smithy/types" "^2.3.5"
tslib "^2.5.0"
-"@smithy/util-stream@^2.0.15":
- version "2.0.15"
- resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-2.0.15.tgz#8c08f135535484f7a11ced4c697a5d901e316b3a"
- integrity sha512-A/hkYJPH2N5MCWYvky4tTpQihpYAEzqnUfxDyG3L/yMndy/2sLvxnyQal9Opuj1e9FiKSTeMyjnU9xxZGs0mRw==
+"@smithy/util-stream@^2.0.16":
+ version "2.0.16"
+ resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-2.0.16.tgz#8501e14cfcac70913d2c4c01a8cfbf7fc73bc041"
+ integrity sha512-b5ZSRh1KzUzC7LoJcpfk7+iXGoRr3WylEfmPd4FnBLm90OwxSB9VgK1fDZwicfYxSEvWHdYXgvvjPtenEYBBhw==
dependencies:
- "@smithy/fetch-http-handler" "^2.2.2"
+ "@smithy/fetch-http-handler" "^2.2.3"
"@smithy/node-http-handler" "^2.1.7"
"@smithy/types" "^2.3.5"
"@smithy/util-base64" "^2.0.0"
From 9c57ae3280837f11350664050bb11d0ba768f149 Mon Sep 17 00:00:00 2001
From: awstools
Date: Thu, 12 Oct 2023 18:24:07 +0000
Subject: [PATCH 14/35] feat(client-ec2): This release adds Ubuntu Pro as a
supported platform for On-Demand Capacity Reservations and adds support for
setting an Amazon Machine Image (AMI) to disabled state. Disabling the AMI
makes it private if it was previously shared, and prevents new EC2 instance
launches from it.
---
clients/client-ec2/README.md | 16 ++
clients/client-ec2/src/EC2.ts | 30 +++
clients/client-ec2/src/EC2Client.ts | 6 +
.../CreateCapacityReservationCommand.ts | 4 +-
.../CreateCapacityReservationFleetCommand.ts | 4 +-
...escribeCapacityReservationFleetsCommand.ts | 2 +-
.../DescribeCapacityReservationsCommand.ts | 2 +-
.../src/commands/DescribeImagesCommand.ts | 4 +-
.../src/commands/DisableImageCommand.ts | 156 ++++++++++++++
.../src/commands/EnableImageCommand.ts | 153 +++++++++++++
...sitGatewayRouteTablePropagationsCommand.ts | 6 +-
.../GetVerifiedAccessEndpointPolicyCommand.ts | 2 +-
clients/client-ec2/src/commands/index.ts | 2 +
clients/client-ec2/src/models/models_0.ts | 1 +
clients/client-ec2/src/models/models_3.ts | 24 ++-
clients/client-ec2/src/models/models_4.ts | 8 +-
clients/client-ec2/src/models/models_5.ts | 149 ++++++-------
clients/client-ec2/src/models/models_6.ts | 201 ++++++++----------
clients/client-ec2/src/models/models_7.ts | 115 +++++++++-
clients/client-ec2/src/protocols/Aws_ec2.ts | 192 ++++++++++++++++-
codegen/sdk-codegen/aws-models/ec2.json | 150 ++++++++++++-
21 files changed, 998 insertions(+), 229 deletions(-)
create mode 100644 clients/client-ec2/src/commands/DisableImageCommand.ts
create mode 100644 clients/client-ec2/src/commands/EnableImageCommand.ts
diff --git a/clients/client-ec2/README.md b/clients/client-ec2/README.md
index 20ef2e07d023e..8c9fb98190d87 100644
--- a/clients/client-ec2/README.md
+++ b/clients/client-ec2/README.md
@@ -3212,6 +3212,14 @@ DisableFastSnapshotRestores
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ec2/classes/disablefastsnapshotrestorescommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ec2/interfaces/disablefastsnapshotrestorescommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ec2/interfaces/disablefastsnapshotrestorescommandoutput.html)
+
+
+
+DisableImage
+
+
+[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ec2/classes/disableimagecommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ec2/interfaces/disableimagecommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ec2/interfaces/disableimagecommandoutput.html)
+
@@ -3428,6 +3436,14 @@ EnableFastSnapshotRestores
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ec2/classes/enablefastsnapshotrestorescommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ec2/interfaces/enablefastsnapshotrestorescommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ec2/interfaces/enablefastsnapshotrestorescommandoutput.html)
+
+
+
+EnableImage
+
+
+[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ec2/classes/enableimagecommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ec2/interfaces/enableimagecommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ec2/interfaces/enableimagecommandoutput.html)
+
diff --git a/clients/client-ec2/src/EC2.ts b/clients/client-ec2/src/EC2.ts
index 4088f6e4adc5a..6bc86abde95c3 100644
--- a/clients/client-ec2/src/EC2.ts
+++ b/clients/client-ec2/src/EC2.ts
@@ -1828,6 +1828,11 @@ import {
DisableImageBlockPublicAccessCommandInput,
DisableImageBlockPublicAccessCommandOutput,
} from "./commands/DisableImageBlockPublicAccessCommand";
+import {
+ DisableImageCommand,
+ DisableImageCommandInput,
+ DisableImageCommandOutput,
+} from "./commands/DisableImageCommand";
import {
DisableImageDeprecationCommand,
DisableImageDeprecationCommandInput,
@@ -1963,6 +1968,7 @@ import {
EnableImageBlockPublicAccessCommandInput,
EnableImageBlockPublicAccessCommandOutput,
} from "./commands/EnableImageBlockPublicAccessCommand";
+import { EnableImageCommand, EnableImageCommandInput, EnableImageCommandOutput } from "./commands/EnableImageCommand";
import {
EnableImageDeprecationCommand,
EnableImageDeprecationCommandInput,
@@ -3299,6 +3305,7 @@ const commands = {
DisableEbsEncryptionByDefaultCommand,
DisableFastLaunchCommand,
DisableFastSnapshotRestoresCommand,
+ DisableImageCommand,
DisableImageBlockPublicAccessCommand,
DisableImageDeprecationCommand,
DisableIpamOrganizationAdminAccountCommand,
@@ -3326,6 +3333,7 @@ const commands = {
EnableEbsEncryptionByDefaultCommand,
EnableFastLaunchCommand,
EnableFastSnapshotRestoresCommand,
+ EnableImageCommand,
EnableImageBlockPublicAccessCommand,
EnableImageDeprecationCommand,
EnableIpamOrganizationAdminAccountCommand,
@@ -9636,6 +9644,17 @@ export interface EC2 {
cb: (err: any, data?: DisableFastSnapshotRestoresCommandOutput) => void
): void;
+ /**
+ * @see {@link DisableImageCommand}
+ */
+ disableImage(args: DisableImageCommandInput, options?: __HttpHandlerOptions): Promise;
+ disableImage(args: DisableImageCommandInput, cb: (err: any, data?: DisableImageCommandOutput) => void): void;
+ disableImage(
+ args: DisableImageCommandInput,
+ options: __HttpHandlerOptions,
+ cb: (err: any, data?: DisableImageCommandOutput) => void
+ ): void;
+
/**
* @see {@link DisableImageBlockPublicAccessCommand}
*/
@@ -10095,6 +10114,17 @@ export interface EC2 {
cb: (err: any, data?: EnableFastSnapshotRestoresCommandOutput) => void
): void;
+ /**
+ * @see {@link EnableImageCommand}
+ */
+ enableImage(args: EnableImageCommandInput, options?: __HttpHandlerOptions): Promise;
+ enableImage(args: EnableImageCommandInput, cb: (err: any, data?: EnableImageCommandOutput) => void): void;
+ enableImage(
+ args: EnableImageCommandInput,
+ options: __HttpHandlerOptions,
+ cb: (err: any, data?: EnableImageCommandOutput) => void
+ ): void;
+
/**
* @see {@link EnableImageBlockPublicAccessCommand}
*/
diff --git a/clients/client-ec2/src/EC2Client.ts b/clients/client-ec2/src/EC2Client.ts
index e6b7163483959..1edc6509b6ce1 100644
--- a/clients/client-ec2/src/EC2Client.ts
+++ b/clients/client-ec2/src/EC2Client.ts
@@ -1297,6 +1297,7 @@ import {
DisableImageBlockPublicAccessCommandInput,
DisableImageBlockPublicAccessCommandOutput,
} from "./commands/DisableImageBlockPublicAccessCommand";
+import { DisableImageCommandInput, DisableImageCommandOutput } from "./commands/DisableImageCommand";
import {
DisableImageDeprecationCommandInput,
DisableImageDeprecationCommandOutput,
@@ -1402,6 +1403,7 @@ import {
EnableImageBlockPublicAccessCommandInput,
EnableImageBlockPublicAccessCommandOutput,
} from "./commands/EnableImageBlockPublicAccessCommand";
+import { EnableImageCommandInput, EnableImageCommandOutput } from "./commands/EnableImageCommand";
import {
EnableImageDeprecationCommandInput,
EnableImageDeprecationCommandOutput,
@@ -2461,6 +2463,7 @@ export type ServiceInputTypes =
| DisableFastLaunchCommandInput
| DisableFastSnapshotRestoresCommandInput
| DisableImageBlockPublicAccessCommandInput
+ | DisableImageCommandInput
| DisableImageDeprecationCommandInput
| DisableIpamOrganizationAdminAccountCommandInput
| DisableSerialConsoleAccessCommandInput
@@ -2488,6 +2491,7 @@ export type ServiceInputTypes =
| EnableFastLaunchCommandInput
| EnableFastSnapshotRestoresCommandInput
| EnableImageBlockPublicAccessCommandInput
+ | EnableImageCommandInput
| EnableImageDeprecationCommandInput
| EnableIpamOrganizationAdminAccountCommandInput
| EnableReachabilityAnalyzerOrganizationSharingCommandInput
@@ -3063,6 +3067,7 @@ export type ServiceOutputTypes =
| DisableFastLaunchCommandOutput
| DisableFastSnapshotRestoresCommandOutput
| DisableImageBlockPublicAccessCommandOutput
+ | DisableImageCommandOutput
| DisableImageDeprecationCommandOutput
| DisableIpamOrganizationAdminAccountCommandOutput
| DisableSerialConsoleAccessCommandOutput
@@ -3090,6 +3095,7 @@ export type ServiceOutputTypes =
| EnableFastLaunchCommandOutput
| EnableFastSnapshotRestoresCommandOutput
| EnableImageBlockPublicAccessCommandOutput
+ | EnableImageCommandOutput
| EnableImageDeprecationCommandOutput
| EnableIpamOrganizationAdminAccountCommandOutput
| EnableReachabilityAnalyzerOrganizationSharingCommandOutput
diff --git a/clients/client-ec2/src/commands/CreateCapacityReservationCommand.ts b/clients/client-ec2/src/commands/CreateCapacityReservationCommand.ts
index 1fbe4f892dab3..babd51a69a296 100644
--- a/clients/client-ec2/src/commands/CreateCapacityReservationCommand.ts
+++ b/clients/client-ec2/src/commands/CreateCapacityReservationCommand.ts
@@ -61,7 +61,7 @@ export interface CreateCapacityReservationCommandOutput extends CreateCapacityRe
* const input = { // CreateCapacityReservationRequest
* ClientToken: "STRING_VALUE",
* InstanceType: "STRING_VALUE", // required
- * InstancePlatform: "Linux/UNIX" || "Red Hat Enterprise Linux" || "SUSE Linux" || "Windows" || "Windows with SQL Server" || "Windows with SQL Server Enterprise" || "Windows with SQL Server Standard" || "Windows with SQL Server Web" || "Linux with SQL Server Standard" || "Linux with SQL Server Web" || "Linux with SQL Server Enterprise" || "RHEL with SQL Server Standard" || "RHEL with SQL Server Enterprise" || "RHEL with SQL Server Web" || "RHEL with HA" || "RHEL with HA and SQL Server Standard" || "RHEL with HA and SQL Server Enterprise", // required
+ * InstancePlatform: "Linux/UNIX" || "Red Hat Enterprise Linux" || "SUSE Linux" || "Windows" || "Windows with SQL Server" || "Windows with SQL Server Enterprise" || "Windows with SQL Server Standard" || "Windows with SQL Server Web" || "Linux with SQL Server Standard" || "Linux with SQL Server Web" || "Linux with SQL Server Enterprise" || "RHEL with SQL Server Standard" || "RHEL with SQL Server Enterprise" || "RHEL with SQL Server Web" || "RHEL with HA" || "RHEL with HA and SQL Server Standard" || "RHEL with HA and SQL Server Enterprise" || "Ubuntu Pro", // required
* AvailabilityZone: "STRING_VALUE",
* AvailabilityZoneId: "STRING_VALUE",
* Tenancy: "default" || "dedicated",
@@ -95,7 +95,7 @@ export interface CreateCapacityReservationCommandOutput extends CreateCapacityRe
* // CapacityReservationArn: "STRING_VALUE",
* // AvailabilityZoneId: "STRING_VALUE",
* // InstanceType: "STRING_VALUE",
- * // InstancePlatform: "Linux/UNIX" || "Red Hat Enterprise Linux" || "SUSE Linux" || "Windows" || "Windows with SQL Server" || "Windows with SQL Server Enterprise" || "Windows with SQL Server Standard" || "Windows with SQL Server Web" || "Linux with SQL Server Standard" || "Linux with SQL Server Web" || "Linux with SQL Server Enterprise" || "RHEL with SQL Server Standard" || "RHEL with SQL Server Enterprise" || "RHEL with SQL Server Web" || "RHEL with HA" || "RHEL with HA and SQL Server Standard" || "RHEL with HA and SQL Server Enterprise",
+ * // InstancePlatform: "Linux/UNIX" || "Red Hat Enterprise Linux" || "SUSE Linux" || "Windows" || "Windows with SQL Server" || "Windows with SQL Server Enterprise" || "Windows with SQL Server Standard" || "Windows with SQL Server Web" || "Linux with SQL Server Standard" || "Linux with SQL Server Web" || "Linux with SQL Server Enterprise" || "RHEL with SQL Server Standard" || "RHEL with SQL Server Enterprise" || "RHEL with SQL Server Web" || "RHEL with HA" || "RHEL with HA and SQL Server Standard" || "RHEL with HA and SQL Server Enterprise" || "Ubuntu Pro",
* // AvailabilityZone: "STRING_VALUE",
* // Tenancy: "default" || "dedicated",
* // TotalInstanceCount: Number("int"),
diff --git a/clients/client-ec2/src/commands/CreateCapacityReservationFleetCommand.ts b/clients/client-ec2/src/commands/CreateCapacityReservationFleetCommand.ts
index 3e6a94cb163cf..f64f3b7fb7414 100644
--- a/clients/client-ec2/src/commands/CreateCapacityReservationFleetCommand.ts
+++ b/clients/client-ec2/src/commands/CreateCapacityReservationFleetCommand.ts
@@ -56,7 +56,7 @@ export interface CreateCapacityReservationFleetCommandOutput
* InstanceTypeSpecifications: [ // ReservationFleetInstanceSpecificationList // required
* { // ReservationFleetInstanceSpecification
* InstanceType: "a1.medium" || "a1.large" || "a1.xlarge" || "a1.2xlarge" || "a1.4xlarge" || "a1.metal" || "c1.medium" || "c1.xlarge" || "c3.large" || "c3.xlarge" || "c3.2xlarge" || "c3.4xlarge" || "c3.8xlarge" || "c4.large" || "c4.xlarge" || "c4.2xlarge" || "c4.4xlarge" || "c4.8xlarge" || "c5.large" || "c5.xlarge" || "c5.2xlarge" || "c5.4xlarge" || "c5.9xlarge" || "c5.12xlarge" || "c5.18xlarge" || "c5.24xlarge" || "c5.metal" || "c5a.large" || "c5a.xlarge" || "c5a.2xlarge" || "c5a.4xlarge" || "c5a.8xlarge" || "c5a.12xlarge" || "c5a.16xlarge" || "c5a.24xlarge" || "c5ad.large" || "c5ad.xlarge" || "c5ad.2xlarge" || "c5ad.4xlarge" || "c5ad.8xlarge" || "c5ad.12xlarge" || "c5ad.16xlarge" || "c5ad.24xlarge" || "c5d.large" || "c5d.xlarge" || "c5d.2xlarge" || "c5d.4xlarge" || "c5d.9xlarge" || "c5d.12xlarge" || "c5d.18xlarge" || "c5d.24xlarge" || "c5d.metal" || "c5n.large" || "c5n.xlarge" || "c5n.2xlarge" || "c5n.4xlarge" || "c5n.9xlarge" || "c5n.18xlarge" || "c5n.metal" || "c6g.medium" || "c6g.large" || "c6g.xlarge" || "c6g.2xlarge" || "c6g.4xlarge" || "c6g.8xlarge" || "c6g.12xlarge" || "c6g.16xlarge" || "c6g.metal" || "c6gd.medium" || "c6gd.large" || "c6gd.xlarge" || "c6gd.2xlarge" || "c6gd.4xlarge" || "c6gd.8xlarge" || "c6gd.12xlarge" || "c6gd.16xlarge" || "c6gd.metal" || "c6gn.medium" || "c6gn.large" || "c6gn.xlarge" || "c6gn.2xlarge" || "c6gn.4xlarge" || "c6gn.8xlarge" || "c6gn.12xlarge" || "c6gn.16xlarge" || "c6i.large" || "c6i.xlarge" || "c6i.2xlarge" || "c6i.4xlarge" || "c6i.8xlarge" || "c6i.12xlarge" || "c6i.16xlarge" || "c6i.24xlarge" || "c6i.32xlarge" || "c6i.metal" || "cc1.4xlarge" || "cc2.8xlarge" || "cg1.4xlarge" || "cr1.8xlarge" || "d2.xlarge" || "d2.2xlarge" || "d2.4xlarge" || "d2.8xlarge" || "d3.xlarge" || "d3.2xlarge" || "d3.4xlarge" || "d3.8xlarge" || "d3en.xlarge" || "d3en.2xlarge" || "d3en.4xlarge" || "d3en.6xlarge" || "d3en.8xlarge" || "d3en.12xlarge" || "dl1.24xlarge" || "f1.2xlarge" || "f1.4xlarge" || "f1.16xlarge" || "g2.2xlarge" || "g2.8xlarge" || "g3.4xlarge" || "g3.8xlarge" || "g3.16xlarge" || "g3s.xlarge" || "g4ad.xlarge" || "g4ad.2xlarge" || "g4ad.4xlarge" || "g4ad.8xlarge" || "g4ad.16xlarge" || "g4dn.xlarge" || "g4dn.2xlarge" || "g4dn.4xlarge" || "g4dn.8xlarge" || "g4dn.12xlarge" || "g4dn.16xlarge" || "g4dn.metal" || "g5.xlarge" || "g5.2xlarge" || "g5.4xlarge" || "g5.8xlarge" || "g5.12xlarge" || "g5.16xlarge" || "g5.24xlarge" || "g5.48xlarge" || "g5g.xlarge" || "g5g.2xlarge" || "g5g.4xlarge" || "g5g.8xlarge" || "g5g.16xlarge" || "g5g.metal" || "hi1.4xlarge" || "hpc6a.48xlarge" || "hs1.8xlarge" || "h1.2xlarge" || "h1.4xlarge" || "h1.8xlarge" || "h1.16xlarge" || "i2.xlarge" || "i2.2xlarge" || "i2.4xlarge" || "i2.8xlarge" || "i3.large" || "i3.xlarge" || "i3.2xlarge" || "i3.4xlarge" || "i3.8xlarge" || "i3.16xlarge" || "i3.metal" || "i3en.large" || "i3en.xlarge" || "i3en.2xlarge" || "i3en.3xlarge" || "i3en.6xlarge" || "i3en.12xlarge" || "i3en.24xlarge" || "i3en.metal" || "im4gn.large" || "im4gn.xlarge" || "im4gn.2xlarge" || "im4gn.4xlarge" || "im4gn.8xlarge" || "im4gn.16xlarge" || "inf1.xlarge" || "inf1.2xlarge" || "inf1.6xlarge" || "inf1.24xlarge" || "is4gen.medium" || "is4gen.large" || "is4gen.xlarge" || "is4gen.2xlarge" || "is4gen.4xlarge" || "is4gen.8xlarge" || "m1.small" || "m1.medium" || "m1.large" || "m1.xlarge" || "m2.xlarge" || "m2.2xlarge" || "m2.4xlarge" || "m3.medium" || "m3.large" || "m3.xlarge" || "m3.2xlarge" || "m4.large" || "m4.xlarge" || "m4.2xlarge" || "m4.4xlarge" || "m4.10xlarge" || "m4.16xlarge" || "m5.large" || "m5.xlarge" || "m5.2xlarge" || "m5.4xlarge" || "m5.8xlarge" || "m5.12xlarge" || "m5.16xlarge" || "m5.24xlarge" || "m5.metal" || "m5a.large" || "m5a.xlarge" || "m5a.2xlarge" || "m5a.4xlarge" || "m5a.8xlarge" || "m5a.12xlarge" || "m5a.16xlarge" || "m5a.24xlarge" || "m5ad.large" || "m5ad.xlarge" || "m5ad.2xlarge" || "m5ad.4xlarge" || "m5ad.8xlarge" || "m5ad.12xlarge" || "m5ad.16xlarge" || "m5ad.24xlarge" || "m5d.large" || "m5d.xlarge" || "m5d.2xlarge" || "m5d.4xlarge" || "m5d.8xlarge" || "m5d.12xlarge" || "m5d.16xlarge" || "m5d.24xlarge" || "m5d.metal" || "m5dn.large" || "m5dn.xlarge" || "m5dn.2xlarge" || "m5dn.4xlarge" || "m5dn.8xlarge" || "m5dn.12xlarge" || "m5dn.16xlarge" || "m5dn.24xlarge" || "m5dn.metal" || "m5n.large" || "m5n.xlarge" || "m5n.2xlarge" || "m5n.4xlarge" || "m5n.8xlarge" || "m5n.12xlarge" || "m5n.16xlarge" || "m5n.24xlarge" || "m5n.metal" || "m5zn.large" || "m5zn.xlarge" || "m5zn.2xlarge" || "m5zn.3xlarge" || "m5zn.6xlarge" || "m5zn.12xlarge" || "m5zn.metal" || "m6a.large" || "m6a.xlarge" || "m6a.2xlarge" || "m6a.4xlarge" || "m6a.8xlarge" || "m6a.12xlarge" || "m6a.16xlarge" || "m6a.24xlarge" || "m6a.32xlarge" || "m6a.48xlarge" || "m6g.metal" || "m6g.medium" || "m6g.large" || "m6g.xlarge" || "m6g.2xlarge" || "m6g.4xlarge" || "m6g.8xlarge" || "m6g.12xlarge" || "m6g.16xlarge" || "m6gd.metal" || "m6gd.medium" || "m6gd.large" || "m6gd.xlarge" || "m6gd.2xlarge" || "m6gd.4xlarge" || "m6gd.8xlarge" || "m6gd.12xlarge" || "m6gd.16xlarge" || "m6i.large" || "m6i.xlarge" || "m6i.2xlarge" || "m6i.4xlarge" || "m6i.8xlarge" || "m6i.12xlarge" || "m6i.16xlarge" || "m6i.24xlarge" || "m6i.32xlarge" || "m6i.metal" || "mac1.metal" || "p2.xlarge" || "p2.8xlarge" || "p2.16xlarge" || "p3.2xlarge" || "p3.8xlarge" || "p3.16xlarge" || "p3dn.24xlarge" || "p4d.24xlarge" || "r3.large" || "r3.xlarge" || "r3.2xlarge" || "r3.4xlarge" || "r3.8xlarge" || "r4.large" || "r4.xlarge" || "r4.2xlarge" || "r4.4xlarge" || "r4.8xlarge" || "r4.16xlarge" || "r5.large" || "r5.xlarge" || "r5.2xlarge" || "r5.4xlarge" || "r5.8xlarge" || "r5.12xlarge" || "r5.16xlarge" || "r5.24xlarge" || "r5.metal" || "r5a.large" || "r5a.xlarge" || "r5a.2xlarge" || "r5a.4xlarge" || "r5a.8xlarge" || "r5a.12xlarge" || "r5a.16xlarge" || "r5a.24xlarge" || "r5ad.large" || "r5ad.xlarge" || "r5ad.2xlarge" || "r5ad.4xlarge" || "r5ad.8xlarge" || "r5ad.12xlarge" || "r5ad.16xlarge" || "r5ad.24xlarge" || "r5b.large" || "r5b.xlarge" || "r5b.2xlarge" || "r5b.4xlarge" || "r5b.8xlarge" || "r5b.12xlarge" || "r5b.16xlarge" || "r5b.24xlarge" || "r5b.metal" || "r5d.large" || "r5d.xlarge" || "r5d.2xlarge" || "r5d.4xlarge" || "r5d.8xlarge" || "r5d.12xlarge" || "r5d.16xlarge" || "r5d.24xlarge" || "r5d.metal" || "r5dn.large" || "r5dn.xlarge" || "r5dn.2xlarge" || "r5dn.4xlarge" || "r5dn.8xlarge" || "r5dn.12xlarge" || "r5dn.16xlarge" || "r5dn.24xlarge" || "r5dn.metal" || "r5n.large" || "r5n.xlarge" || "r5n.2xlarge" || "r5n.4xlarge" || "r5n.8xlarge" || "r5n.12xlarge" || "r5n.16xlarge" || "r5n.24xlarge" || "r5n.metal" || "r6g.medium" || "r6g.large" || "r6g.xlarge" || "r6g.2xlarge" || "r6g.4xlarge" || "r6g.8xlarge" || "r6g.12xlarge" || "r6g.16xlarge" || "r6g.metal" || "r6gd.medium" || "r6gd.large" || "r6gd.xlarge" || "r6gd.2xlarge" || "r6gd.4xlarge" || "r6gd.8xlarge" || "r6gd.12xlarge" || "r6gd.16xlarge" || "r6gd.metal" || "r6i.large" || "r6i.xlarge" || "r6i.2xlarge" || "r6i.4xlarge" || "r6i.8xlarge" || "r6i.12xlarge" || "r6i.16xlarge" || "r6i.24xlarge" || "r6i.32xlarge" || "r6i.metal" || "t1.micro" || "t2.nano" || "t2.micro" || "t2.small" || "t2.medium" || "t2.large" || "t2.xlarge" || "t2.2xlarge" || "t3.nano" || "t3.micro" || "t3.small" || "t3.medium" || "t3.large" || "t3.xlarge" || "t3.2xlarge" || "t3a.nano" || "t3a.micro" || "t3a.small" || "t3a.medium" || "t3a.large" || "t3a.xlarge" || "t3a.2xlarge" || "t4g.nano" || "t4g.micro" || "t4g.small" || "t4g.medium" || "t4g.large" || "t4g.xlarge" || "t4g.2xlarge" || "u-6tb1.56xlarge" || "u-6tb1.112xlarge" || "u-9tb1.112xlarge" || "u-12tb1.112xlarge" || "u-6tb1.metal" || "u-9tb1.metal" || "u-12tb1.metal" || "u-18tb1.metal" || "u-24tb1.metal" || "vt1.3xlarge" || "vt1.6xlarge" || "vt1.24xlarge" || "x1.16xlarge" || "x1.32xlarge" || "x1e.xlarge" || "x1e.2xlarge" || "x1e.4xlarge" || "x1e.8xlarge" || "x1e.16xlarge" || "x1e.32xlarge" || "x2iezn.2xlarge" || "x2iezn.4xlarge" || "x2iezn.6xlarge" || "x2iezn.8xlarge" || "x2iezn.12xlarge" || "x2iezn.metal" || "x2gd.medium" || "x2gd.large" || "x2gd.xlarge" || "x2gd.2xlarge" || "x2gd.4xlarge" || "x2gd.8xlarge" || "x2gd.12xlarge" || "x2gd.16xlarge" || "x2gd.metal" || "z1d.large" || "z1d.xlarge" || "z1d.2xlarge" || "z1d.3xlarge" || "z1d.6xlarge" || "z1d.12xlarge" || "z1d.metal" || "x2idn.16xlarge" || "x2idn.24xlarge" || "x2idn.32xlarge" || "x2iedn.xlarge" || "x2iedn.2xlarge" || "x2iedn.4xlarge" || "x2iedn.8xlarge" || "x2iedn.16xlarge" || "x2iedn.24xlarge" || "x2iedn.32xlarge" || "c6a.large" || "c6a.xlarge" || "c6a.2xlarge" || "c6a.4xlarge" || "c6a.8xlarge" || "c6a.12xlarge" || "c6a.16xlarge" || "c6a.24xlarge" || "c6a.32xlarge" || "c6a.48xlarge" || "c6a.metal" || "m6a.metal" || "i4i.large" || "i4i.xlarge" || "i4i.2xlarge" || "i4i.4xlarge" || "i4i.8xlarge" || "i4i.16xlarge" || "i4i.32xlarge" || "i4i.metal" || "x2idn.metal" || "x2iedn.metal" || "c7g.medium" || "c7g.large" || "c7g.xlarge" || "c7g.2xlarge" || "c7g.4xlarge" || "c7g.8xlarge" || "c7g.12xlarge" || "c7g.16xlarge" || "mac2.metal" || "c6id.large" || "c6id.xlarge" || "c6id.2xlarge" || "c6id.4xlarge" || "c6id.8xlarge" || "c6id.12xlarge" || "c6id.16xlarge" || "c6id.24xlarge" || "c6id.32xlarge" || "c6id.metal" || "m6id.large" || "m6id.xlarge" || "m6id.2xlarge" || "m6id.4xlarge" || "m6id.8xlarge" || "m6id.12xlarge" || "m6id.16xlarge" || "m6id.24xlarge" || "m6id.32xlarge" || "m6id.metal" || "r6id.large" || "r6id.xlarge" || "r6id.2xlarge" || "r6id.4xlarge" || "r6id.8xlarge" || "r6id.12xlarge" || "r6id.16xlarge" || "r6id.24xlarge" || "r6id.32xlarge" || "r6id.metal" || "r6a.large" || "r6a.xlarge" || "r6a.2xlarge" || "r6a.4xlarge" || "r6a.8xlarge" || "r6a.12xlarge" || "r6a.16xlarge" || "r6a.24xlarge" || "r6a.32xlarge" || "r6a.48xlarge" || "r6a.metal" || "p4de.24xlarge" || "u-3tb1.56xlarge" || "u-18tb1.112xlarge" || "u-24tb1.112xlarge" || "trn1.2xlarge" || "trn1.32xlarge" || "hpc6id.32xlarge" || "c6in.large" || "c6in.xlarge" || "c6in.2xlarge" || "c6in.4xlarge" || "c6in.8xlarge" || "c6in.12xlarge" || "c6in.16xlarge" || "c6in.24xlarge" || "c6in.32xlarge" || "m6in.large" || "m6in.xlarge" || "m6in.2xlarge" || "m6in.4xlarge" || "m6in.8xlarge" || "m6in.12xlarge" || "m6in.16xlarge" || "m6in.24xlarge" || "m6in.32xlarge" || "m6idn.large" || "m6idn.xlarge" || "m6idn.2xlarge" || "m6idn.4xlarge" || "m6idn.8xlarge" || "m6idn.12xlarge" || "m6idn.16xlarge" || "m6idn.24xlarge" || "m6idn.32xlarge" || "r6in.large" || "r6in.xlarge" || "r6in.2xlarge" || "r6in.4xlarge" || "r6in.8xlarge" || "r6in.12xlarge" || "r6in.16xlarge" || "r6in.24xlarge" || "r6in.32xlarge" || "r6idn.large" || "r6idn.xlarge" || "r6idn.2xlarge" || "r6idn.4xlarge" || "r6idn.8xlarge" || "r6idn.12xlarge" || "r6idn.16xlarge" || "r6idn.24xlarge" || "r6idn.32xlarge" || "c7g.metal" || "m7g.medium" || "m7g.large" || "m7g.xlarge" || "m7g.2xlarge" || "m7g.4xlarge" || "m7g.8xlarge" || "m7g.12xlarge" || "m7g.16xlarge" || "m7g.metal" || "r7g.medium" || "r7g.large" || "r7g.xlarge" || "r7g.2xlarge" || "r7g.4xlarge" || "r7g.8xlarge" || "r7g.12xlarge" || "r7g.16xlarge" || "r7g.metal" || "c6in.metal" || "m6in.metal" || "m6idn.metal" || "r6in.metal" || "r6idn.metal" || "inf2.xlarge" || "inf2.8xlarge" || "inf2.24xlarge" || "inf2.48xlarge" || "trn1n.32xlarge" || "i4g.large" || "i4g.xlarge" || "i4g.2xlarge" || "i4g.4xlarge" || "i4g.8xlarge" || "i4g.16xlarge" || "hpc7g.4xlarge" || "hpc7g.8xlarge" || "hpc7g.16xlarge" || "c7gn.medium" || "c7gn.large" || "c7gn.xlarge" || "c7gn.2xlarge" || "c7gn.4xlarge" || "c7gn.8xlarge" || "c7gn.12xlarge" || "c7gn.16xlarge" || "p5.48xlarge" || "m7i.large" || "m7i.xlarge" || "m7i.2xlarge" || "m7i.4xlarge" || "m7i.8xlarge" || "m7i.12xlarge" || "m7i.16xlarge" || "m7i.24xlarge" || "m7i.48xlarge" || "m7i-flex.large" || "m7i-flex.xlarge" || "m7i-flex.2xlarge" || "m7i-flex.4xlarge" || "m7i-flex.8xlarge" || "m7a.medium" || "m7a.large" || "m7a.xlarge" || "m7a.2xlarge" || "m7a.4xlarge" || "m7a.8xlarge" || "m7a.12xlarge" || "m7a.16xlarge" || "m7a.24xlarge" || "m7a.32xlarge" || "m7a.48xlarge" || "m7a.metal-48xl" || "hpc7a.12xlarge" || "hpc7a.24xlarge" || "hpc7a.48xlarge" || "hpc7a.96xlarge" || "c7gd.medium" || "c7gd.large" || "c7gd.xlarge" || "c7gd.2xlarge" || "c7gd.4xlarge" || "c7gd.8xlarge" || "c7gd.12xlarge" || "c7gd.16xlarge" || "m7gd.medium" || "m7gd.large" || "m7gd.xlarge" || "m7gd.2xlarge" || "m7gd.4xlarge" || "m7gd.8xlarge" || "m7gd.12xlarge" || "m7gd.16xlarge" || "r7gd.medium" || "r7gd.large" || "r7gd.xlarge" || "r7gd.2xlarge" || "r7gd.4xlarge" || "r7gd.8xlarge" || "r7gd.12xlarge" || "r7gd.16xlarge" || "r7a.medium" || "r7a.large" || "r7a.xlarge" || "r7a.2xlarge" || "r7a.4xlarge" || "r7a.8xlarge" || "r7a.12xlarge" || "r7a.16xlarge" || "r7a.24xlarge" || "r7a.32xlarge" || "r7a.48xlarge" || "c7i.large" || "c7i.xlarge" || "c7i.2xlarge" || "c7i.4xlarge" || "c7i.8xlarge" || "c7i.12xlarge" || "c7i.16xlarge" || "c7i.24xlarge" || "c7i.48xlarge" || "mac2-m2pro.metal" || "r7iz.large" || "r7iz.xlarge" || "r7iz.2xlarge" || "r7iz.4xlarge" || "r7iz.8xlarge" || "r7iz.12xlarge" || "r7iz.16xlarge" || "r7iz.32xlarge",
- * InstancePlatform: "Linux/UNIX" || "Red Hat Enterprise Linux" || "SUSE Linux" || "Windows" || "Windows with SQL Server" || "Windows with SQL Server Enterprise" || "Windows with SQL Server Standard" || "Windows with SQL Server Web" || "Linux with SQL Server Standard" || "Linux with SQL Server Web" || "Linux with SQL Server Enterprise" || "RHEL with SQL Server Standard" || "RHEL with SQL Server Enterprise" || "RHEL with SQL Server Web" || "RHEL with HA" || "RHEL with HA and SQL Server Standard" || "RHEL with HA and SQL Server Enterprise",
+ * InstancePlatform: "Linux/UNIX" || "Red Hat Enterprise Linux" || "SUSE Linux" || "Windows" || "Windows with SQL Server" || "Windows with SQL Server Enterprise" || "Windows with SQL Server Standard" || "Windows with SQL Server Web" || "Linux with SQL Server Standard" || "Linux with SQL Server Web" || "Linux with SQL Server Enterprise" || "RHEL with SQL Server Standard" || "RHEL with SQL Server Enterprise" || "RHEL with SQL Server Web" || "RHEL with HA" || "RHEL with HA and SQL Server Standard" || "RHEL with HA and SQL Server Enterprise" || "Ubuntu Pro",
* Weight: Number("double"),
* AvailabilityZone: "STRING_VALUE",
* AvailabilityZoneId: "STRING_VALUE",
@@ -98,7 +98,7 @@ export interface CreateCapacityReservationFleetCommandOutput
* // CapacityReservationId: "STRING_VALUE",
* // AvailabilityZoneId: "STRING_VALUE",
* // InstanceType: "a1.medium" || "a1.large" || "a1.xlarge" || "a1.2xlarge" || "a1.4xlarge" || "a1.metal" || "c1.medium" || "c1.xlarge" || "c3.large" || "c3.xlarge" || "c3.2xlarge" || "c3.4xlarge" || "c3.8xlarge" || "c4.large" || "c4.xlarge" || "c4.2xlarge" || "c4.4xlarge" || "c4.8xlarge" || "c5.large" || "c5.xlarge" || "c5.2xlarge" || "c5.4xlarge" || "c5.9xlarge" || "c5.12xlarge" || "c5.18xlarge" || "c5.24xlarge" || "c5.metal" || "c5a.large" || "c5a.xlarge" || "c5a.2xlarge" || "c5a.4xlarge" || "c5a.8xlarge" || "c5a.12xlarge" || "c5a.16xlarge" || "c5a.24xlarge" || "c5ad.large" || "c5ad.xlarge" || "c5ad.2xlarge" || "c5ad.4xlarge" || "c5ad.8xlarge" || "c5ad.12xlarge" || "c5ad.16xlarge" || "c5ad.24xlarge" || "c5d.large" || "c5d.xlarge" || "c5d.2xlarge" || "c5d.4xlarge" || "c5d.9xlarge" || "c5d.12xlarge" || "c5d.18xlarge" || "c5d.24xlarge" || "c5d.metal" || "c5n.large" || "c5n.xlarge" || "c5n.2xlarge" || "c5n.4xlarge" || "c5n.9xlarge" || "c5n.18xlarge" || "c5n.metal" || "c6g.medium" || "c6g.large" || "c6g.xlarge" || "c6g.2xlarge" || "c6g.4xlarge" || "c6g.8xlarge" || "c6g.12xlarge" || "c6g.16xlarge" || "c6g.metal" || "c6gd.medium" || "c6gd.large" || "c6gd.xlarge" || "c6gd.2xlarge" || "c6gd.4xlarge" || "c6gd.8xlarge" || "c6gd.12xlarge" || "c6gd.16xlarge" || "c6gd.metal" || "c6gn.medium" || "c6gn.large" || "c6gn.xlarge" || "c6gn.2xlarge" || "c6gn.4xlarge" || "c6gn.8xlarge" || "c6gn.12xlarge" || "c6gn.16xlarge" || "c6i.large" || "c6i.xlarge" || "c6i.2xlarge" || "c6i.4xlarge" || "c6i.8xlarge" || "c6i.12xlarge" || "c6i.16xlarge" || "c6i.24xlarge" || "c6i.32xlarge" || "c6i.metal" || "cc1.4xlarge" || "cc2.8xlarge" || "cg1.4xlarge" || "cr1.8xlarge" || "d2.xlarge" || "d2.2xlarge" || "d2.4xlarge" || "d2.8xlarge" || "d3.xlarge" || "d3.2xlarge" || "d3.4xlarge" || "d3.8xlarge" || "d3en.xlarge" || "d3en.2xlarge" || "d3en.4xlarge" || "d3en.6xlarge" || "d3en.8xlarge" || "d3en.12xlarge" || "dl1.24xlarge" || "f1.2xlarge" || "f1.4xlarge" || "f1.16xlarge" || "g2.2xlarge" || "g2.8xlarge" || "g3.4xlarge" || "g3.8xlarge" || "g3.16xlarge" || "g3s.xlarge" || "g4ad.xlarge" || "g4ad.2xlarge" || "g4ad.4xlarge" || "g4ad.8xlarge" || "g4ad.16xlarge" || "g4dn.xlarge" || "g4dn.2xlarge" || "g4dn.4xlarge" || "g4dn.8xlarge" || "g4dn.12xlarge" || "g4dn.16xlarge" || "g4dn.metal" || "g5.xlarge" || "g5.2xlarge" || "g5.4xlarge" || "g5.8xlarge" || "g5.12xlarge" || "g5.16xlarge" || "g5.24xlarge" || "g5.48xlarge" || "g5g.xlarge" || "g5g.2xlarge" || "g5g.4xlarge" || "g5g.8xlarge" || "g5g.16xlarge" || "g5g.metal" || "hi1.4xlarge" || "hpc6a.48xlarge" || "hs1.8xlarge" || "h1.2xlarge" || "h1.4xlarge" || "h1.8xlarge" || "h1.16xlarge" || "i2.xlarge" || "i2.2xlarge" || "i2.4xlarge" || "i2.8xlarge" || "i3.large" || "i3.xlarge" || "i3.2xlarge" || "i3.4xlarge" || "i3.8xlarge" || "i3.16xlarge" || "i3.metal" || "i3en.large" || "i3en.xlarge" || "i3en.2xlarge" || "i3en.3xlarge" || "i3en.6xlarge" || "i3en.12xlarge" || "i3en.24xlarge" || "i3en.metal" || "im4gn.large" || "im4gn.xlarge" || "im4gn.2xlarge" || "im4gn.4xlarge" || "im4gn.8xlarge" || "im4gn.16xlarge" || "inf1.xlarge" || "inf1.2xlarge" || "inf1.6xlarge" || "inf1.24xlarge" || "is4gen.medium" || "is4gen.large" || "is4gen.xlarge" || "is4gen.2xlarge" || "is4gen.4xlarge" || "is4gen.8xlarge" || "m1.small" || "m1.medium" || "m1.large" || "m1.xlarge" || "m2.xlarge" || "m2.2xlarge" || "m2.4xlarge" || "m3.medium" || "m3.large" || "m3.xlarge" || "m3.2xlarge" || "m4.large" || "m4.xlarge" || "m4.2xlarge" || "m4.4xlarge" || "m4.10xlarge" || "m4.16xlarge" || "m5.large" || "m5.xlarge" || "m5.2xlarge" || "m5.4xlarge" || "m5.8xlarge" || "m5.12xlarge" || "m5.16xlarge" || "m5.24xlarge" || "m5.metal" || "m5a.large" || "m5a.xlarge" || "m5a.2xlarge" || "m5a.4xlarge" || "m5a.8xlarge" || "m5a.12xlarge" || "m5a.16xlarge" || "m5a.24xlarge" || "m5ad.large" || "m5ad.xlarge" || "m5ad.2xlarge" || "m5ad.4xlarge" || "m5ad.8xlarge" || "m5ad.12xlarge" || "m5ad.16xlarge" || "m5ad.24xlarge" || "m5d.large" || "m5d.xlarge" || "m5d.2xlarge" || "m5d.4xlarge" || "m5d.8xlarge" || "m5d.12xlarge" || "m5d.16xlarge" || "m5d.24xlarge" || "m5d.metal" || "m5dn.large" || "m5dn.xlarge" || "m5dn.2xlarge" || "m5dn.4xlarge" || "m5dn.8xlarge" || "m5dn.12xlarge" || "m5dn.16xlarge" || "m5dn.24xlarge" || "m5dn.metal" || "m5n.large" || "m5n.xlarge" || "m5n.2xlarge" || "m5n.4xlarge" || "m5n.8xlarge" || "m5n.12xlarge" || "m5n.16xlarge" || "m5n.24xlarge" || "m5n.metal" || "m5zn.large" || "m5zn.xlarge" || "m5zn.2xlarge" || "m5zn.3xlarge" || "m5zn.6xlarge" || "m5zn.12xlarge" || "m5zn.metal" || "m6a.large" || "m6a.xlarge" || "m6a.2xlarge" || "m6a.4xlarge" || "m6a.8xlarge" || "m6a.12xlarge" || "m6a.16xlarge" || "m6a.24xlarge" || "m6a.32xlarge" || "m6a.48xlarge" || "m6g.metal" || "m6g.medium" || "m6g.large" || "m6g.xlarge" || "m6g.2xlarge" || "m6g.4xlarge" || "m6g.8xlarge" || "m6g.12xlarge" || "m6g.16xlarge" || "m6gd.metal" || "m6gd.medium" || "m6gd.large" || "m6gd.xlarge" || "m6gd.2xlarge" || "m6gd.4xlarge" || "m6gd.8xlarge" || "m6gd.12xlarge" || "m6gd.16xlarge" || "m6i.large" || "m6i.xlarge" || "m6i.2xlarge" || "m6i.4xlarge" || "m6i.8xlarge" || "m6i.12xlarge" || "m6i.16xlarge" || "m6i.24xlarge" || "m6i.32xlarge" || "m6i.metal" || "mac1.metal" || "p2.xlarge" || "p2.8xlarge" || "p2.16xlarge" || "p3.2xlarge" || "p3.8xlarge" || "p3.16xlarge" || "p3dn.24xlarge" || "p4d.24xlarge" || "r3.large" || "r3.xlarge" || "r3.2xlarge" || "r3.4xlarge" || "r3.8xlarge" || "r4.large" || "r4.xlarge" || "r4.2xlarge" || "r4.4xlarge" || "r4.8xlarge" || "r4.16xlarge" || "r5.large" || "r5.xlarge" || "r5.2xlarge" || "r5.4xlarge" || "r5.8xlarge" || "r5.12xlarge" || "r5.16xlarge" || "r5.24xlarge" || "r5.metal" || "r5a.large" || "r5a.xlarge" || "r5a.2xlarge" || "r5a.4xlarge" || "r5a.8xlarge" || "r5a.12xlarge" || "r5a.16xlarge" || "r5a.24xlarge" || "r5ad.large" || "r5ad.xlarge" || "r5ad.2xlarge" || "r5ad.4xlarge" || "r5ad.8xlarge" || "r5ad.12xlarge" || "r5ad.16xlarge" || "r5ad.24xlarge" || "r5b.large" || "r5b.xlarge" || "r5b.2xlarge" || "r5b.4xlarge" || "r5b.8xlarge" || "r5b.12xlarge" || "r5b.16xlarge" || "r5b.24xlarge" || "r5b.metal" || "r5d.large" || "r5d.xlarge" || "r5d.2xlarge" || "r5d.4xlarge" || "r5d.8xlarge" || "r5d.12xlarge" || "r5d.16xlarge" || "r5d.24xlarge" || "r5d.metal" || "r5dn.large" || "r5dn.xlarge" || "r5dn.2xlarge" || "r5dn.4xlarge" || "r5dn.8xlarge" || "r5dn.12xlarge" || "r5dn.16xlarge" || "r5dn.24xlarge" || "r5dn.metal" || "r5n.large" || "r5n.xlarge" || "r5n.2xlarge" || "r5n.4xlarge" || "r5n.8xlarge" || "r5n.12xlarge" || "r5n.16xlarge" || "r5n.24xlarge" || "r5n.metal" || "r6g.medium" || "r6g.large" || "r6g.xlarge" || "r6g.2xlarge" || "r6g.4xlarge" || "r6g.8xlarge" || "r6g.12xlarge" || "r6g.16xlarge" || "r6g.metal" || "r6gd.medium" || "r6gd.large" || "r6gd.xlarge" || "r6gd.2xlarge" || "r6gd.4xlarge" || "r6gd.8xlarge" || "r6gd.12xlarge" || "r6gd.16xlarge" || "r6gd.metal" || "r6i.large" || "r6i.xlarge" || "r6i.2xlarge" || "r6i.4xlarge" || "r6i.8xlarge" || "r6i.12xlarge" || "r6i.16xlarge" || "r6i.24xlarge" || "r6i.32xlarge" || "r6i.metal" || "t1.micro" || "t2.nano" || "t2.micro" || "t2.small" || "t2.medium" || "t2.large" || "t2.xlarge" || "t2.2xlarge" || "t3.nano" || "t3.micro" || "t3.small" || "t3.medium" || "t3.large" || "t3.xlarge" || "t3.2xlarge" || "t3a.nano" || "t3a.micro" || "t3a.small" || "t3a.medium" || "t3a.large" || "t3a.xlarge" || "t3a.2xlarge" || "t4g.nano" || "t4g.micro" || "t4g.small" || "t4g.medium" || "t4g.large" || "t4g.xlarge" || "t4g.2xlarge" || "u-6tb1.56xlarge" || "u-6tb1.112xlarge" || "u-9tb1.112xlarge" || "u-12tb1.112xlarge" || "u-6tb1.metal" || "u-9tb1.metal" || "u-12tb1.metal" || "u-18tb1.metal" || "u-24tb1.metal" || "vt1.3xlarge" || "vt1.6xlarge" || "vt1.24xlarge" || "x1.16xlarge" || "x1.32xlarge" || "x1e.xlarge" || "x1e.2xlarge" || "x1e.4xlarge" || "x1e.8xlarge" || "x1e.16xlarge" || "x1e.32xlarge" || "x2iezn.2xlarge" || "x2iezn.4xlarge" || "x2iezn.6xlarge" || "x2iezn.8xlarge" || "x2iezn.12xlarge" || "x2iezn.metal" || "x2gd.medium" || "x2gd.large" || "x2gd.xlarge" || "x2gd.2xlarge" || "x2gd.4xlarge" || "x2gd.8xlarge" || "x2gd.12xlarge" || "x2gd.16xlarge" || "x2gd.metal" || "z1d.large" || "z1d.xlarge" || "z1d.2xlarge" || "z1d.3xlarge" || "z1d.6xlarge" || "z1d.12xlarge" || "z1d.metal" || "x2idn.16xlarge" || "x2idn.24xlarge" || "x2idn.32xlarge" || "x2iedn.xlarge" || "x2iedn.2xlarge" || "x2iedn.4xlarge" || "x2iedn.8xlarge" || "x2iedn.16xlarge" || "x2iedn.24xlarge" || "x2iedn.32xlarge" || "c6a.large" || "c6a.xlarge" || "c6a.2xlarge" || "c6a.4xlarge" || "c6a.8xlarge" || "c6a.12xlarge" || "c6a.16xlarge" || "c6a.24xlarge" || "c6a.32xlarge" || "c6a.48xlarge" || "c6a.metal" || "m6a.metal" || "i4i.large" || "i4i.xlarge" || "i4i.2xlarge" || "i4i.4xlarge" || "i4i.8xlarge" || "i4i.16xlarge" || "i4i.32xlarge" || "i4i.metal" || "x2idn.metal" || "x2iedn.metal" || "c7g.medium" || "c7g.large" || "c7g.xlarge" || "c7g.2xlarge" || "c7g.4xlarge" || "c7g.8xlarge" || "c7g.12xlarge" || "c7g.16xlarge" || "mac2.metal" || "c6id.large" || "c6id.xlarge" || "c6id.2xlarge" || "c6id.4xlarge" || "c6id.8xlarge" || "c6id.12xlarge" || "c6id.16xlarge" || "c6id.24xlarge" || "c6id.32xlarge" || "c6id.metal" || "m6id.large" || "m6id.xlarge" || "m6id.2xlarge" || "m6id.4xlarge" || "m6id.8xlarge" || "m6id.12xlarge" || "m6id.16xlarge" || "m6id.24xlarge" || "m6id.32xlarge" || "m6id.metal" || "r6id.large" || "r6id.xlarge" || "r6id.2xlarge" || "r6id.4xlarge" || "r6id.8xlarge" || "r6id.12xlarge" || "r6id.16xlarge" || "r6id.24xlarge" || "r6id.32xlarge" || "r6id.metal" || "r6a.large" || "r6a.xlarge" || "r6a.2xlarge" || "r6a.4xlarge" || "r6a.8xlarge" || "r6a.12xlarge" || "r6a.16xlarge" || "r6a.24xlarge" || "r6a.32xlarge" || "r6a.48xlarge" || "r6a.metal" || "p4de.24xlarge" || "u-3tb1.56xlarge" || "u-18tb1.112xlarge" || "u-24tb1.112xlarge" || "trn1.2xlarge" || "trn1.32xlarge" || "hpc6id.32xlarge" || "c6in.large" || "c6in.xlarge" || "c6in.2xlarge" || "c6in.4xlarge" || "c6in.8xlarge" || "c6in.12xlarge" || "c6in.16xlarge" || "c6in.24xlarge" || "c6in.32xlarge" || "m6in.large" || "m6in.xlarge" || "m6in.2xlarge" || "m6in.4xlarge" || "m6in.8xlarge" || "m6in.12xlarge" || "m6in.16xlarge" || "m6in.24xlarge" || "m6in.32xlarge" || "m6idn.large" || "m6idn.xlarge" || "m6idn.2xlarge" || "m6idn.4xlarge" || "m6idn.8xlarge" || "m6idn.12xlarge" || "m6idn.16xlarge" || "m6idn.24xlarge" || "m6idn.32xlarge" || "r6in.large" || "r6in.xlarge" || "r6in.2xlarge" || "r6in.4xlarge" || "r6in.8xlarge" || "r6in.12xlarge" || "r6in.16xlarge" || "r6in.24xlarge" || "r6in.32xlarge" || "r6idn.large" || "r6idn.xlarge" || "r6idn.2xlarge" || "r6idn.4xlarge" || "r6idn.8xlarge" || "r6idn.12xlarge" || "r6idn.16xlarge" || "r6idn.24xlarge" || "r6idn.32xlarge" || "c7g.metal" || "m7g.medium" || "m7g.large" || "m7g.xlarge" || "m7g.2xlarge" || "m7g.4xlarge" || "m7g.8xlarge" || "m7g.12xlarge" || "m7g.16xlarge" || "m7g.metal" || "r7g.medium" || "r7g.large" || "r7g.xlarge" || "r7g.2xlarge" || "r7g.4xlarge" || "r7g.8xlarge" || "r7g.12xlarge" || "r7g.16xlarge" || "r7g.metal" || "c6in.metal" || "m6in.metal" || "m6idn.metal" || "r6in.metal" || "r6idn.metal" || "inf2.xlarge" || "inf2.8xlarge" || "inf2.24xlarge" || "inf2.48xlarge" || "trn1n.32xlarge" || "i4g.large" || "i4g.xlarge" || "i4g.2xlarge" || "i4g.4xlarge" || "i4g.8xlarge" || "i4g.16xlarge" || "hpc7g.4xlarge" || "hpc7g.8xlarge" || "hpc7g.16xlarge" || "c7gn.medium" || "c7gn.large" || "c7gn.xlarge" || "c7gn.2xlarge" || "c7gn.4xlarge" || "c7gn.8xlarge" || "c7gn.12xlarge" || "c7gn.16xlarge" || "p5.48xlarge" || "m7i.large" || "m7i.xlarge" || "m7i.2xlarge" || "m7i.4xlarge" || "m7i.8xlarge" || "m7i.12xlarge" || "m7i.16xlarge" || "m7i.24xlarge" || "m7i.48xlarge" || "m7i-flex.large" || "m7i-flex.xlarge" || "m7i-flex.2xlarge" || "m7i-flex.4xlarge" || "m7i-flex.8xlarge" || "m7a.medium" || "m7a.large" || "m7a.xlarge" || "m7a.2xlarge" || "m7a.4xlarge" || "m7a.8xlarge" || "m7a.12xlarge" || "m7a.16xlarge" || "m7a.24xlarge" || "m7a.32xlarge" || "m7a.48xlarge" || "m7a.metal-48xl" || "hpc7a.12xlarge" || "hpc7a.24xlarge" || "hpc7a.48xlarge" || "hpc7a.96xlarge" || "c7gd.medium" || "c7gd.large" || "c7gd.xlarge" || "c7gd.2xlarge" || "c7gd.4xlarge" || "c7gd.8xlarge" || "c7gd.12xlarge" || "c7gd.16xlarge" || "m7gd.medium" || "m7gd.large" || "m7gd.xlarge" || "m7gd.2xlarge" || "m7gd.4xlarge" || "m7gd.8xlarge" || "m7gd.12xlarge" || "m7gd.16xlarge" || "r7gd.medium" || "r7gd.large" || "r7gd.xlarge" || "r7gd.2xlarge" || "r7gd.4xlarge" || "r7gd.8xlarge" || "r7gd.12xlarge" || "r7gd.16xlarge" || "r7a.medium" || "r7a.large" || "r7a.xlarge" || "r7a.2xlarge" || "r7a.4xlarge" || "r7a.8xlarge" || "r7a.12xlarge" || "r7a.16xlarge" || "r7a.24xlarge" || "r7a.32xlarge" || "r7a.48xlarge" || "c7i.large" || "c7i.xlarge" || "c7i.2xlarge" || "c7i.4xlarge" || "c7i.8xlarge" || "c7i.12xlarge" || "c7i.16xlarge" || "c7i.24xlarge" || "c7i.48xlarge" || "mac2-m2pro.metal" || "r7iz.large" || "r7iz.xlarge" || "r7iz.2xlarge" || "r7iz.4xlarge" || "r7iz.8xlarge" || "r7iz.12xlarge" || "r7iz.16xlarge" || "r7iz.32xlarge",
- * // InstancePlatform: "Linux/UNIX" || "Red Hat Enterprise Linux" || "SUSE Linux" || "Windows" || "Windows with SQL Server" || "Windows with SQL Server Enterprise" || "Windows with SQL Server Standard" || "Windows with SQL Server Web" || "Linux with SQL Server Standard" || "Linux with SQL Server Web" || "Linux with SQL Server Enterprise" || "RHEL with SQL Server Standard" || "RHEL with SQL Server Enterprise" || "RHEL with SQL Server Web" || "RHEL with HA" || "RHEL with HA and SQL Server Standard" || "RHEL with HA and SQL Server Enterprise",
+ * // InstancePlatform: "Linux/UNIX" || "Red Hat Enterprise Linux" || "SUSE Linux" || "Windows" || "Windows with SQL Server" || "Windows with SQL Server Enterprise" || "Windows with SQL Server Standard" || "Windows with SQL Server Web" || "Linux with SQL Server Standard" || "Linux with SQL Server Web" || "Linux with SQL Server Enterprise" || "RHEL with SQL Server Standard" || "RHEL with SQL Server Enterprise" || "RHEL with SQL Server Web" || "RHEL with HA" || "RHEL with HA and SQL Server Standard" || "RHEL with HA and SQL Server Enterprise" || "Ubuntu Pro",
* // AvailabilityZone: "STRING_VALUE",
* // TotalInstanceCount: Number("int"),
* // FulfilledCapacity: Number("double"),
diff --git a/clients/client-ec2/src/commands/DescribeCapacityReservationFleetsCommand.ts b/clients/client-ec2/src/commands/DescribeCapacityReservationFleetsCommand.ts
index e7be0a92d0f3d..d39e2c4ca33b6 100644
--- a/clients/client-ec2/src/commands/DescribeCapacityReservationFleetsCommand.ts
+++ b/clients/client-ec2/src/commands/DescribeCapacityReservationFleetsCommand.ts
@@ -85,7 +85,7 @@ export interface DescribeCapacityReservationFleetsCommandOutput
* // CapacityReservationId: "STRING_VALUE",
* // AvailabilityZoneId: "STRING_VALUE",
* // InstanceType: "a1.medium" || "a1.large" || "a1.xlarge" || "a1.2xlarge" || "a1.4xlarge" || "a1.metal" || "c1.medium" || "c1.xlarge" || "c3.large" || "c3.xlarge" || "c3.2xlarge" || "c3.4xlarge" || "c3.8xlarge" || "c4.large" || "c4.xlarge" || "c4.2xlarge" || "c4.4xlarge" || "c4.8xlarge" || "c5.large" || "c5.xlarge" || "c5.2xlarge" || "c5.4xlarge" || "c5.9xlarge" || "c5.12xlarge" || "c5.18xlarge" || "c5.24xlarge" || "c5.metal" || "c5a.large" || "c5a.xlarge" || "c5a.2xlarge" || "c5a.4xlarge" || "c5a.8xlarge" || "c5a.12xlarge" || "c5a.16xlarge" || "c5a.24xlarge" || "c5ad.large" || "c5ad.xlarge" || "c5ad.2xlarge" || "c5ad.4xlarge" || "c5ad.8xlarge" || "c5ad.12xlarge" || "c5ad.16xlarge" || "c5ad.24xlarge" || "c5d.large" || "c5d.xlarge" || "c5d.2xlarge" || "c5d.4xlarge" || "c5d.9xlarge" || "c5d.12xlarge" || "c5d.18xlarge" || "c5d.24xlarge" || "c5d.metal" || "c5n.large" || "c5n.xlarge" || "c5n.2xlarge" || "c5n.4xlarge" || "c5n.9xlarge" || "c5n.18xlarge" || "c5n.metal" || "c6g.medium" || "c6g.large" || "c6g.xlarge" || "c6g.2xlarge" || "c6g.4xlarge" || "c6g.8xlarge" || "c6g.12xlarge" || "c6g.16xlarge" || "c6g.metal" || "c6gd.medium" || "c6gd.large" || "c6gd.xlarge" || "c6gd.2xlarge" || "c6gd.4xlarge" || "c6gd.8xlarge" || "c6gd.12xlarge" || "c6gd.16xlarge" || "c6gd.metal" || "c6gn.medium" || "c6gn.large" || "c6gn.xlarge" || "c6gn.2xlarge" || "c6gn.4xlarge" || "c6gn.8xlarge" || "c6gn.12xlarge" || "c6gn.16xlarge" || "c6i.large" || "c6i.xlarge" || "c6i.2xlarge" || "c6i.4xlarge" || "c6i.8xlarge" || "c6i.12xlarge" || "c6i.16xlarge" || "c6i.24xlarge" || "c6i.32xlarge" || "c6i.metal" || "cc1.4xlarge" || "cc2.8xlarge" || "cg1.4xlarge" || "cr1.8xlarge" || "d2.xlarge" || "d2.2xlarge" || "d2.4xlarge" || "d2.8xlarge" || "d3.xlarge" || "d3.2xlarge" || "d3.4xlarge" || "d3.8xlarge" || "d3en.xlarge" || "d3en.2xlarge" || "d3en.4xlarge" || "d3en.6xlarge" || "d3en.8xlarge" || "d3en.12xlarge" || "dl1.24xlarge" || "f1.2xlarge" || "f1.4xlarge" || "f1.16xlarge" || "g2.2xlarge" || "g2.8xlarge" || "g3.4xlarge" || "g3.8xlarge" || "g3.16xlarge" || "g3s.xlarge" || "g4ad.xlarge" || "g4ad.2xlarge" || "g4ad.4xlarge" || "g4ad.8xlarge" || "g4ad.16xlarge" || "g4dn.xlarge" || "g4dn.2xlarge" || "g4dn.4xlarge" || "g4dn.8xlarge" || "g4dn.12xlarge" || "g4dn.16xlarge" || "g4dn.metal" || "g5.xlarge" || "g5.2xlarge" || "g5.4xlarge" || "g5.8xlarge" || "g5.12xlarge" || "g5.16xlarge" || "g5.24xlarge" || "g5.48xlarge" || "g5g.xlarge" || "g5g.2xlarge" || "g5g.4xlarge" || "g5g.8xlarge" || "g5g.16xlarge" || "g5g.metal" || "hi1.4xlarge" || "hpc6a.48xlarge" || "hs1.8xlarge" || "h1.2xlarge" || "h1.4xlarge" || "h1.8xlarge" || "h1.16xlarge" || "i2.xlarge" || "i2.2xlarge" || "i2.4xlarge" || "i2.8xlarge" || "i3.large" || "i3.xlarge" || "i3.2xlarge" || "i3.4xlarge" || "i3.8xlarge" || "i3.16xlarge" || "i3.metal" || "i3en.large" || "i3en.xlarge" || "i3en.2xlarge" || "i3en.3xlarge" || "i3en.6xlarge" || "i3en.12xlarge" || "i3en.24xlarge" || "i3en.metal" || "im4gn.large" || "im4gn.xlarge" || "im4gn.2xlarge" || "im4gn.4xlarge" || "im4gn.8xlarge" || "im4gn.16xlarge" || "inf1.xlarge" || "inf1.2xlarge" || "inf1.6xlarge" || "inf1.24xlarge" || "is4gen.medium" || "is4gen.large" || "is4gen.xlarge" || "is4gen.2xlarge" || "is4gen.4xlarge" || "is4gen.8xlarge" || "m1.small" || "m1.medium" || "m1.large" || "m1.xlarge" || "m2.xlarge" || "m2.2xlarge" || "m2.4xlarge" || "m3.medium" || "m3.large" || "m3.xlarge" || "m3.2xlarge" || "m4.large" || "m4.xlarge" || "m4.2xlarge" || "m4.4xlarge" || "m4.10xlarge" || "m4.16xlarge" || "m5.large" || "m5.xlarge" || "m5.2xlarge" || "m5.4xlarge" || "m5.8xlarge" || "m5.12xlarge" || "m5.16xlarge" || "m5.24xlarge" || "m5.metal" || "m5a.large" || "m5a.xlarge" || "m5a.2xlarge" || "m5a.4xlarge" || "m5a.8xlarge" || "m5a.12xlarge" || "m5a.16xlarge" || "m5a.24xlarge" || "m5ad.large" || "m5ad.xlarge" || "m5ad.2xlarge" || "m5ad.4xlarge" || "m5ad.8xlarge" || "m5ad.12xlarge" || "m5ad.16xlarge" || "m5ad.24xlarge" || "m5d.large" || "m5d.xlarge" || "m5d.2xlarge" || "m5d.4xlarge" || "m5d.8xlarge" || "m5d.12xlarge" || "m5d.16xlarge" || "m5d.24xlarge" || "m5d.metal" || "m5dn.large" || "m5dn.xlarge" || "m5dn.2xlarge" || "m5dn.4xlarge" || "m5dn.8xlarge" || "m5dn.12xlarge" || "m5dn.16xlarge" || "m5dn.24xlarge" || "m5dn.metal" || "m5n.large" || "m5n.xlarge" || "m5n.2xlarge" || "m5n.4xlarge" || "m5n.8xlarge" || "m5n.12xlarge" || "m5n.16xlarge" || "m5n.24xlarge" || "m5n.metal" || "m5zn.large" || "m5zn.xlarge" || "m5zn.2xlarge" || "m5zn.3xlarge" || "m5zn.6xlarge" || "m5zn.12xlarge" || "m5zn.metal" || "m6a.large" || "m6a.xlarge" || "m6a.2xlarge" || "m6a.4xlarge" || "m6a.8xlarge" || "m6a.12xlarge" || "m6a.16xlarge" || "m6a.24xlarge" || "m6a.32xlarge" || "m6a.48xlarge" || "m6g.metal" || "m6g.medium" || "m6g.large" || "m6g.xlarge" || "m6g.2xlarge" || "m6g.4xlarge" || "m6g.8xlarge" || "m6g.12xlarge" || "m6g.16xlarge" || "m6gd.metal" || "m6gd.medium" || "m6gd.large" || "m6gd.xlarge" || "m6gd.2xlarge" || "m6gd.4xlarge" || "m6gd.8xlarge" || "m6gd.12xlarge" || "m6gd.16xlarge" || "m6i.large" || "m6i.xlarge" || "m6i.2xlarge" || "m6i.4xlarge" || "m6i.8xlarge" || "m6i.12xlarge" || "m6i.16xlarge" || "m6i.24xlarge" || "m6i.32xlarge" || "m6i.metal" || "mac1.metal" || "p2.xlarge" || "p2.8xlarge" || "p2.16xlarge" || "p3.2xlarge" || "p3.8xlarge" || "p3.16xlarge" || "p3dn.24xlarge" || "p4d.24xlarge" || "r3.large" || "r3.xlarge" || "r3.2xlarge" || "r3.4xlarge" || "r3.8xlarge" || "r4.large" || "r4.xlarge" || "r4.2xlarge" || "r4.4xlarge" || "r4.8xlarge" || "r4.16xlarge" || "r5.large" || "r5.xlarge" || "r5.2xlarge" || "r5.4xlarge" || "r5.8xlarge" || "r5.12xlarge" || "r5.16xlarge" || "r5.24xlarge" || "r5.metal" || "r5a.large" || "r5a.xlarge" || "r5a.2xlarge" || "r5a.4xlarge" || "r5a.8xlarge" || "r5a.12xlarge" || "r5a.16xlarge" || "r5a.24xlarge" || "r5ad.large" || "r5ad.xlarge" || "r5ad.2xlarge" || "r5ad.4xlarge" || "r5ad.8xlarge" || "r5ad.12xlarge" || "r5ad.16xlarge" || "r5ad.24xlarge" || "r5b.large" || "r5b.xlarge" || "r5b.2xlarge" || "r5b.4xlarge" || "r5b.8xlarge" || "r5b.12xlarge" || "r5b.16xlarge" || "r5b.24xlarge" || "r5b.metal" || "r5d.large" || "r5d.xlarge" || "r5d.2xlarge" || "r5d.4xlarge" || "r5d.8xlarge" || "r5d.12xlarge" || "r5d.16xlarge" || "r5d.24xlarge" || "r5d.metal" || "r5dn.large" || "r5dn.xlarge" || "r5dn.2xlarge" || "r5dn.4xlarge" || "r5dn.8xlarge" || "r5dn.12xlarge" || "r5dn.16xlarge" || "r5dn.24xlarge" || "r5dn.metal" || "r5n.large" || "r5n.xlarge" || "r5n.2xlarge" || "r5n.4xlarge" || "r5n.8xlarge" || "r5n.12xlarge" || "r5n.16xlarge" || "r5n.24xlarge" || "r5n.metal" || "r6g.medium" || "r6g.large" || "r6g.xlarge" || "r6g.2xlarge" || "r6g.4xlarge" || "r6g.8xlarge" || "r6g.12xlarge" || "r6g.16xlarge" || "r6g.metal" || "r6gd.medium" || "r6gd.large" || "r6gd.xlarge" || "r6gd.2xlarge" || "r6gd.4xlarge" || "r6gd.8xlarge" || "r6gd.12xlarge" || "r6gd.16xlarge" || "r6gd.metal" || "r6i.large" || "r6i.xlarge" || "r6i.2xlarge" || "r6i.4xlarge" || "r6i.8xlarge" || "r6i.12xlarge" || "r6i.16xlarge" || "r6i.24xlarge" || "r6i.32xlarge" || "r6i.metal" || "t1.micro" || "t2.nano" || "t2.micro" || "t2.small" || "t2.medium" || "t2.large" || "t2.xlarge" || "t2.2xlarge" || "t3.nano" || "t3.micro" || "t3.small" || "t3.medium" || "t3.large" || "t3.xlarge" || "t3.2xlarge" || "t3a.nano" || "t3a.micro" || "t3a.small" || "t3a.medium" || "t3a.large" || "t3a.xlarge" || "t3a.2xlarge" || "t4g.nano" || "t4g.micro" || "t4g.small" || "t4g.medium" || "t4g.large" || "t4g.xlarge" || "t4g.2xlarge" || "u-6tb1.56xlarge" || "u-6tb1.112xlarge" || "u-9tb1.112xlarge" || "u-12tb1.112xlarge" || "u-6tb1.metal" || "u-9tb1.metal" || "u-12tb1.metal" || "u-18tb1.metal" || "u-24tb1.metal" || "vt1.3xlarge" || "vt1.6xlarge" || "vt1.24xlarge" || "x1.16xlarge" || "x1.32xlarge" || "x1e.xlarge" || "x1e.2xlarge" || "x1e.4xlarge" || "x1e.8xlarge" || "x1e.16xlarge" || "x1e.32xlarge" || "x2iezn.2xlarge" || "x2iezn.4xlarge" || "x2iezn.6xlarge" || "x2iezn.8xlarge" || "x2iezn.12xlarge" || "x2iezn.metal" || "x2gd.medium" || "x2gd.large" || "x2gd.xlarge" || "x2gd.2xlarge" || "x2gd.4xlarge" || "x2gd.8xlarge" || "x2gd.12xlarge" || "x2gd.16xlarge" || "x2gd.metal" || "z1d.large" || "z1d.xlarge" || "z1d.2xlarge" || "z1d.3xlarge" || "z1d.6xlarge" || "z1d.12xlarge" || "z1d.metal" || "x2idn.16xlarge" || "x2idn.24xlarge" || "x2idn.32xlarge" || "x2iedn.xlarge" || "x2iedn.2xlarge" || "x2iedn.4xlarge" || "x2iedn.8xlarge" || "x2iedn.16xlarge" || "x2iedn.24xlarge" || "x2iedn.32xlarge" || "c6a.large" || "c6a.xlarge" || "c6a.2xlarge" || "c6a.4xlarge" || "c6a.8xlarge" || "c6a.12xlarge" || "c6a.16xlarge" || "c6a.24xlarge" || "c6a.32xlarge" || "c6a.48xlarge" || "c6a.metal" || "m6a.metal" || "i4i.large" || "i4i.xlarge" || "i4i.2xlarge" || "i4i.4xlarge" || "i4i.8xlarge" || "i4i.16xlarge" || "i4i.32xlarge" || "i4i.metal" || "x2idn.metal" || "x2iedn.metal" || "c7g.medium" || "c7g.large" || "c7g.xlarge" || "c7g.2xlarge" || "c7g.4xlarge" || "c7g.8xlarge" || "c7g.12xlarge" || "c7g.16xlarge" || "mac2.metal" || "c6id.large" || "c6id.xlarge" || "c6id.2xlarge" || "c6id.4xlarge" || "c6id.8xlarge" || "c6id.12xlarge" || "c6id.16xlarge" || "c6id.24xlarge" || "c6id.32xlarge" || "c6id.metal" || "m6id.large" || "m6id.xlarge" || "m6id.2xlarge" || "m6id.4xlarge" || "m6id.8xlarge" || "m6id.12xlarge" || "m6id.16xlarge" || "m6id.24xlarge" || "m6id.32xlarge" || "m6id.metal" || "r6id.large" || "r6id.xlarge" || "r6id.2xlarge" || "r6id.4xlarge" || "r6id.8xlarge" || "r6id.12xlarge" || "r6id.16xlarge" || "r6id.24xlarge" || "r6id.32xlarge" || "r6id.metal" || "r6a.large" || "r6a.xlarge" || "r6a.2xlarge" || "r6a.4xlarge" || "r6a.8xlarge" || "r6a.12xlarge" || "r6a.16xlarge" || "r6a.24xlarge" || "r6a.32xlarge" || "r6a.48xlarge" || "r6a.metal" || "p4de.24xlarge" || "u-3tb1.56xlarge" || "u-18tb1.112xlarge" || "u-24tb1.112xlarge" || "trn1.2xlarge" || "trn1.32xlarge" || "hpc6id.32xlarge" || "c6in.large" || "c6in.xlarge" || "c6in.2xlarge" || "c6in.4xlarge" || "c6in.8xlarge" || "c6in.12xlarge" || "c6in.16xlarge" || "c6in.24xlarge" || "c6in.32xlarge" || "m6in.large" || "m6in.xlarge" || "m6in.2xlarge" || "m6in.4xlarge" || "m6in.8xlarge" || "m6in.12xlarge" || "m6in.16xlarge" || "m6in.24xlarge" || "m6in.32xlarge" || "m6idn.large" || "m6idn.xlarge" || "m6idn.2xlarge" || "m6idn.4xlarge" || "m6idn.8xlarge" || "m6idn.12xlarge" || "m6idn.16xlarge" || "m6idn.24xlarge" || "m6idn.32xlarge" || "r6in.large" || "r6in.xlarge" || "r6in.2xlarge" || "r6in.4xlarge" || "r6in.8xlarge" || "r6in.12xlarge" || "r6in.16xlarge" || "r6in.24xlarge" || "r6in.32xlarge" || "r6idn.large" || "r6idn.xlarge" || "r6idn.2xlarge" || "r6idn.4xlarge" || "r6idn.8xlarge" || "r6idn.12xlarge" || "r6idn.16xlarge" || "r6idn.24xlarge" || "r6idn.32xlarge" || "c7g.metal" || "m7g.medium" || "m7g.large" || "m7g.xlarge" || "m7g.2xlarge" || "m7g.4xlarge" || "m7g.8xlarge" || "m7g.12xlarge" || "m7g.16xlarge" || "m7g.metal" || "r7g.medium" || "r7g.large" || "r7g.xlarge" || "r7g.2xlarge" || "r7g.4xlarge" || "r7g.8xlarge" || "r7g.12xlarge" || "r7g.16xlarge" || "r7g.metal" || "c6in.metal" || "m6in.metal" || "m6idn.metal" || "r6in.metal" || "r6idn.metal" || "inf2.xlarge" || "inf2.8xlarge" || "inf2.24xlarge" || "inf2.48xlarge" || "trn1n.32xlarge" || "i4g.large" || "i4g.xlarge" || "i4g.2xlarge" || "i4g.4xlarge" || "i4g.8xlarge" || "i4g.16xlarge" || "hpc7g.4xlarge" || "hpc7g.8xlarge" || "hpc7g.16xlarge" || "c7gn.medium" || "c7gn.large" || "c7gn.xlarge" || "c7gn.2xlarge" || "c7gn.4xlarge" || "c7gn.8xlarge" || "c7gn.12xlarge" || "c7gn.16xlarge" || "p5.48xlarge" || "m7i.large" || "m7i.xlarge" || "m7i.2xlarge" || "m7i.4xlarge" || "m7i.8xlarge" || "m7i.12xlarge" || "m7i.16xlarge" || "m7i.24xlarge" || "m7i.48xlarge" || "m7i-flex.large" || "m7i-flex.xlarge" || "m7i-flex.2xlarge" || "m7i-flex.4xlarge" || "m7i-flex.8xlarge" || "m7a.medium" || "m7a.large" || "m7a.xlarge" || "m7a.2xlarge" || "m7a.4xlarge" || "m7a.8xlarge" || "m7a.12xlarge" || "m7a.16xlarge" || "m7a.24xlarge" || "m7a.32xlarge" || "m7a.48xlarge" || "m7a.metal-48xl" || "hpc7a.12xlarge" || "hpc7a.24xlarge" || "hpc7a.48xlarge" || "hpc7a.96xlarge" || "c7gd.medium" || "c7gd.large" || "c7gd.xlarge" || "c7gd.2xlarge" || "c7gd.4xlarge" || "c7gd.8xlarge" || "c7gd.12xlarge" || "c7gd.16xlarge" || "m7gd.medium" || "m7gd.large" || "m7gd.xlarge" || "m7gd.2xlarge" || "m7gd.4xlarge" || "m7gd.8xlarge" || "m7gd.12xlarge" || "m7gd.16xlarge" || "r7gd.medium" || "r7gd.large" || "r7gd.xlarge" || "r7gd.2xlarge" || "r7gd.4xlarge" || "r7gd.8xlarge" || "r7gd.12xlarge" || "r7gd.16xlarge" || "r7a.medium" || "r7a.large" || "r7a.xlarge" || "r7a.2xlarge" || "r7a.4xlarge" || "r7a.8xlarge" || "r7a.12xlarge" || "r7a.16xlarge" || "r7a.24xlarge" || "r7a.32xlarge" || "r7a.48xlarge" || "c7i.large" || "c7i.xlarge" || "c7i.2xlarge" || "c7i.4xlarge" || "c7i.8xlarge" || "c7i.12xlarge" || "c7i.16xlarge" || "c7i.24xlarge" || "c7i.48xlarge" || "mac2-m2pro.metal" || "r7iz.large" || "r7iz.xlarge" || "r7iz.2xlarge" || "r7iz.4xlarge" || "r7iz.8xlarge" || "r7iz.12xlarge" || "r7iz.16xlarge" || "r7iz.32xlarge",
- * // InstancePlatform: "Linux/UNIX" || "Red Hat Enterprise Linux" || "SUSE Linux" || "Windows" || "Windows with SQL Server" || "Windows with SQL Server Enterprise" || "Windows with SQL Server Standard" || "Windows with SQL Server Web" || "Linux with SQL Server Standard" || "Linux with SQL Server Web" || "Linux with SQL Server Enterprise" || "RHEL with SQL Server Standard" || "RHEL with SQL Server Enterprise" || "RHEL with SQL Server Web" || "RHEL with HA" || "RHEL with HA and SQL Server Standard" || "RHEL with HA and SQL Server Enterprise",
+ * // InstancePlatform: "Linux/UNIX" || "Red Hat Enterprise Linux" || "SUSE Linux" || "Windows" || "Windows with SQL Server" || "Windows with SQL Server Enterprise" || "Windows with SQL Server Standard" || "Windows with SQL Server Web" || "Linux with SQL Server Standard" || "Linux with SQL Server Web" || "Linux with SQL Server Enterprise" || "RHEL with SQL Server Standard" || "RHEL with SQL Server Enterprise" || "RHEL with SQL Server Web" || "RHEL with HA" || "RHEL with HA and SQL Server Standard" || "RHEL with HA and SQL Server Enterprise" || "Ubuntu Pro",
* // AvailabilityZone: "STRING_VALUE",
* // TotalInstanceCount: Number("int"),
* // FulfilledCapacity: Number("double"),
diff --git a/clients/client-ec2/src/commands/DescribeCapacityReservationsCommand.ts b/clients/client-ec2/src/commands/DescribeCapacityReservationsCommand.ts
index 715905910f062..07562e941634e 100644
--- a/clients/client-ec2/src/commands/DescribeCapacityReservationsCommand.ts
+++ b/clients/client-ec2/src/commands/DescribeCapacityReservationsCommand.ts
@@ -74,7 +74,7 @@ export interface DescribeCapacityReservationsCommandOutput
* // CapacityReservationArn: "STRING_VALUE",
* // AvailabilityZoneId: "STRING_VALUE",
* // InstanceType: "STRING_VALUE",
- * // InstancePlatform: "Linux/UNIX" || "Red Hat Enterprise Linux" || "SUSE Linux" || "Windows" || "Windows with SQL Server" || "Windows with SQL Server Enterprise" || "Windows with SQL Server Standard" || "Windows with SQL Server Web" || "Linux with SQL Server Standard" || "Linux with SQL Server Web" || "Linux with SQL Server Enterprise" || "RHEL with SQL Server Standard" || "RHEL with SQL Server Enterprise" || "RHEL with SQL Server Web" || "RHEL with HA" || "RHEL with HA and SQL Server Standard" || "RHEL with HA and SQL Server Enterprise",
+ * // InstancePlatform: "Linux/UNIX" || "Red Hat Enterprise Linux" || "SUSE Linux" || "Windows" || "Windows with SQL Server" || "Windows with SQL Server Enterprise" || "Windows with SQL Server Standard" || "Windows with SQL Server Web" || "Linux with SQL Server Standard" || "Linux with SQL Server Web" || "Linux with SQL Server Enterprise" || "RHEL with SQL Server Standard" || "RHEL with SQL Server Enterprise" || "RHEL with SQL Server Web" || "RHEL with HA" || "RHEL with HA and SQL Server Standard" || "RHEL with HA and SQL Server Enterprise" || "Ubuntu Pro",
* // AvailabilityZone: "STRING_VALUE",
* // Tenancy: "default" || "dedicated",
* // TotalInstanceCount: Number("int"),
diff --git a/clients/client-ec2/src/commands/DescribeImagesCommand.ts b/clients/client-ec2/src/commands/DescribeImagesCommand.ts
index 8074af7d528c1..858aba8af2618 100644
--- a/clients/client-ec2/src/commands/DescribeImagesCommand.ts
+++ b/clients/client-ec2/src/commands/DescribeImagesCommand.ts
@@ -69,6 +69,7 @@ export interface DescribeImagesCommandOutput extends DescribeImagesResult, __Met
* "STRING_VALUE",
* ],
* IncludeDeprecated: true || false,
+ * IncludeDisabled: true || false,
* DryRun: true || false,
* MaxResults: Number("int"),
* NextToken: "STRING_VALUE",
@@ -96,7 +97,7 @@ export interface DescribeImagesCommandOutput extends DescribeImagesResult, __Met
* // },
* // ],
* // RamdiskId: "STRING_VALUE",
- * // State: "pending" || "available" || "invalid" || "deregistered" || "transient" || "failed" || "error",
+ * // State: "pending" || "available" || "invalid" || "deregistered" || "transient" || "failed" || "error" || "disabled",
* // BlockDeviceMappings: [ // BlockDeviceMappingList
* // { // BlockDeviceMapping
* // DeviceName: "STRING_VALUE",
@@ -138,6 +139,7 @@ export interface DescribeImagesCommandOutput extends DescribeImagesResult, __Met
* // TpmSupport: "v2.0",
* // DeprecationTime: "STRING_VALUE",
* // ImdsSupport: "v2.0",
+ * // SourceInstanceId: "STRING_VALUE",
* // },
* // ],
* // NextToken: "STRING_VALUE",
diff --git a/clients/client-ec2/src/commands/DisableImageCommand.ts b/clients/client-ec2/src/commands/DisableImageCommand.ts
new file mode 100644
index 0000000000000..37d9e199710ca
--- /dev/null
+++ b/clients/client-ec2/src/commands/DisableImageCommand.ts
@@ -0,0 +1,156 @@
+// smithy-typescript generated code
+import { EndpointParameterInstructions, getEndpointPlugin } from "@smithy/middleware-endpoint";
+import { getSerdePlugin } from "@smithy/middleware-serde";
+import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
+import { Command as $Command } from "@smithy/smithy-client";
+import {
+ FinalizeHandlerArguments,
+ Handler,
+ HandlerExecutionContext,
+ HttpHandlerOptions as __HttpHandlerOptions,
+ MetadataBearer as __MetadataBearer,
+ MiddlewareStack,
+ SerdeContext as __SerdeContext,
+ SMITHY_CONTEXT_KEY,
+} from "@smithy/types";
+
+import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
+import { DisableImageRequest, DisableImageResult } from "../models/models_5";
+import { de_DisableImageCommand, se_DisableImageCommand } from "../protocols/Aws_ec2";
+
+/**
+ * @public
+ */
+export { __MetadataBearer, $Command };
+/**
+ * @public
+ *
+ * The input for {@link DisableImageCommand}.
+ */
+export interface DisableImageCommandInput extends DisableImageRequest {}
+/**
+ * @public
+ *
+ * The output of {@link DisableImageCommand}.
+ */
+export interface DisableImageCommandOutput extends DisableImageResult, __MetadataBearer {}
+
+/**
+ * @public
+ * Sets the AMI state to disabled
and removes all launch permissions from the
+ * AMI. A disabled AMI can't be used for instance launches.
+ * A disabled AMI can't be shared. If a public or shared AMI was previously shared, it is
+ * made private. If an AMI was shared with an Amazon Web Services account, organization, or Organizational
+ * Unit, they lose access to the disabled AMI.
+ * A disabled AMI does not appear in DescribeImages API calls by
+ * default.
+ * Only the AMI owner can disable an AMI.
+ * You can re-enable a disabled AMI using EnableImage .
+ * For more information, see Disable an AMI in the
+ * Amazon EC2 User Guide .
+ * @example
+ * Use a bare-bones client and the command you need to make an API call.
+ * ```javascript
+ * import { EC2Client, DisableImageCommand } from "@aws-sdk/client-ec2"; // ES Modules import
+ * // const { EC2Client, DisableImageCommand } = require("@aws-sdk/client-ec2"); // CommonJS import
+ * const client = new EC2Client(config);
+ * const input = { // DisableImageRequest
+ * ImageId: "STRING_VALUE", // required
+ * DryRun: true || false,
+ * };
+ * const command = new DisableImageCommand(input);
+ * const response = await client.send(command);
+ * // { // DisableImageResult
+ * // Return: true || false,
+ * // };
+ *
+ * ```
+ *
+ * @param DisableImageCommandInput - {@link DisableImageCommandInput}
+ * @returns {@link DisableImageCommandOutput}
+ * @see {@link DisableImageCommandInput} for command's `input` shape.
+ * @see {@link DisableImageCommandOutput} for command's `response` shape.
+ * @see {@link EC2ClientResolvedConfig | config} for EC2Client's `config` shape.
+ *
+ * @throws {@link EC2ServiceException}
+ * Base exception class for all service exceptions from EC2 service.
+ *
+ */
+export class DisableImageCommand extends $Command<
+ DisableImageCommandInput,
+ DisableImageCommandOutput,
+ EC2ClientResolvedConfig
+> {
+ // Start section: command_properties
+ // End section: command_properties
+
+ public static getEndpointParameterInstructions(): EndpointParameterInstructions {
+ return {
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
+ Endpoint: { type: "builtInParams", name: "endpoint" },
+ Region: { type: "builtInParams", name: "region" },
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
+ };
+ }
+
+ /**
+ * @public
+ */
+ constructor(readonly input: DisableImageCommandInput) {
+ // Start section: command_constructor
+ super();
+ // End section: command_constructor
+ }
+
+ /**
+ * @internal
+ */
+ resolveMiddleware(
+ clientStack: MiddlewareStack,
+ configuration: EC2ClientResolvedConfig,
+ options?: __HttpHandlerOptions
+ ): Handler {
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
+ this.middlewareStack.use(getEndpointPlugin(configuration, DisableImageCommand.getEndpointParameterInstructions()));
+
+ const stack = clientStack.concat(this.middlewareStack);
+
+ const { logger } = configuration;
+ const clientName = "EC2Client";
+ const commandName = "DisableImageCommand";
+ const handlerExecutionContext: HandlerExecutionContext = {
+ logger,
+ clientName,
+ commandName,
+ inputFilterSensitiveLog: (_: any) => _,
+ outputFilterSensitiveLog: (_: any) => _,
+ [SMITHY_CONTEXT_KEY]: {
+ service: "AmazonEC2",
+ operation: "DisableImage",
+ },
+ };
+ const { requestHandler } = configuration;
+ return stack.resolve(
+ (request: FinalizeHandlerArguments) =>
+ requestHandler.handle(request.request as __HttpRequest, options || {}),
+ handlerExecutionContext
+ );
+ }
+
+ /**
+ * @internal
+ */
+ private serialize(input: DisableImageCommandInput, context: __SerdeContext): Promise<__HttpRequest> {
+ return se_DisableImageCommand(input, context);
+ }
+
+ /**
+ * @internal
+ */
+ private deserialize(output: __HttpResponse, context: __SerdeContext): Promise {
+ return de_DisableImageCommand(output, context);
+ }
+
+ // Start section: command_body_extra
+ // End section: command_body_extra
+}
diff --git a/clients/client-ec2/src/commands/EnableImageCommand.ts b/clients/client-ec2/src/commands/EnableImageCommand.ts
new file mode 100644
index 0000000000000..9a96facf84124
--- /dev/null
+++ b/clients/client-ec2/src/commands/EnableImageCommand.ts
@@ -0,0 +1,153 @@
+// smithy-typescript generated code
+import { EndpointParameterInstructions, getEndpointPlugin } from "@smithy/middleware-endpoint";
+import { getSerdePlugin } from "@smithy/middleware-serde";
+import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
+import { Command as $Command } from "@smithy/smithy-client";
+import {
+ FinalizeHandlerArguments,
+ Handler,
+ HandlerExecutionContext,
+ HttpHandlerOptions as __HttpHandlerOptions,
+ MetadataBearer as __MetadataBearer,
+ MiddlewareStack,
+ SerdeContext as __SerdeContext,
+ SMITHY_CONTEXT_KEY,
+} from "@smithy/types";
+
+import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
+import { EnableImageRequest, EnableImageResult } from "../models/models_5";
+import { de_EnableImageCommand, se_EnableImageCommand } from "../protocols/Aws_ec2";
+
+/**
+ * @public
+ */
+export { __MetadataBearer, $Command };
+/**
+ * @public
+ *
+ * The input for {@link EnableImageCommand}.
+ */
+export interface EnableImageCommandInput extends EnableImageRequest {}
+/**
+ * @public
+ *
+ * The output of {@link EnableImageCommand}.
+ */
+export interface EnableImageCommandOutput extends EnableImageResult, __MetadataBearer {}
+
+/**
+ * @public
+ * Re-enables a disabled AMI. The re-enabled AMI is marked as available
and can
+ * be used for instance launches, appears in describe operations, and can be shared. Amazon Web Services
+ * accounts, organizations, and Organizational Units that lost access to the AMI when it was
+ * disabled do not regain access automatically. Once the AMI is available, it can be shared with
+ * them again.
+ * Only the AMI owner can re-enable a disabled AMI.
+ * For more information, see Disable an AMI in the
+ * Amazon EC2 User Guide .
+ * @example
+ * Use a bare-bones client and the command you need to make an API call.
+ * ```javascript
+ * import { EC2Client, EnableImageCommand } from "@aws-sdk/client-ec2"; // ES Modules import
+ * // const { EC2Client, EnableImageCommand } = require("@aws-sdk/client-ec2"); // CommonJS import
+ * const client = new EC2Client(config);
+ * const input = { // EnableImageRequest
+ * ImageId: "STRING_VALUE", // required
+ * DryRun: true || false,
+ * };
+ * const command = new EnableImageCommand(input);
+ * const response = await client.send(command);
+ * // { // EnableImageResult
+ * // Return: true || false,
+ * // };
+ *
+ * ```
+ *
+ * @param EnableImageCommandInput - {@link EnableImageCommandInput}
+ * @returns {@link EnableImageCommandOutput}
+ * @see {@link EnableImageCommandInput} for command's `input` shape.
+ * @see {@link EnableImageCommandOutput} for command's `response` shape.
+ * @see {@link EC2ClientResolvedConfig | config} for EC2Client's `config` shape.
+ *
+ * @throws {@link EC2ServiceException}
+ * Base exception class for all service exceptions from EC2 service.
+ *
+ */
+export class EnableImageCommand extends $Command<
+ EnableImageCommandInput,
+ EnableImageCommandOutput,
+ EC2ClientResolvedConfig
+> {
+ // Start section: command_properties
+ // End section: command_properties
+
+ public static getEndpointParameterInstructions(): EndpointParameterInstructions {
+ return {
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
+ Endpoint: { type: "builtInParams", name: "endpoint" },
+ Region: { type: "builtInParams", name: "region" },
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
+ };
+ }
+
+ /**
+ * @public
+ */
+ constructor(readonly input: EnableImageCommandInput) {
+ // Start section: command_constructor
+ super();
+ // End section: command_constructor
+ }
+
+ /**
+ * @internal
+ */
+ resolveMiddleware(
+ clientStack: MiddlewareStack,
+ configuration: EC2ClientResolvedConfig,
+ options?: __HttpHandlerOptions
+ ): Handler {
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
+ this.middlewareStack.use(getEndpointPlugin(configuration, EnableImageCommand.getEndpointParameterInstructions()));
+
+ const stack = clientStack.concat(this.middlewareStack);
+
+ const { logger } = configuration;
+ const clientName = "EC2Client";
+ const commandName = "EnableImageCommand";
+ const handlerExecutionContext: HandlerExecutionContext = {
+ logger,
+ clientName,
+ commandName,
+ inputFilterSensitiveLog: (_: any) => _,
+ outputFilterSensitiveLog: (_: any) => _,
+ [SMITHY_CONTEXT_KEY]: {
+ service: "AmazonEC2",
+ operation: "EnableImage",
+ },
+ };
+ const { requestHandler } = configuration;
+ return stack.resolve(
+ (request: FinalizeHandlerArguments) =>
+ requestHandler.handle(request.request as __HttpRequest, options || {}),
+ handlerExecutionContext
+ );
+ }
+
+ /**
+ * @internal
+ */
+ private serialize(input: EnableImageCommandInput, context: __SerdeContext): Promise<__HttpRequest> {
+ return se_EnableImageCommand(input, context);
+ }
+
+ /**
+ * @internal
+ */
+ private deserialize(output: __HttpResponse, context: __SerdeContext): Promise {
+ return de_EnableImageCommand(output, context);
+ }
+
+ // Start section: command_body_extra
+ // End section: command_body_extra
+}
diff --git a/clients/client-ec2/src/commands/GetTransitGatewayRouteTablePropagationsCommand.ts b/clients/client-ec2/src/commands/GetTransitGatewayRouteTablePropagationsCommand.ts
index ac5e38a123ab1..25e77927c9887 100644
--- a/clients/client-ec2/src/commands/GetTransitGatewayRouteTablePropagationsCommand.ts
+++ b/clients/client-ec2/src/commands/GetTransitGatewayRouteTablePropagationsCommand.ts
@@ -15,10 +15,8 @@ import {
} from "@smithy/types";
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
-import {
- GetTransitGatewayRouteTablePropagationsRequest,
- GetTransitGatewayRouteTablePropagationsResult,
-} from "../models/models_5";
+import { GetTransitGatewayRouteTablePropagationsRequest } from "../models/models_5";
+import { GetTransitGatewayRouteTablePropagationsResult } from "../models/models_6";
import {
de_GetTransitGatewayRouteTablePropagationsCommand,
se_GetTransitGatewayRouteTablePropagationsCommand,
diff --git a/clients/client-ec2/src/commands/GetVerifiedAccessEndpointPolicyCommand.ts b/clients/client-ec2/src/commands/GetVerifiedAccessEndpointPolicyCommand.ts
index 1ae7eb7437f42..ab0293fda56cb 100644
--- a/clients/client-ec2/src/commands/GetVerifiedAccessEndpointPolicyCommand.ts
+++ b/clients/client-ec2/src/commands/GetVerifiedAccessEndpointPolicyCommand.ts
@@ -15,7 +15,7 @@ import {
} from "@smithy/types";
import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
-import { GetVerifiedAccessEndpointPolicyRequest, GetVerifiedAccessEndpointPolicyResult } from "../models/models_5";
+import { GetVerifiedAccessEndpointPolicyRequest, GetVerifiedAccessEndpointPolicyResult } from "../models/models_6";
import {
de_GetVerifiedAccessEndpointPolicyCommand,
se_GetVerifiedAccessEndpointPolicyCommand,
diff --git a/clients/client-ec2/src/commands/index.ts b/clients/client-ec2/src/commands/index.ts
index d1314f7eb9ccc..8d2806610bbdb 100644
--- a/clients/client-ec2/src/commands/index.ts
+++ b/clients/client-ec2/src/commands/index.ts
@@ -373,6 +373,7 @@ export * from "./DisableEbsEncryptionByDefaultCommand";
export * from "./DisableFastLaunchCommand";
export * from "./DisableFastSnapshotRestoresCommand";
export * from "./DisableImageBlockPublicAccessCommand";
+export * from "./DisableImageCommand";
export * from "./DisableImageDeprecationCommand";
export * from "./DisableIpamOrganizationAdminAccountCommand";
export * from "./DisableSerialConsoleAccessCommand";
@@ -400,6 +401,7 @@ export * from "./EnableEbsEncryptionByDefaultCommand";
export * from "./EnableFastLaunchCommand";
export * from "./EnableFastSnapshotRestoresCommand";
export * from "./EnableImageBlockPublicAccessCommand";
+export * from "./EnableImageCommand";
export * from "./EnableImageDeprecationCommand";
export * from "./EnableIpamOrganizationAdminAccountCommand";
export * from "./EnableReachabilityAnalyzerOrganizationSharingCommand";
diff --git a/clients/client-ec2/src/models/models_0.ts b/clients/client-ec2/src/models/models_0.ts
index 8d5465a0c8ff6..dd6c5e8bfe990 100644
--- a/clients/client-ec2/src/models/models_0.ts
+++ b/clients/client-ec2/src/models/models_0.ts
@@ -7934,6 +7934,7 @@ export const CapacityReservationInstancePlatform = {
RHEL_WITH_SQL_SERVER_STANDARD: "RHEL with SQL Server Standard",
RHEL_WITH_SQL_SERVER_WEB: "RHEL with SQL Server Web",
SUSE_LINUX: "SUSE Linux",
+ UBUNTU_PRO_LINUX: "Ubuntu Pro",
WINDOWS: "Windows",
WINDOWS_WITH_SQL_SERVER: "Windows with SQL Server",
WINDOWS_WITH_SQL_SERVER_ENTERPRISE: "Windows with SQL Server Enterprise",
diff --git a/clients/client-ec2/src/models/models_3.ts b/clients/client-ec2/src/models/models_3.ts
index 6089d72d02291..121d90636f271 100644
--- a/clients/client-ec2/src/models/models_3.ts
+++ b/clients/client-ec2/src/models/models_3.ts
@@ -8098,6 +8098,12 @@ export interface DescribeImagesRequest {
*
*
*
+ * source-instance-id
- The ID of the instance that the AMI was created from
+ * if the AMI was created using CreateImage. This filter is applicable only if the AMI was
+ * created using CreateImage .
+ *
+ *
+ *
* state
- The state of the image (available
| pending
* | failed
).
*
@@ -8159,6 +8165,13 @@ export interface DescribeImagesRequest {
*/
IncludeDeprecated?: boolean;
+ /**
+ * @public
+ * Specifies whether to include disabled AMIs.
+ * Default: No disabled AMIs are included in the response.
+ */
+ IncludeDisabled?: boolean;
+
/**
* @public
* Checks whether you have the required permissions for the action, without actually making the request,
@@ -8277,6 +8290,7 @@ export type DeviceType = (typeof DeviceType)[keyof typeof DeviceType];
export const ImageState = {
available: "available",
deregistered: "deregistered",
+ disabled: "disabled",
error: "error",
failed: "failed",
invalid: "invalid",
@@ -8435,7 +8449,8 @@ export interface Image {
/**
* @public
- *
The hypervisor type of the image.
+ * The hypervisor type of the image. Only xen
is supported. ovm
is
+ * not supported.
*/
Hypervisor?: HypervisorType | string;
@@ -8522,6 +8537,13 @@ export interface Image {
* the AMI in the Amazon EC2 User Guide .
*/
ImdsSupport?: ImdsSupportValues | string;
+
+ /**
+ * @public
+ * The ID of the instance that the AMI was created from if the AMI was created using CreateImage . This field only appears if the AMI was created using
+ * CreateImage.
+ */
+ SourceInstanceId?: string;
}
/**
diff --git a/clients/client-ec2/src/models/models_4.ts b/clients/client-ec2/src/models/models_4.ts
index ad767c7fefd59..a8aca5bf52b55 100644
--- a/clients/client-ec2/src/models/models_4.ts
+++ b/clients/client-ec2/src/models/models_4.ts
@@ -10702,6 +10702,10 @@ export interface DescribeStoreImageTasksRequest {
* bucket. For the filter value, specify the bucket name.
*
*
+ *
+ * When you specify the ImageIds
parameter, any filters that you specify are
+ * ignored. To use the filters, you must remove the ImageIds
parameter.
+ *
*/
Filters?: Filter[];
@@ -10716,8 +10720,8 @@ export interface DescribeStoreImageTasksRequest {
* The maximum number of items to return for this request.
* To get the next page of items, make another request with the token returned in the output.
* For more information, see Pagination .
- * You cannot specify this parameter and the ImageIDs
parameter
- * in the same call.
+ * You cannot specify this parameter and the ImageIds
parameter in the same
+ * call.
*/
MaxResults?: number;
}
diff --git a/clients/client-ec2/src/models/models_5.ts b/clients/client-ec2/src/models/models_5.ts
index f037bafe08b8e..f251cea1526b3 100644
--- a/clients/client-ec2/src/models/models_5.ts
+++ b/clients/client-ec2/src/models/models_5.ts
@@ -3164,6 +3164,36 @@ export interface DisableFastSnapshotRestoresResult {
Unsuccessful?: DisableFastSnapshotRestoreErrorItem[];
}
+/**
+ * @public
+ */
+export interface DisableImageRequest {
+ /**
+ * @public
+ * The ID of the AMI.
+ */
+ ImageId: string | undefined;
+
+ /**
+ * @public
+ * Checks whether you have the required permissions for the action, without actually making the request,
+ * and provides an error response. If you have the required permissions, the error response is
+ * DryRunOperation
. Otherwise, it is UnauthorizedOperation
.
+ */
+ DryRun?: boolean;
+}
+
+/**
+ * @public
+ */
+export interface DisableImageResult {
+ /**
+ * @public
+ * Returns true
if the request succeeds; otherwise, it returns an error.
+ */
+ Return?: boolean;
+}
+
/**
* @public
*/
@@ -4409,6 +4439,36 @@ export interface EnableFastSnapshotRestoresResult {
Unsuccessful?: EnableFastSnapshotRestoreErrorItem[];
}
+/**
+ * @public
+ */
+export interface EnableImageRequest {
+ /**
+ * @public
+ * The ID of the AMI.
+ */
+ ImageId: string | undefined;
+
+ /**
+ * @public
+ * Checks whether you have the required permissions for the action, without actually making the request,
+ * and provides an error response. If you have the required permissions, the error response is
+ * DryRunOperation
. Otherwise, it is UnauthorizedOperation
.
+ */
+ DryRun?: boolean;
+}
+
+/**
+ * @public
+ */
+export interface EnableImageResult {
+ /**
+ * @public
+ * Returns true
if the request succeeds; otherwise, it returns an error.
+ */
+ Return?: boolean;
+}
+
/**
* @public
* @enum
@@ -8405,95 +8465,6 @@ export interface GetTransitGatewayRouteTablePropagationsRequest {
DryRun?: boolean;
}
-/**
- * @public
- * Describes a route table propagation.
- */
-export interface TransitGatewayRouteTablePropagation {
- /**
- * @public
- * The ID of the attachment.
- */
- TransitGatewayAttachmentId?: string;
-
- /**
- * @public
- * The ID of the resource.
- */
- ResourceId?: string;
-
- /**
- * @public
- * The type of resource. Note that the tgw-peering
resource type has been deprecated.
- */
- ResourceType?: TransitGatewayAttachmentResourceType | string;
-
- /**
- * @public
- * The state of the resource.
- */
- State?: TransitGatewayPropagationState | string;
-
- /**
- * @public
- * The ID of the transit gateway route table announcement.
- */
- TransitGatewayRouteTableAnnouncementId?: string;
-}
-
-/**
- * @public
- */
-export interface GetTransitGatewayRouteTablePropagationsResult {
- /**
- * @public
- * Information about the route table propagations.
- */
- TransitGatewayRouteTablePropagations?: TransitGatewayRouteTablePropagation[];
-
- /**
- * @public
- * The token to use to retrieve the next page of results. This value is null
when there are no more results to return.
- */
- NextToken?: string;
-}
-
-/**
- * @public
- */
-export interface GetVerifiedAccessEndpointPolicyRequest {
- /**
- * @public
- * The ID of the Verified Access endpoint.
- */
- VerifiedAccessEndpointId: string | undefined;
-
- /**
- * @public
- * Checks whether you have the required permissions for the action, without actually making the request,
- * and provides an error response. If you have the required permissions, the error response is DryRunOperation
.
- * Otherwise, it is UnauthorizedOperation
.
- */
- DryRun?: boolean;
-}
-
-/**
- * @public
- */
-export interface GetVerifiedAccessEndpointPolicyResult {
- /**
- * @public
- * The status of the Verified Access policy.
- */
- PolicyEnabled?: boolean;
-
- /**
- * @public
- * The Verified Access policy document.
- */
- PolicyDocument?: string;
-}
-
/**
* @internal
*/
diff --git a/clients/client-ec2/src/models/models_6.ts b/clients/client-ec2/src/models/models_6.ts
index 50d6136b5a874..cac590176b3fc 100644
--- a/clients/client-ec2/src/models/models_6.ts
+++ b/clients/client-ec2/src/models/models_6.ts
@@ -28,6 +28,7 @@ import {
RouteTableAssociationState,
Tag,
TagSpecification,
+ TransitGatewayAttachmentResourceType,
TransitGatewayMulticastDomainAssociations,
TransitGatewayPeeringAttachment,
TransitGatewayVpcAttachment,
@@ -60,7 +61,6 @@ import {
LaunchTemplate,
LocalGatewayRoute,
ManagedPrefixList,
- MarketType,
Placement,
PlatformValues,
RequestIpamResourceTag,
@@ -156,11 +156,101 @@ import {
InstanceFamilyCreditSpecification,
IpamResourceCidr,
Purchase,
+ TransitGatewayPropagationState,
UnlimitedSupportedInstanceFamily,
VerifiedAccessInstanceLoggingConfiguration,
VolumeModification,
} from "./models_5";
+/**
+ * @public
+ * Describes a route table propagation.
+ */
+export interface TransitGatewayRouteTablePropagation {
+ /**
+ * @public
+ * The ID of the attachment.
+ */
+ TransitGatewayAttachmentId?: string;
+
+ /**
+ * @public
+ * The ID of the resource.
+ */
+ ResourceId?: string;
+
+ /**
+ * @public
+ * The type of resource. Note that the tgw-peering
resource type has been deprecated.
+ */
+ ResourceType?: TransitGatewayAttachmentResourceType | string;
+
+ /**
+ * @public
+ * The state of the resource.
+ */
+ State?: TransitGatewayPropagationState | string;
+
+ /**
+ * @public
+ * The ID of the transit gateway route table announcement.
+ */
+ TransitGatewayRouteTableAnnouncementId?: string;
+}
+
+/**
+ * @public
+ */
+export interface GetTransitGatewayRouteTablePropagationsResult {
+ /**
+ * @public
+ * Information about the route table propagations.
+ */
+ TransitGatewayRouteTablePropagations?: TransitGatewayRouteTablePropagation[];
+
+ /**
+ * @public
+ * The token to use to retrieve the next page of results. This value is null
when there are no more results to return.
+ */
+ NextToken?: string;
+}
+
+/**
+ * @public
+ */
+export interface GetVerifiedAccessEndpointPolicyRequest {
+ /**
+ * @public
+ * The ID of the Verified Access endpoint.
+ */
+ VerifiedAccessEndpointId: string | undefined;
+
+ /**
+ * @public
+ * Checks whether you have the required permissions for the action, without actually making the request,
+ * and provides an error response. If you have the required permissions, the error response is DryRunOperation
.
+ * Otherwise, it is UnauthorizedOperation
.
+ */
+ DryRun?: boolean;
+}
+
+/**
+ * @public
+ */
+export interface GetVerifiedAccessEndpointPolicyResult {
+ /**
+ * @public
+ * The status of the Verified Access policy.
+ */
+ PolicyEnabled?: boolean;
+
+ /**
+ * @public
+ * The Verified Access policy document.
+ */
+ PolicyDocument?: string;
+}
+
/**
* @public
*/
@@ -9133,115 +9223,6 @@ export interface ElasticInferenceAccelerator {
Count?: number;
}
-/**
- * @public
- * Indicates whether the instance is enabled for Amazon Web Services Nitro Enclaves. For
- * more information, see What is Amazon Web Services Nitro
- * Enclaves? in the Amazon Web Services Nitro Enclaves User
- * Guide .
- */
-export interface EnclaveOptionsRequest {
- /**
- * @public
- * To enable the instance for Amazon Web Services Nitro Enclaves, set this parameter to
- * true
.
- */
- Enabled?: boolean;
-}
-
-/**
- * @public
- * Indicates whether your instance is configured for hibernation. This parameter is valid
- * only if the instance meets the hibernation
- * prerequisites . For more information, see Hibernate your instance in the
- * Amazon EC2 User Guide .
- */
-export interface HibernationOptionsRequest {
- /**
- * @public
- * Set to true
to enable your instance for hibernation.
- * Default: false
- *
- */
- Configured?: boolean;
-}
-
-/**
- * @public
- * The options for Spot Instances.
- */
-export interface SpotMarketOptions {
- /**
- * @public
- * The maximum hourly price that you're willing to pay for a Spot Instance. We do not
- * recommend using this parameter because it can lead to increased interruptions. If you do
- * not specify this parameter, you will pay the current Spot price.
- *
- * If you specify a maximum price, your Spot Instances will be interrupted more
- * frequently than if you do not specify this parameter.
- *
- */
- MaxPrice?: string;
-
- /**
- * @public
- * The Spot Instance request type. For RunInstances , persistent
- * Spot Instance requests are only supported when the instance interruption behavior is
- * either hibernate
or stop
.
- */
- SpotInstanceType?: SpotInstanceType | string;
-
- /**
- * @public
- * Deprecated.
- */
- BlockDurationMinutes?: number;
-
- /**
- * @public
- * The end date of the request, in UTC format
- * (YYYY -MM -DD THH :MM :SS Z).
- * Supported only for persistent requests.
- *
- *
- * For a persistent request, the request remains active until the
- * ValidUntil
date and time is reached. Otherwise, the request
- * remains active until you cancel it.
- *
- *
- * For a one-time request, ValidUntil
is not supported. The request
- * remains active until all instances launch or you cancel the request.
- *
- *
- */
- ValidUntil?: Date;
-
- /**
- * @public
- * The behavior when a Spot Instance is interrupted. The default is
- * terminate
.
- */
- InstanceInterruptionBehavior?: InstanceInterruptionBehavior | string;
-}
-
-/**
- * @public
- * Describes the market (purchasing) option for the instances.
- */
-export interface InstanceMarketOptionsRequest {
- /**
- * @public
- * The market type.
- */
- MarketType?: MarketType | string;
-
- /**
- * @public
- * The options for Spot Instances.
- */
- SpotOptions?: SpotMarketOptions;
-}
-
/**
* @internal
*/
diff --git a/clients/client-ec2/src/models/models_7.ts b/clients/client-ec2/src/models/models_7.ts
index 3041c4005b944..e51d0ff627e59 100644
--- a/clients/client-ec2/src/models/models_7.ts
+++ b/clients/client-ec2/src/models/models_7.ts
@@ -15,10 +15,13 @@ import {
CreditSpecificationRequest,
ElasticGpuSpecification,
HostnameType,
+ InstanceInterruptionBehavior,
InstanceIpv6Address,
LocalGatewayRoute,
+ MarketType,
Placement,
ShutdownBehavior,
+ SpotInstanceType,
} from "./models_1";
import { TransitGatewayRoute } from "./models_2";
import { ClientVpnConnectionStatus, Filter } from "./models_3";
@@ -38,12 +41,118 @@ import {
CapacityReservationSpecification,
CpuOptionsRequest,
ElasticInferenceAccelerator,
- EnclaveOptionsRequest,
- HibernationOptionsRequest,
- InstanceMarketOptionsRequest,
InstanceMonitoring,
} from "./models_6";
+/**
+ * @public
+ * Indicates whether the instance is enabled for Amazon Web Services Nitro Enclaves. For
+ * more information, see What is Amazon Web Services Nitro
+ * Enclaves? in the Amazon Web Services Nitro Enclaves User
+ * Guide .
+ */
+export interface EnclaveOptionsRequest {
+ /**
+ * @public
+ * To enable the instance for Amazon Web Services Nitro Enclaves, set this parameter to
+ * true
.
+ */
+ Enabled?: boolean;
+}
+
+/**
+ * @public
+ * Indicates whether your instance is configured for hibernation. This parameter is valid
+ * only if the instance meets the hibernation
+ * prerequisites . For more information, see Hibernate your instance in the
+ * Amazon EC2 User Guide .
+ */
+export interface HibernationOptionsRequest {
+ /**
+ * @public
+ * Set to true
to enable your instance for hibernation.
+ * Default: false
+ *
+ */
+ Configured?: boolean;
+}
+
+/**
+ * @public
+ * The options for Spot Instances.
+ */
+export interface SpotMarketOptions {
+ /**
+ * @public
+ * The maximum hourly price that you're willing to pay for a Spot Instance. We do not
+ * recommend using this parameter because it can lead to increased interruptions. If you do
+ * not specify this parameter, you will pay the current Spot price.
+ *
+ * If you specify a maximum price, your Spot Instances will be interrupted more
+ * frequently than if you do not specify this parameter.
+ *
+ */
+ MaxPrice?: string;
+
+ /**
+ * @public
+ * The Spot Instance request type. For RunInstances , persistent
+ * Spot Instance requests are only supported when the instance interruption behavior is
+ * either hibernate
or stop
.
+ */
+ SpotInstanceType?: SpotInstanceType | string;
+
+ /**
+ * @public
+ * Deprecated.
+ */
+ BlockDurationMinutes?: number;
+
+ /**
+ * @public
+ * The end date of the request, in UTC format
+ * (YYYY -MM -DD THH :MM :SS Z).
+ * Supported only for persistent requests.
+ *
+ *
+ * For a persistent request, the request remains active until the
+ * ValidUntil
date and time is reached. Otherwise, the request
+ * remains active until you cancel it.
+ *
+ *
+ * For a one-time request, ValidUntil
is not supported. The request
+ * remains active until all instances launch or you cancel the request.
+ *
+ *
+ */
+ ValidUntil?: Date;
+
+ /**
+ * @public
+ * The behavior when a Spot Instance is interrupted. The default is
+ * terminate
.
+ */
+ InstanceInterruptionBehavior?: InstanceInterruptionBehavior | string;
+}
+
+/**
+ * @public
+ * Describes the market (purchasing) option for the instances.
+ */
+export interface InstanceMarketOptionsRequest {
+ /**
+ * @public
+ * The market type.
+ */
+ MarketType?: MarketType | string;
+
+ /**
+ * @public
+ * The options for Spot Instances.
+ */
+ SpotOptions?: SpotMarketOptions;
+}
+
/**
* @public
* The launch template to use. You must specify either the launch template ID or launch
diff --git a/clients/client-ec2/src/protocols/Aws_ec2.ts b/clients/client-ec2/src/protocols/Aws_ec2.ts
index 24eac5390e1d2..d177671e48b9f 100644
--- a/clients/client-ec2/src/protocols/Aws_ec2.ts
+++ b/clients/client-ec2/src/protocols/Aws_ec2.ts
@@ -1271,6 +1271,7 @@ import {
DisableImageBlockPublicAccessCommandInput,
DisableImageBlockPublicAccessCommandOutput,
} from "../commands/DisableImageBlockPublicAccessCommand";
+import { DisableImageCommandInput, DisableImageCommandOutput } from "../commands/DisableImageCommand";
import {
DisableImageDeprecationCommandInput,
DisableImageDeprecationCommandOutput,
@@ -1376,6 +1377,7 @@ import {
EnableImageBlockPublicAccessCommandInput,
EnableImageBlockPublicAccessCommandOutput,
} from "../commands/EnableImageBlockPublicAccessCommand";
+import { EnableImageCommandInput, EnableImageCommandOutput } from "../commands/EnableImageCommand";
import {
EnableImageDeprecationCommandInput,
EnableImageDeprecationCommandOutput,
@@ -3371,6 +3373,8 @@ import {
DisableImageBlockPublicAccessResult,
DisableImageDeprecationRequest,
DisableImageDeprecationResult,
+ DisableImageRequest,
+ DisableImageResult,
DisableIpamOrganizationAdminAccountRequest,
DisableIpamOrganizationAdminAccountResult,
DisableSerialConsoleAccessRequest,
@@ -3426,6 +3430,8 @@ import {
EnableImageBlockPublicAccessResult,
EnableImageDeprecationRequest,
EnableImageDeprecationResult,
+ EnableImageRequest,
+ EnableImageResult,
EnableIpamOrganizationAdminAccountRequest,
EnableIpamOrganizationAdminAccountResult,
EnableReachabilityAnalyzerOrganizationSharingRequest,
@@ -3528,9 +3534,6 @@ import {
GetTransitGatewayRouteTableAssociationsRequest,
GetTransitGatewayRouteTableAssociationsResult,
GetTransitGatewayRouteTablePropagationsRequest,
- GetTransitGatewayRouteTablePropagationsResult,
- GetVerifiedAccessEndpointPolicyRequest,
- GetVerifiedAccessEndpointPolicyResult,
InstanceEventWindowDisassociationRequest,
InstanceFamilyCreditSpecification,
InstanceRequirementsWithMetadataRequest,
@@ -3561,7 +3564,6 @@ import {
TransitGatewayPolicyTableEntry,
TransitGatewayPropagation,
TransitGatewayRouteTableAssociation,
- TransitGatewayRouteTablePropagation,
VerifiedAccessInstanceLoggingConfiguration,
VerifiedAccessLogCloudWatchLogsDestination,
VerifiedAccessLogDeliveryStatus,
@@ -3590,7 +3592,9 @@ import {
DnsServersOptionsModifyStructure,
EbsInstanceBlockDeviceSpecification,
ElasticInferenceAccelerator,
- EnclaveOptionsRequest,
+ GetTransitGatewayRouteTablePropagationsResult,
+ GetVerifiedAccessEndpointPolicyRequest,
+ GetVerifiedAccessEndpointPolicyResult,
GetVerifiedAccessGroupPolicyRequest,
GetVerifiedAccessGroupPolicyResult,
GetVpnConnectionDeviceSampleConfigurationRequest,
@@ -3599,7 +3603,6 @@ import {
GetVpnConnectionDeviceTypesResult,
GetVpnTunnelReplacementStatusRequest,
GetVpnTunnelReplacementStatusResult,
- HibernationOptionsRequest,
ImageDiskContainer,
ImageRecycleBinInfo,
ImportClientVpnClientCertificateRevocationListRequest,
@@ -3618,7 +3621,6 @@ import {
ImportVolumeResult,
InstanceBlockDeviceMappingSpecification,
InstanceCreditSpecificationRequest,
- InstanceMarketOptionsRequest,
InstanceMonitoring,
IpamCidrAuthorizationContext,
LaunchPermissionModifications,
@@ -3853,12 +3855,12 @@ import {
SecurityGroupRuleUpdate,
SnapshotDiskContainer,
SnapshotRecycleBinInfo,
- SpotMarketOptions,
SuccessfulInstanceCreditSpecificationItem,
TrafficMirrorFilterRuleField,
TrafficMirrorSessionField,
TransitGatewayMulticastRegisteredGroupMembers,
TransitGatewayMulticastRegisteredGroupSources,
+ TransitGatewayRouteTablePropagation,
UnsuccessfulInstanceCreditSpecificationItem,
UnsuccessfulInstanceCreditSpecificationItemError,
UserBucket,
@@ -3871,7 +3873,10 @@ import {
VpnConnectionDeviceType,
} from "../models/models_6";
import {
+ EnclaveOptionsRequest,
+ HibernationOptionsRequest,
InstanceMaintenanceOptionsRequest,
+ InstanceMarketOptionsRequest,
InstanceMetadataOptionsRequest,
InstanceStateChange,
LaunchTemplateSpecification,
@@ -3897,6 +3902,7 @@ import {
SearchTransitGatewayRoutesResult,
SecurityGroupRuleDescription,
SendDiagnosticInterruptRequest,
+ SpotMarketOptions,
StartInstancesRequest,
StartInstancesResult,
StartNetworkInsightsAccessScopeAnalysisRequest,
@@ -10269,6 +10275,23 @@ export const se_DisableFastSnapshotRestoresCommand = async (
return buildHttpRpcRequest(context, headers, "/", undefined, body);
};
+/**
+ * serializeAws_ec2DisableImageCommand
+ */
+export const se_DisableImageCommand = async (
+ input: DisableImageCommandInput,
+ context: __SerdeContext
+): Promise<__HttpRequest> => {
+ const headers: __HeaderBag = SHARED_HEADERS;
+ let body: any;
+ body = buildFormUrlencodedString({
+ ...se_DisableImageRequest(input, context),
+ Action: "DisableImage",
+ Version: "2016-11-15",
+ });
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
+};
+
/**
* serializeAws_ec2DisableImageBlockPublicAccessCommand
*/
@@ -10728,6 +10751,23 @@ export const se_EnableFastSnapshotRestoresCommand = async (
return buildHttpRpcRequest(context, headers, "/", undefined, body);
};
+/**
+ * serializeAws_ec2EnableImageCommand
+ */
+export const se_EnableImageCommand = async (
+ input: EnableImageCommandInput,
+ context: __SerdeContext
+): Promise<__HttpRequest> => {
+ const headers: __HeaderBag = SHARED_HEADERS;
+ let body: any;
+ body = buildFormUrlencodedString({
+ ...se_EnableImageRequest(input, context),
+ Action: "EnableImage",
+ Version: "2016-11-15",
+ });
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
+};
+
/**
* serializeAws_ec2EnableImageBlockPublicAccessCommand
*/
@@ -28907,6 +28947,46 @@ const de_DisableFastSnapshotRestoresCommandError = async (
});
};
+/**
+ * deserializeAws_ec2DisableImageCommand
+ */
+export const de_DisableImageCommand = async (
+ output: __HttpResponse,
+ context: __SerdeContext
+): Promise => {
+ if (output.statusCode >= 300) {
+ return de_DisableImageCommandError(output, context);
+ }
+ const data: any = await parseBody(output.body, context);
+ let contents: any = {};
+ contents = de_DisableImageResult(data, context);
+ const response: DisableImageCommandOutput = {
+ $metadata: deserializeMetadata(output),
+ ...contents,
+ };
+ return response;
+};
+
+/**
+ * deserializeAws_ec2DisableImageCommandError
+ */
+const de_DisableImageCommandError = async (
+ output: __HttpResponse,
+ context: __SerdeContext
+): Promise => {
+ const parsedOutput: any = {
+ ...output,
+ body: await parseErrorBody(output.body, context),
+ };
+ const errorCode = loadEc2ErrorCode(output, parsedOutput.body);
+ const parsedBody = parsedOutput.body;
+ return throwDefaultError({
+ output,
+ parsedBody: parsedBody.Errors.Error,
+ errorCode,
+ });
+};
+
/**
* deserializeAws_ec2DisableImageBlockPublicAccessCommand
*/
@@ -29978,6 +30058,46 @@ const de_EnableFastSnapshotRestoresCommandError = async (
});
};
+/**
+ * deserializeAws_ec2EnableImageCommand
+ */
+export const de_EnableImageCommand = async (
+ output: __HttpResponse,
+ context: __SerdeContext
+): Promise => {
+ if (output.statusCode >= 300) {
+ return de_EnableImageCommandError(output, context);
+ }
+ const data: any = await parseBody(output.body, context);
+ let contents: any = {};
+ contents = de_EnableImageResult(data, context);
+ const response: EnableImageCommandOutput = {
+ $metadata: deserializeMetadata(output),
+ ...contents,
+ };
+ return response;
+};
+
+/**
+ * deserializeAws_ec2EnableImageCommandError
+ */
+const de_EnableImageCommandError = async (
+ output: __HttpResponse,
+ context: __SerdeContext
+): Promise => {
+ const parsedOutput: any = {
+ ...output,
+ body: await parseErrorBody(output.body, context),
+ };
+ const errorCode = loadEc2ErrorCode(output, parsedOutput.body);
+ const parsedBody = parsedOutput.body;
+ return throwDefaultError({
+ output,
+ parsedBody: parsedBody.Errors.Error,
+ errorCode,
+ });
+};
+
/**
* deserializeAws_ec2EnableImageBlockPublicAccessCommand
*/
@@ -46688,6 +46808,9 @@ const se_DescribeImagesRequest = (input: DescribeImagesRequest, context: __Serde
if (input.IncludeDeprecated != null) {
entries["IncludeDeprecated"] = input.IncludeDeprecated;
}
+ if (input.IncludeDisabled != null) {
+ entries["IncludeDisabled"] = input.IncludeDisabled;
+ }
if (input.DryRun != null) {
entries["DryRun"] = input.DryRun;
}
@@ -50825,6 +50948,20 @@ const se_DisableImageDeprecationRequest = (input: DisableImageDeprecationRequest
return entries;
};
+/**
+ * serializeAws_ec2DisableImageRequest
+ */
+const se_DisableImageRequest = (input: DisableImageRequest, context: __SerdeContext): any => {
+ const entries: any = {};
+ if (input.ImageId != null) {
+ entries["ImageId"] = input.ImageId;
+ }
+ if (input.DryRun != null) {
+ entries["DryRun"] = input.DryRun;
+ }
+ return entries;
+};
+
/**
* serializeAws_ec2DisableIpamOrganizationAdminAccountRequest
*/
@@ -51638,6 +51775,20 @@ const se_EnableImageDeprecationRequest = (input: EnableImageDeprecationRequest,
return entries;
};
+/**
+ * serializeAws_ec2EnableImageRequest
+ */
+const se_EnableImageRequest = (input: EnableImageRequest, context: __SerdeContext): any => {
+ const entries: any = {};
+ if (input.ImageId != null) {
+ entries["ImageId"] = input.ImageId;
+ }
+ if (input.DryRun != null) {
+ entries["DryRun"] = input.DryRun;
+ }
+ return entries;
+};
+
/**
* serializeAws_ec2EnableIpamOrganizationAdminAccountRequest
*/
@@ -74823,6 +74974,17 @@ const de_DisableImageDeprecationResult = (output: any, context: __SerdeContext):
return contents;
};
+/**
+ * deserializeAws_ec2DisableImageResult
+ */
+const de_DisableImageResult = (output: any, context: __SerdeContext): DisableImageResult => {
+ const contents: any = {};
+ if (output["return"] !== undefined) {
+ contents.Return = __parseBoolean(output["return"]);
+ }
+ return contents;
+};
+
/**
* deserializeAws_ec2DisableIpamOrganizationAdminAccountResult
*/
@@ -75825,6 +75987,17 @@ const de_EnableImageDeprecationResult = (output: any, context: __SerdeContext):
return contents;
};
+/**
+ * deserializeAws_ec2EnableImageResult
+ */
+const de_EnableImageResult = (output: any, context: __SerdeContext): EnableImageResult => {
+ const contents: any = {};
+ if (output["return"] !== undefined) {
+ contents.Return = __parseBoolean(output["return"]);
+ }
+ return contents;
+};
+
/**
* deserializeAws_ec2EnableIpamOrganizationAdminAccountResult
*/
@@ -78673,6 +78846,9 @@ const de_Image = (output: any, context: __SerdeContext): Image => {
if (output["imdsSupport"] !== undefined) {
contents.ImdsSupport = __expectString(output["imdsSupport"]);
}
+ if (output["sourceInstanceId"] !== undefined) {
+ contents.SourceInstanceId = __expectString(output["sourceInstanceId"]);
+ }
return contents;
};
diff --git a/codegen/sdk-codegen/aws-models/ec2.json b/codegen/sdk-codegen/aws-models/ec2.json
index f449e78f4a453..85dad52fb5fdc 100644
--- a/codegen/sdk-codegen/aws-models/ec2.json
+++ b/codegen/sdk-codegen/aws-models/ec2.json
@@ -3254,6 +3254,9 @@
{
"target": "com.amazonaws.ec2#DisableFastSnapshotRestores"
},
+ {
+ "target": "com.amazonaws.ec2#DisableImage"
+ },
{
"target": "com.amazonaws.ec2#DisableImageBlockPublicAccess"
},
@@ -3335,6 +3338,9 @@
{
"target": "com.amazonaws.ec2#EnableFastSnapshotRestores"
},
+ {
+ "target": "com.amazonaws.ec2#EnableImage"
+ },
{
"target": "com.amazonaws.ec2#EnableImageBlockPublicAccess"
},
@@ -10725,6 +10731,12 @@
"traits": {
"smithy.api#enumValue": "RHEL with HA and SQL Server Enterprise"
}
+ },
+ "UBUNTU_PRO_LINUX": {
+ "target": "smithy.api#Unit",
+ "traits": {
+ "smithy.api#enumValue": "Ubuntu Pro"
+ }
}
}
},
@@ -30607,7 +30619,7 @@
"Filters": {
"target": "com.amazonaws.ec2#FilterList",
"traits": {
- "smithy.api#documentation": "The filters.
\n \n \n \n architecture
- The image architecture (i386
| x86_64
| \n arm64
| x86_64_mac
| arm64_mac
).
\n \n \n \n block-device-mapping.delete-on-termination
- A Boolean value that indicates\n \twhether the Amazon EBS volume is deleted on instance termination.
\n \n \n \n block-device-mapping.device-name
- The device name specified in the block device mapping (for\n example, /dev/sdh
or xvdh
).
\n \n \n \n block-device-mapping.snapshot-id
- The ID of the snapshot used for the Amazon EBS\n volume.
\n \n \n \n block-device-mapping.volume-size
- The volume size of the Amazon EBS volume, in GiB.
\n \n \n \n block-device-mapping.volume-type
- The volume type of the Amazon EBS volume\n (io1
| io2
| gp2
| gp3
| sc1\n
| st1
| standard
).
\n \n \n \n block-device-mapping.encrypted
- A Boolean that indicates whether the Amazon EBS volume is encrypted.
\n \n \n \n creation-date
- The time when the image was created, in the ISO 8601\n format in the UTC time zone (YYYY-MM-DDThh:mm:ss.sssZ), for example,\n 2021-09-29T11:04:43.305Z
. You can use a wildcard (*
), for\n example, 2021-09-29T*
, which matches an entire day.
\n \n \n \n description
- The description of the image (provided during image\n creation).
\n \n \n \n ena-support
- A Boolean that indicates whether enhanced networking\n with ENA is enabled.
\n \n \n \n hypervisor
- The hypervisor type (ovm
|\n xen
).
\n \n \n \n image-id
- The ID of the image.
\n \n \n \n image-type
- The image type (machine
| kernel
|\n ramdisk
).
\n \n \n \n is-public
- A Boolean that indicates whether the image is public.
\n \n \n \n kernel-id
- The kernel ID.
\n \n \n \n manifest-location
- The location of the image manifest.
\n \n \n \n name
- The name of the AMI (provided during image creation).
\n \n \n \n owner-alias
- The owner alias (amazon
| aws-marketplace
). \n The valid aliases are defined in an Amazon-maintained list. This is not the Amazon Web Services account alias that can be \n \tset using the IAM console. We recommend that you use the Owner \n \trequest parameter instead of this filter.
\n \n \n \n owner-id
- The Amazon Web Services account ID of the owner. We recommend that you use the \n \t\tOwner request parameter instead of this filter.
\n \n \n \n platform
- The platform. The only supported value is windows
.
\n \n \n \n product-code
- The product code.
\n \n \n \n product-code.type
- The type of the product code (marketplace
).
\n \n \n \n ramdisk-id
- The RAM disk ID.
\n \n \n \n root-device-name
- The device name of the root device volume (for example, /dev/sda1
).
\n \n \n \n root-device-type
- The type of the root device volume (ebs
|\n instance-store
).
\n \n \n \n state
- The state of the image (available
| pending
\n | failed
).
\n \n \n \n state-reason-code
- The reason code for the state change.
\n \n \n \n state-reason-message
- The message for the state change.
\n \n \n \n sriov-net-support
- A value of simple
indicates\n that enhanced networking with the Intel 82599 VF interface is enabled.
\n \n \n \n tag
: - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value.\n For example, to find all resources that have a tag with the key Owner
and the value TeamA
, specify tag:Owner
for the filter name and TeamA
for the filter value.
\n \n \n \n tag-key
- The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.
\n \n \n \n virtualization-type
- The virtualization type (paravirtual
|\n hvm
).
\n \n ",
+ "smithy.api#documentation": "The filters.
\n \n \n \n architecture
- The image architecture (i386
| x86_64
| \n arm64
| x86_64_mac
| arm64_mac
).
\n \n \n \n block-device-mapping.delete-on-termination
- A Boolean value that indicates\n \twhether the Amazon EBS volume is deleted on instance termination.
\n \n \n \n block-device-mapping.device-name
- The device name specified in the block device mapping (for\n example, /dev/sdh
or xvdh
).
\n \n \n \n block-device-mapping.snapshot-id
- The ID of the snapshot used for the Amazon EBS\n volume.
\n \n \n \n block-device-mapping.volume-size
- The volume size of the Amazon EBS volume, in GiB.
\n \n \n \n block-device-mapping.volume-type
- The volume type of the Amazon EBS volume\n (io1
| io2
| gp2
| gp3
| sc1\n
| st1
| standard
).
\n \n \n \n block-device-mapping.encrypted
- A Boolean that indicates whether the Amazon EBS volume is encrypted.
\n \n \n \n creation-date
- The time when the image was created, in the ISO 8601\n format in the UTC time zone (YYYY-MM-DDThh:mm:ss.sssZ), for example,\n 2021-09-29T11:04:43.305Z
. You can use a wildcard (*
), for\n example, 2021-09-29T*
, which matches an entire day.
\n \n \n \n description
- The description of the image (provided during image\n creation).
\n \n \n \n ena-support
- A Boolean that indicates whether enhanced networking\n with ENA is enabled.
\n \n \n \n hypervisor
- The hypervisor type (ovm
|\n xen
).
\n \n \n \n image-id
- The ID of the image.
\n \n \n \n image-type
- The image type (machine
| kernel
|\n ramdisk
).
\n \n \n \n is-public
- A Boolean that indicates whether the image is public.
\n \n \n \n kernel-id
- The kernel ID.
\n \n \n \n manifest-location
- The location of the image manifest.
\n \n \n \n name
- The name of the AMI (provided during image creation).
\n \n \n \n owner-alias
- The owner alias (amazon
| aws-marketplace
). \n The valid aliases are defined in an Amazon-maintained list. This is not the Amazon Web Services account alias that can be \n \tset using the IAM console. We recommend that you use the Owner \n \trequest parameter instead of this filter.
\n \n \n \n owner-id
- The Amazon Web Services account ID of the owner. We recommend that you use the \n \t\tOwner request parameter instead of this filter.
\n \n \n \n platform
- The platform. The only supported value is windows
.
\n \n \n \n product-code
- The product code.
\n \n \n \n product-code.type
- The type of the product code (marketplace
).
\n \n \n \n ramdisk-id
- The RAM disk ID.
\n \n \n \n root-device-name
- The device name of the root device volume (for example, /dev/sda1
).
\n \n \n \n root-device-type
- The type of the root device volume (ebs
|\n instance-store
).
\n \n \n \n source-instance-id
- The ID of the instance that the AMI was created from\n if the AMI was created using CreateImage. This filter is applicable only if the AMI was\n created using CreateImage .
\n \n \n \n state
- The state of the image (available
| pending
\n | failed
).
\n \n \n \n state-reason-code
- The reason code for the state change.
\n \n \n \n state-reason-message
- The message for the state change.
\n \n \n \n sriov-net-support
- A value of simple
indicates\n that enhanced networking with the Intel 82599 VF interface is enabled.
\n \n \n \n tag
: - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value.\n For example, to find all resources that have a tag with the key Owner
and the value TeamA
, specify tag:Owner
for the filter name and TeamA
for the filter value.
\n \n \n \n tag-key
- The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.
\n \n \n \n virtualization-type
- The virtualization type (paravirtual
|\n hvm
).
\n \n ",
"smithy.api#xmlName": "Filter"
}
},
@@ -30633,6 +30645,14 @@
"smithy.api#documentation": "Specifies whether to include deprecated AMIs.
\n Default: No deprecated AMIs are included in the response.
\n \n If you are the AMI owner, all deprecated AMIs appear in the response regardless of what\n you specify for this parameter.
\n "
}
},
+ "IncludeDisabled": {
+ "target": "com.amazonaws.ec2#Boolean",
+ "traits": {
+ "smithy.api#clientOptional": {},
+ "smithy.api#default": false,
+ "smithy.api#documentation": "Specifies whether to include disabled AMIs.
\n Default: No disabled AMIs are included in the response.
"
+ }
+ },
"DryRun": {
"target": "com.amazonaws.ec2#Boolean",
"traits": {
@@ -37718,7 +37738,7 @@
"Filters": {
"target": "com.amazonaws.ec2#FilterList",
"traits": {
- "smithy.api#documentation": "The filters.
\n \n \n \n task-state
- Returns tasks in a certain state (InProgress
|\n Completed
| Failed
)
\n \n \n \n bucket
- Returns task information for tasks that targeted a specific\n bucket. For the filter value, specify the bucket name.
\n \n ",
+ "smithy.api#documentation": "The filters.
\n \n \n \n task-state
- Returns tasks in a certain state (InProgress
|\n Completed
| Failed
)
\n \n \n \n bucket
- Returns task information for tasks that targeted a specific\n bucket. For the filter value, specify the bucket name.
\n \n \n \n When you specify the ImageIds
parameter, any filters that you specify are\n ignored. To use the filters, you must remove the ImageIds
parameter.
\n ",
"smithy.api#xmlName": "Filter"
}
},
@@ -37733,7 +37753,7 @@
"traits": {
"smithy.api#clientOptional": {},
"smithy.api#default": 0,
- "smithy.api#documentation": "The maximum number of items to return for this request.\n To get the next page of items, make another request with the token returned in the output.\n\t For more information, see Pagination .
\n You cannot specify this parameter and the ImageIDs
parameter\n in the same call.
"
+ "smithy.api#documentation": "The maximum number of items to return for this request.\n To get the next page of items, make another request with the token returned in the output.\n\t For more information, see Pagination .
\n You cannot specify this parameter and the ImageIds
parameter in the same\n call.
"
}
}
},
@@ -42692,6 +42712,18 @@
"smithy.api#output": {}
}
},
+ "com.amazonaws.ec2#DisableImage": {
+ "type": "operation",
+ "input": {
+ "target": "com.amazonaws.ec2#DisableImageRequest"
+ },
+ "output": {
+ "target": "com.amazonaws.ec2#DisableImageResult"
+ },
+ "traits": {
+ "smithy.api#documentation": "Sets the AMI state to disabled
and removes all launch permissions from the\n AMI. A disabled AMI can't be used for instance launches.
\n A disabled AMI can't be shared. If a public or shared AMI was previously shared, it is\n made private. If an AMI was shared with an Amazon Web Services account, organization, or Organizational\n Unit, they lose access to the disabled AMI.
\n A disabled AMI does not appear in DescribeImages API calls by\n default.
\n Only the AMI owner can disable an AMI.
\n You can re-enable a disabled AMI using EnableImage .
\n For more information, see Disable an AMI in the\n Amazon EC2 User Guide .
"
+ }
+ },
"com.amazonaws.ec2#DisableImageBlockPublicAccess": {
"type": "operation",
"input": {
@@ -42790,6 +42822,48 @@
"smithy.api#output": {}
}
},
+ "com.amazonaws.ec2#DisableImageRequest": {
+ "type": "structure",
+ "members": {
+ "ImageId": {
+ "target": "com.amazonaws.ec2#ImageId",
+ "traits": {
+ "smithy.api#clientOptional": {},
+ "smithy.api#documentation": "The ID of the AMI.
",
+ "smithy.api#required": {}
+ }
+ },
+ "DryRun": {
+ "target": "com.amazonaws.ec2#Boolean",
+ "traits": {
+ "smithy.api#clientOptional": {},
+ "smithy.api#default": false,
+ "smithy.api#documentation": "Checks whether you have the required permissions for the action, without actually making the request, \n\t\t\tand provides an error response. If you have the required permissions, the error response is \n\t\t\tDryRunOperation
. Otherwise, it is UnauthorizedOperation
.
"
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#input": {}
+ }
+ },
+ "com.amazonaws.ec2#DisableImageResult": {
+ "type": "structure",
+ "members": {
+ "Return": {
+ "target": "com.amazonaws.ec2#Boolean",
+ "traits": {
+ "aws.protocols#ec2QueryName": "Return",
+ "smithy.api#clientOptional": {},
+ "smithy.api#default": false,
+ "smithy.api#documentation": "Returns true
if the request succeeds; otherwise, it returns an error.
",
+ "smithy.api#xmlName": "return"
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#output": {}
+ }
+ },
"com.amazonaws.ec2#DisableIpamOrganizationAdminAccount": {
"type": "operation",
"input": {
@@ -45977,6 +46051,18 @@
"smithy.api#output": {}
}
},
+ "com.amazonaws.ec2#EnableImage": {
+ "type": "operation",
+ "input": {
+ "target": "com.amazonaws.ec2#EnableImageRequest"
+ },
+ "output": {
+ "target": "com.amazonaws.ec2#EnableImageResult"
+ },
+ "traits": {
+ "smithy.api#documentation": "Re-enables a disabled AMI. The re-enabled AMI is marked as available
and can\n be used for instance launches, appears in describe operations, and can be shared. Amazon Web Services\n accounts, organizations, and Organizational Units that lost access to the AMI when it was\n disabled do not regain access automatically. Once the AMI is available, it can be shared with\n them again.
\n Only the AMI owner can re-enable a disabled AMI.
\n For more information, see Disable an AMI in the\n Amazon EC2 User Guide .
"
+ }
+ },
"com.amazonaws.ec2#EnableImageBlockPublicAccess": {
"type": "operation",
"input": {
@@ -46091,6 +46177,48 @@
"smithy.api#output": {}
}
},
+ "com.amazonaws.ec2#EnableImageRequest": {
+ "type": "structure",
+ "members": {
+ "ImageId": {
+ "target": "com.amazonaws.ec2#ImageId",
+ "traits": {
+ "smithy.api#clientOptional": {},
+ "smithy.api#documentation": "The ID of the AMI.
",
+ "smithy.api#required": {}
+ }
+ },
+ "DryRun": {
+ "target": "com.amazonaws.ec2#Boolean",
+ "traits": {
+ "smithy.api#clientOptional": {},
+ "smithy.api#default": false,
+ "smithy.api#documentation": "Checks whether you have the required permissions for the action, without actually making the request, \n\t\t\tand provides an error response. If you have the required permissions, the error response is \n\t\t\tDryRunOperation
. Otherwise, it is UnauthorizedOperation
.
"
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#input": {}
+ }
+ },
+ "com.amazonaws.ec2#EnableImageResult": {
+ "type": "structure",
+ "members": {
+ "Return": {
+ "target": "com.amazonaws.ec2#Boolean",
+ "traits": {
+ "aws.protocols#ec2QueryName": "Return",
+ "smithy.api#clientOptional": {},
+ "smithy.api#default": false,
+ "smithy.api#documentation": "Returns true
if the request succeeds; otherwise, it returns an error.
",
+ "smithy.api#xmlName": "return"
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#output": {}
+ }
+ },
"com.amazonaws.ec2#EnableIpamOrganizationAdminAccount": {
"type": "operation",
"input": {
@@ -54943,7 +55071,7 @@
"target": "com.amazonaws.ec2#HypervisorType",
"traits": {
"aws.protocols#ec2QueryName": "Hypervisor",
- "smithy.api#documentation": "The hypervisor type of the image.
",
+ "smithy.api#documentation": "The hypervisor type of the image. Only xen
is supported. ovm
is\n not supported.
",
"smithy.api#xmlName": "hypervisor"
}
},
@@ -55042,6 +55170,14 @@
"smithy.api#documentation": "If v2.0
, it indicates that IMDSv2 is specified in the AMI. Instances launched\n from this AMI will have HttpTokens
automatically set to required
so\n that, by default, the instance requires that IMDSv2 is used when requesting instance metadata.\n In addition, HttpPutResponseHopLimit
is set to 2
. For more\n information, see Configure\n the AMI in the Amazon EC2 User Guide .
",
"smithy.api#xmlName": "imdsSupport"
}
+ },
+ "SourceInstanceId": {
+ "target": "com.amazonaws.ec2#String",
+ "traits": {
+ "aws.protocols#ec2QueryName": "SourceInstanceId",
+ "smithy.api#documentation": "The ID of the instance that the AMI was created from if the AMI was created using CreateImage . This field only appears if the AMI was created using\n CreateImage.
",
+ "smithy.api#xmlName": "sourceInstanceId"
+ }
}
},
"traits": {
@@ -55443,6 +55579,12 @@
"traits": {
"smithy.api#enumValue": "error"
}
+ },
+ "disabled": {
+ "target": "smithy.api#Unit",
+ "traits": {
+ "smithy.api#enumValue": "disabled"
+ }
}
}
},
From 8c24c2881d77f0ef0d3f68c4fd7e748a146b4d9b Mon Sep 17 00:00:00 2001
From: awstools
Date: Thu, 12 Oct 2023 18:24:07 +0000
Subject: [PATCH 15/35] feat(client-transcribe): This release is to enable m4a
format to customers
---
.../src/commands/GetCallAnalyticsJobCommand.ts | 2 +-
.../src/commands/GetMedicalTranscriptionJobCommand.ts | 2 +-
.../src/commands/GetTranscriptionJobCommand.ts | 2 +-
.../src/commands/StartCallAnalyticsJobCommand.ts | 2 +-
.../src/commands/StartMedicalTranscriptionJobCommand.ts | 4 ++--
.../src/commands/StartTranscriptionJobCommand.ts | 4 ++--
clients/client-transcribe/src/models/models_0.ts | 1 +
codegen/sdk-codegen/aws-models/transcribe.json | 8 +++++++-
8 files changed, 16 insertions(+), 9 deletions(-)
diff --git a/clients/client-transcribe/src/commands/GetCallAnalyticsJobCommand.ts b/clients/client-transcribe/src/commands/GetCallAnalyticsJobCommand.ts
index c9df9a321f9e7..aa40be20fd980 100644
--- a/clients/client-transcribe/src/commands/GetCallAnalyticsJobCommand.ts
+++ b/clients/client-transcribe/src/commands/GetCallAnalyticsJobCommand.ts
@@ -66,7 +66,7 @@ export interface GetCallAnalyticsJobCommandOutput extends GetCallAnalyticsJobRes
* // CallAnalyticsJobStatus: "QUEUED" || "IN_PROGRESS" || "FAILED" || "COMPLETED",
* // LanguageCode: "af-ZA" || "ar-AE" || "ar-SA" || "da-DK" || "de-CH" || "de-DE" || "en-AB" || "en-AU" || "en-GB" || "en-IE" || "en-IN" || "en-US" || "en-WL" || "es-ES" || "es-US" || "fa-IR" || "fr-CA" || "fr-FR" || "he-IL" || "hi-IN" || "id-ID" || "it-IT" || "ja-JP" || "ko-KR" || "ms-MY" || "nl-NL" || "pt-BR" || "pt-PT" || "ru-RU" || "ta-IN" || "te-IN" || "tr-TR" || "zh-CN" || "zh-TW" || "th-TH" || "en-ZA" || "en-NZ" || "vi-VN" || "sv-SE",
* // MediaSampleRateHertz: Number("int"),
- * // MediaFormat: "mp3" || "mp4" || "wav" || "flac" || "ogg" || "amr" || "webm",
+ * // MediaFormat: "mp3" || "mp4" || "wav" || "flac" || "ogg" || "amr" || "webm" || "m4a",
* // Media: { // Media
* // MediaFileUri: "STRING_VALUE",
* // RedactedMediaFileUri: "STRING_VALUE",
diff --git a/clients/client-transcribe/src/commands/GetMedicalTranscriptionJobCommand.ts b/clients/client-transcribe/src/commands/GetMedicalTranscriptionJobCommand.ts
index 3aad13a9eb9fa..2de39f1c51eca 100644
--- a/clients/client-transcribe/src/commands/GetMedicalTranscriptionJobCommand.ts
+++ b/clients/client-transcribe/src/commands/GetMedicalTranscriptionJobCommand.ts
@@ -62,7 +62,7 @@ export interface GetMedicalTranscriptionJobCommandOutput extends GetMedicalTrans
* // TranscriptionJobStatus: "QUEUED" || "IN_PROGRESS" || "FAILED" || "COMPLETED",
* // LanguageCode: "af-ZA" || "ar-AE" || "ar-SA" || "da-DK" || "de-CH" || "de-DE" || "en-AB" || "en-AU" || "en-GB" || "en-IE" || "en-IN" || "en-US" || "en-WL" || "es-ES" || "es-US" || "fa-IR" || "fr-CA" || "fr-FR" || "he-IL" || "hi-IN" || "id-ID" || "it-IT" || "ja-JP" || "ko-KR" || "ms-MY" || "nl-NL" || "pt-BR" || "pt-PT" || "ru-RU" || "ta-IN" || "te-IN" || "tr-TR" || "zh-CN" || "zh-TW" || "th-TH" || "en-ZA" || "en-NZ" || "vi-VN" || "sv-SE",
* // MediaSampleRateHertz: Number("int"),
- * // MediaFormat: "mp3" || "mp4" || "wav" || "flac" || "ogg" || "amr" || "webm",
+ * // MediaFormat: "mp3" || "mp4" || "wav" || "flac" || "ogg" || "amr" || "webm" || "m4a",
* // Media: { // Media
* // MediaFileUri: "STRING_VALUE",
* // RedactedMediaFileUri: "STRING_VALUE",
diff --git a/clients/client-transcribe/src/commands/GetTranscriptionJobCommand.ts b/clients/client-transcribe/src/commands/GetTranscriptionJobCommand.ts
index 14ff28811357d..1b940336376e4 100644
--- a/clients/client-transcribe/src/commands/GetTranscriptionJobCommand.ts
+++ b/clients/client-transcribe/src/commands/GetTranscriptionJobCommand.ts
@@ -64,7 +64,7 @@ export interface GetTranscriptionJobCommandOutput extends GetTranscriptionJobRes
* // TranscriptionJobStatus: "QUEUED" || "IN_PROGRESS" || "FAILED" || "COMPLETED",
* // LanguageCode: "af-ZA" || "ar-AE" || "ar-SA" || "da-DK" || "de-CH" || "de-DE" || "en-AB" || "en-AU" || "en-GB" || "en-IE" || "en-IN" || "en-US" || "en-WL" || "es-ES" || "es-US" || "fa-IR" || "fr-CA" || "fr-FR" || "he-IL" || "hi-IN" || "id-ID" || "it-IT" || "ja-JP" || "ko-KR" || "ms-MY" || "nl-NL" || "pt-BR" || "pt-PT" || "ru-RU" || "ta-IN" || "te-IN" || "tr-TR" || "zh-CN" || "zh-TW" || "th-TH" || "en-ZA" || "en-NZ" || "vi-VN" || "sv-SE",
* // MediaSampleRateHertz: Number("int"),
- * // MediaFormat: "mp3" || "mp4" || "wav" || "flac" || "ogg" || "amr" || "webm",
+ * // MediaFormat: "mp3" || "mp4" || "wav" || "flac" || "ogg" || "amr" || "webm" || "m4a",
* // Media: { // Media
* // MediaFileUri: "STRING_VALUE",
* // RedactedMediaFileUri: "STRING_VALUE",
diff --git a/clients/client-transcribe/src/commands/StartCallAnalyticsJobCommand.ts b/clients/client-transcribe/src/commands/StartCallAnalyticsJobCommand.ts
index 141a95aa569ab..f0ee0f320a93c 100644
--- a/clients/client-transcribe/src/commands/StartCallAnalyticsJobCommand.ts
+++ b/clients/client-transcribe/src/commands/StartCallAnalyticsJobCommand.ts
@@ -141,7 +141,7 @@ export interface StartCallAnalyticsJobCommandOutput extends StartCallAnalyticsJo
* // CallAnalyticsJobStatus: "QUEUED" || "IN_PROGRESS" || "FAILED" || "COMPLETED",
* // LanguageCode: "af-ZA" || "ar-AE" || "ar-SA" || "da-DK" || "de-CH" || "de-DE" || "en-AB" || "en-AU" || "en-GB" || "en-IE" || "en-IN" || "en-US" || "en-WL" || "es-ES" || "es-US" || "fa-IR" || "fr-CA" || "fr-FR" || "he-IL" || "hi-IN" || "id-ID" || "it-IT" || "ja-JP" || "ko-KR" || "ms-MY" || "nl-NL" || "pt-BR" || "pt-PT" || "ru-RU" || "ta-IN" || "te-IN" || "tr-TR" || "zh-CN" || "zh-TW" || "th-TH" || "en-ZA" || "en-NZ" || "vi-VN" || "sv-SE",
* // MediaSampleRateHertz: Number("int"),
- * // MediaFormat: "mp3" || "mp4" || "wav" || "flac" || "ogg" || "amr" || "webm",
+ * // MediaFormat: "mp3" || "mp4" || "wav" || "flac" || "ogg" || "amr" || "webm" || "m4a",
* // Media: { // Media
* // MediaFileUri: "STRING_VALUE",
* // RedactedMediaFileUri: "STRING_VALUE",
diff --git a/clients/client-transcribe/src/commands/StartMedicalTranscriptionJobCommand.ts b/clients/client-transcribe/src/commands/StartMedicalTranscriptionJobCommand.ts
index f419f088c80ea..fc47247649be9 100644
--- a/clients/client-transcribe/src/commands/StartMedicalTranscriptionJobCommand.ts
+++ b/clients/client-transcribe/src/commands/StartMedicalTranscriptionJobCommand.ts
@@ -101,7 +101,7 @@ export interface StartMedicalTranscriptionJobCommandOutput
* MedicalTranscriptionJobName: "STRING_VALUE", // required
* LanguageCode: "af-ZA" || "ar-AE" || "ar-SA" || "da-DK" || "de-CH" || "de-DE" || "en-AB" || "en-AU" || "en-GB" || "en-IE" || "en-IN" || "en-US" || "en-WL" || "es-ES" || "es-US" || "fa-IR" || "fr-CA" || "fr-FR" || "he-IL" || "hi-IN" || "id-ID" || "it-IT" || "ja-JP" || "ko-KR" || "ms-MY" || "nl-NL" || "pt-BR" || "pt-PT" || "ru-RU" || "ta-IN" || "te-IN" || "tr-TR" || "zh-CN" || "zh-TW" || "th-TH" || "en-ZA" || "en-NZ" || "vi-VN" || "sv-SE", // required
* MediaSampleRateHertz: Number("int"),
- * MediaFormat: "mp3" || "mp4" || "wav" || "flac" || "ogg" || "amr" || "webm",
+ * MediaFormat: "mp3" || "mp4" || "wav" || "flac" || "ogg" || "amr" || "webm" || "m4a",
* Media: { // Media
* MediaFileUri: "STRING_VALUE",
* RedactedMediaFileUri: "STRING_VALUE",
@@ -138,7 +138,7 @@ export interface StartMedicalTranscriptionJobCommandOutput
* // TranscriptionJobStatus: "QUEUED" || "IN_PROGRESS" || "FAILED" || "COMPLETED",
* // LanguageCode: "af-ZA" || "ar-AE" || "ar-SA" || "da-DK" || "de-CH" || "de-DE" || "en-AB" || "en-AU" || "en-GB" || "en-IE" || "en-IN" || "en-US" || "en-WL" || "es-ES" || "es-US" || "fa-IR" || "fr-CA" || "fr-FR" || "he-IL" || "hi-IN" || "id-ID" || "it-IT" || "ja-JP" || "ko-KR" || "ms-MY" || "nl-NL" || "pt-BR" || "pt-PT" || "ru-RU" || "ta-IN" || "te-IN" || "tr-TR" || "zh-CN" || "zh-TW" || "th-TH" || "en-ZA" || "en-NZ" || "vi-VN" || "sv-SE",
* // MediaSampleRateHertz: Number("int"),
- * // MediaFormat: "mp3" || "mp4" || "wav" || "flac" || "ogg" || "amr" || "webm",
+ * // MediaFormat: "mp3" || "mp4" || "wav" || "flac" || "ogg" || "amr" || "webm" || "m4a",
* // Media: { // Media
* // MediaFileUri: "STRING_VALUE",
* // RedactedMediaFileUri: "STRING_VALUE",
diff --git a/clients/client-transcribe/src/commands/StartTranscriptionJobCommand.ts b/clients/client-transcribe/src/commands/StartTranscriptionJobCommand.ts
index 5ed53a5427557..20800a147a068 100644
--- a/clients/client-transcribe/src/commands/StartTranscriptionJobCommand.ts
+++ b/clients/client-transcribe/src/commands/StartTranscriptionJobCommand.ts
@@ -82,7 +82,7 @@ export interface StartTranscriptionJobCommandOutput extends StartTranscriptionJo
* TranscriptionJobName: "STRING_VALUE", // required
* LanguageCode: "af-ZA" || "ar-AE" || "ar-SA" || "da-DK" || "de-CH" || "de-DE" || "en-AB" || "en-AU" || "en-GB" || "en-IE" || "en-IN" || "en-US" || "en-WL" || "es-ES" || "es-US" || "fa-IR" || "fr-CA" || "fr-FR" || "he-IL" || "hi-IN" || "id-ID" || "it-IT" || "ja-JP" || "ko-KR" || "ms-MY" || "nl-NL" || "pt-BR" || "pt-PT" || "ru-RU" || "ta-IN" || "te-IN" || "tr-TR" || "zh-CN" || "zh-TW" || "th-TH" || "en-ZA" || "en-NZ" || "vi-VN" || "sv-SE",
* MediaSampleRateHertz: Number("int"),
- * MediaFormat: "mp3" || "mp4" || "wav" || "flac" || "ogg" || "amr" || "webm",
+ * MediaFormat: "mp3" || "mp4" || "wav" || "flac" || "ogg" || "amr" || "webm" || "m4a",
* Media: { // Media
* MediaFileUri: "STRING_VALUE",
* RedactedMediaFileUri: "STRING_VALUE",
@@ -157,7 +157,7 @@ export interface StartTranscriptionJobCommandOutput extends StartTranscriptionJo
* // TranscriptionJobStatus: "QUEUED" || "IN_PROGRESS" || "FAILED" || "COMPLETED",
* // LanguageCode: "af-ZA" || "ar-AE" || "ar-SA" || "da-DK" || "de-CH" || "de-DE" || "en-AB" || "en-AU" || "en-GB" || "en-IE" || "en-IN" || "en-US" || "en-WL" || "es-ES" || "es-US" || "fa-IR" || "fr-CA" || "fr-FR" || "he-IL" || "hi-IN" || "id-ID" || "it-IT" || "ja-JP" || "ko-KR" || "ms-MY" || "nl-NL" || "pt-BR" || "pt-PT" || "ru-RU" || "ta-IN" || "te-IN" || "tr-TR" || "zh-CN" || "zh-TW" || "th-TH" || "en-ZA" || "en-NZ" || "vi-VN" || "sv-SE",
* // MediaSampleRateHertz: Number("int"),
- * // MediaFormat: "mp3" || "mp4" || "wav" || "flac" || "ogg" || "amr" || "webm",
+ * // MediaFormat: "mp3" || "mp4" || "wav" || "flac" || "ogg" || "amr" || "webm" || "m4a",
* // Media: { // Media
* // MediaFileUri: "STRING_VALUE",
* // RedactedMediaFileUri: "STRING_VALUE",
diff --git a/clients/client-transcribe/src/models/models_0.ts b/clients/client-transcribe/src/models/models_0.ts
index 0d54e5291a51a..b78e3d18cf3c8 100644
--- a/clients/client-transcribe/src/models/models_0.ts
+++ b/clients/client-transcribe/src/models/models_0.ts
@@ -260,6 +260,7 @@ export interface Media {
export const MediaFormat = {
AMR: "amr",
FLAC: "flac",
+ M4A: "m4a",
MP3: "mp3",
MP4: "mp4",
OGG: "ogg",
diff --git a/codegen/sdk-codegen/aws-models/transcribe.json b/codegen/sdk-codegen/aws-models/transcribe.json
index 193e38f15b152..0bc1a867d01fa 100644
--- a/codegen/sdk-codegen/aws-models/transcribe.json
+++ b/codegen/sdk-codegen/aws-models/transcribe.json
@@ -3405,6 +3405,12 @@
"traits": {
"smithy.api#enumValue": "webm"
}
+ },
+ "M4A": {
+ "target": "smithy.api#Unit",
+ "traits": {
+ "smithy.api#enumValue": "m4a"
+ }
}
}
},
@@ -7092,4 +7098,4 @@
}
}
}
-}
\ No newline at end of file
+}
From 1cdcf4309aabf6093fdf340538882f60cb9447bc Mon Sep 17 00:00:00 2001
From: awstools
Date: Thu, 12 Oct 2023 18:24:07 +0000
Subject: [PATCH 16/35] feat(client-config-service): Add enums for resource
types supported by Config
---
.../BatchGetAggregateResourceConfigCommand.ts | 6 +-
.../commands/BatchGetResourceConfigCommand.ts | 6 +-
.../DescribeConfigurationRecordersCommand.ts | 4 +-
...scribeRemediationExecutionStatusCommand.ts | 4 +-
...ggregateDiscoveredResourceCountsCommand.ts | 2 +-
.../GetAggregateResourceConfigCommand.ts | 6 +-
.../GetDiscoveredResourceCountsCommand.ts | 2 +-
.../GetResourceConfigHistoryCommand.ts | 12 +-
...ListAggregateDiscoveredResourcesCommand.ts | 4 +-
.../ListDiscoveredResourcesCommand.ts | 4 +-
.../PutConfigurationRecorderCommand.ts | 4 +-
.../src/commands/PutDeliveryChannelCommand.ts | 4 +-
.../StartRemediationExecutionCommand.ts | 4 +-
.../src/models/models_0.ts | 281 ++++++++++++++----
.../src/models/models_1.ts | 6 +-
.../aws-models/config-service.json | 150 ++++++++--
16 files changed, 400 insertions(+), 99 deletions(-)
diff --git a/clients/client-config-service/src/commands/BatchGetAggregateResourceConfigCommand.ts b/clients/client-config-service/src/commands/BatchGetAggregateResourceConfigCommand.ts
index e03252a02bd92..9b33859cd1cc5 100644
--- a/clients/client-config-service/src/commands/BatchGetAggregateResourceConfigCommand.ts
+++ b/clients/client-config-service/src/commands/BatchGetAggregateResourceConfigCommand.ts
@@ -67,7 +67,7 @@ export interface BatchGetAggregateResourceConfigCommandOutput
* SourceAccountId: "STRING_VALUE", // required
* SourceRegion: "STRING_VALUE", // required
* ResourceId: "STRING_VALUE", // required
- * ResourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation", // required
+ * ResourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation" || "AWS::IoTWireless::MulticastGroup" || "AWS::Personalize::DatasetGroup" || "AWS::IoTTwinMaker::ComponentType" || "AWS::CodeBuild::ReportGroup" || "AWS::SageMaker::FeatureGroup" || "AWS::MSK::BatchScramSecret" || "AWS::AppStream::Stack" || "AWS::IoT::JobTemplate" || "AWS::IoTWireless::FuotaTask" || "AWS::IoT::ProvisioningTemplate" || "AWS::InspectorV2::Filter" || "AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation" || "AWS::ServiceDiscovery::Instance" || "AWS::Transfer::Certificate" || "AWS::MediaConnect::FlowSource" || "AWS::APS::RuleGroupsNamespace" || "AWS::CodeGuruProfiler::ProfilingGroup" || "AWS::Route53Resolver::ResolverQueryLoggingConfig" || "AWS::Batch::SchedulingPolicy", // required
* ResourceName: "STRING_VALUE",
* },
* ],
@@ -83,7 +83,7 @@ export interface BatchGetAggregateResourceConfigCommandOutput
* // configurationItemStatus: "OK" || "ResourceDiscovered" || "ResourceNotRecorded" || "ResourceDeleted" || "ResourceDeletedNotRecorded",
* // configurationStateId: "STRING_VALUE",
* // arn: "STRING_VALUE",
- * // resourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation",
+ * // resourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation" || "AWS::IoTWireless::MulticastGroup" || "AWS::Personalize::DatasetGroup" || "AWS::IoTTwinMaker::ComponentType" || "AWS::CodeBuild::ReportGroup" || "AWS::SageMaker::FeatureGroup" || "AWS::MSK::BatchScramSecret" || "AWS::AppStream::Stack" || "AWS::IoT::JobTemplate" || "AWS::IoTWireless::FuotaTask" || "AWS::IoT::ProvisioningTemplate" || "AWS::InspectorV2::Filter" || "AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation" || "AWS::ServiceDiscovery::Instance" || "AWS::Transfer::Certificate" || "AWS::MediaConnect::FlowSource" || "AWS::APS::RuleGroupsNamespace" || "AWS::CodeGuruProfiler::ProfilingGroup" || "AWS::Route53Resolver::ResolverQueryLoggingConfig" || "AWS::Batch::SchedulingPolicy",
* // resourceId: "STRING_VALUE",
* // resourceName: "STRING_VALUE",
* // awsRegion: "STRING_VALUE",
@@ -100,7 +100,7 @@ export interface BatchGetAggregateResourceConfigCommandOutput
* // SourceAccountId: "STRING_VALUE", // required
* // SourceRegion: "STRING_VALUE", // required
* // ResourceId: "STRING_VALUE", // required
- * // ResourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation", // required
+ * // ResourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation" || "AWS::IoTWireless::MulticastGroup" || "AWS::Personalize::DatasetGroup" || "AWS::IoTTwinMaker::ComponentType" || "AWS::CodeBuild::ReportGroup" || "AWS::SageMaker::FeatureGroup" || "AWS::MSK::BatchScramSecret" || "AWS::AppStream::Stack" || "AWS::IoT::JobTemplate" || "AWS::IoTWireless::FuotaTask" || "AWS::IoT::ProvisioningTemplate" || "AWS::InspectorV2::Filter" || "AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation" || "AWS::ServiceDiscovery::Instance" || "AWS::Transfer::Certificate" || "AWS::MediaConnect::FlowSource" || "AWS::APS::RuleGroupsNamespace" || "AWS::CodeGuruProfiler::ProfilingGroup" || "AWS::Route53Resolver::ResolverQueryLoggingConfig" || "AWS::Batch::SchedulingPolicy", // required
* // ResourceName: "STRING_VALUE",
* // },
* // ],
diff --git a/clients/client-config-service/src/commands/BatchGetResourceConfigCommand.ts b/clients/client-config-service/src/commands/BatchGetResourceConfigCommand.ts
index fcfb9bd9b1fbd..f45e602eb00df 100644
--- a/clients/client-config-service/src/commands/BatchGetResourceConfigCommand.ts
+++ b/clients/client-config-service/src/commands/BatchGetResourceConfigCommand.ts
@@ -65,7 +65,7 @@ export interface BatchGetResourceConfigCommandOutput extends BatchGetResourceCon
* const input = { // BatchGetResourceConfigRequest
* resourceKeys: [ // ResourceKeys // required
* { // ResourceKey
- * resourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation", // required
+ * resourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation" || "AWS::IoTWireless::MulticastGroup" || "AWS::Personalize::DatasetGroup" || "AWS::IoTTwinMaker::ComponentType" || "AWS::CodeBuild::ReportGroup" || "AWS::SageMaker::FeatureGroup" || "AWS::MSK::BatchScramSecret" || "AWS::AppStream::Stack" || "AWS::IoT::JobTemplate" || "AWS::IoTWireless::FuotaTask" || "AWS::IoT::ProvisioningTemplate" || "AWS::InspectorV2::Filter" || "AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation" || "AWS::ServiceDiscovery::Instance" || "AWS::Transfer::Certificate" || "AWS::MediaConnect::FlowSource" || "AWS::APS::RuleGroupsNamespace" || "AWS::CodeGuruProfiler::ProfilingGroup" || "AWS::Route53Resolver::ResolverQueryLoggingConfig" || "AWS::Batch::SchedulingPolicy", // required
* resourceId: "STRING_VALUE", // required
* },
* ],
@@ -81,7 +81,7 @@ export interface BatchGetResourceConfigCommandOutput extends BatchGetResourceCon
* // configurationItemStatus: "OK" || "ResourceDiscovered" || "ResourceNotRecorded" || "ResourceDeleted" || "ResourceDeletedNotRecorded",
* // configurationStateId: "STRING_VALUE",
* // arn: "STRING_VALUE",
- * // resourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation",
+ * // resourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation" || "AWS::IoTWireless::MulticastGroup" || "AWS::Personalize::DatasetGroup" || "AWS::IoTTwinMaker::ComponentType" || "AWS::CodeBuild::ReportGroup" || "AWS::SageMaker::FeatureGroup" || "AWS::MSK::BatchScramSecret" || "AWS::AppStream::Stack" || "AWS::IoT::JobTemplate" || "AWS::IoTWireless::FuotaTask" || "AWS::IoT::ProvisioningTemplate" || "AWS::InspectorV2::Filter" || "AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation" || "AWS::ServiceDiscovery::Instance" || "AWS::Transfer::Certificate" || "AWS::MediaConnect::FlowSource" || "AWS::APS::RuleGroupsNamespace" || "AWS::CodeGuruProfiler::ProfilingGroup" || "AWS::Route53Resolver::ResolverQueryLoggingConfig" || "AWS::Batch::SchedulingPolicy",
* // resourceId: "STRING_VALUE",
* // resourceName: "STRING_VALUE",
* // awsRegion: "STRING_VALUE",
@@ -95,7 +95,7 @@ export interface BatchGetResourceConfigCommandOutput extends BatchGetResourceCon
* // ],
* // unprocessedResourceKeys: [ // ResourceKeys
* // { // ResourceKey
- * // resourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation", // required
+ * // resourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation" || "AWS::IoTWireless::MulticastGroup" || "AWS::Personalize::DatasetGroup" || "AWS::IoTTwinMaker::ComponentType" || "AWS::CodeBuild::ReportGroup" || "AWS::SageMaker::FeatureGroup" || "AWS::MSK::BatchScramSecret" || "AWS::AppStream::Stack" || "AWS::IoT::JobTemplate" || "AWS::IoTWireless::FuotaTask" || "AWS::IoT::ProvisioningTemplate" || "AWS::InspectorV2::Filter" || "AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation" || "AWS::ServiceDiscovery::Instance" || "AWS::Transfer::Certificate" || "AWS::MediaConnect::FlowSource" || "AWS::APS::RuleGroupsNamespace" || "AWS::CodeGuruProfiler::ProfilingGroup" || "AWS::Route53Resolver::ResolverQueryLoggingConfig" || "AWS::Batch::SchedulingPolicy", // required
* // resourceId: "STRING_VALUE", // required
* // },
* // ],
diff --git a/clients/client-config-service/src/commands/DescribeConfigurationRecordersCommand.ts b/clients/client-config-service/src/commands/DescribeConfigurationRecordersCommand.ts
index eb1b1a5d6e1d2..c6c40e1fb55c2 100644
--- a/clients/client-config-service/src/commands/DescribeConfigurationRecordersCommand.ts
+++ b/clients/client-config-service/src/commands/DescribeConfigurationRecordersCommand.ts
@@ -71,11 +71,11 @@ export interface DescribeConfigurationRecordersCommandOutput
* // allSupported: true || false,
* // includeGlobalResourceTypes: true || false,
* // resourceTypes: [ // ResourceTypeList
- * // "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation",
+ * // "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation" || "AWS::IoTWireless::MulticastGroup" || "AWS::Personalize::DatasetGroup" || "AWS::IoTTwinMaker::ComponentType" || "AWS::CodeBuild::ReportGroup" || "AWS::SageMaker::FeatureGroup" || "AWS::MSK::BatchScramSecret" || "AWS::AppStream::Stack" || "AWS::IoT::JobTemplate" || "AWS::IoTWireless::FuotaTask" || "AWS::IoT::ProvisioningTemplate" || "AWS::InspectorV2::Filter" || "AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation" || "AWS::ServiceDiscovery::Instance" || "AWS::Transfer::Certificate" || "AWS::MediaConnect::FlowSource" || "AWS::APS::RuleGroupsNamespace" || "AWS::CodeGuruProfiler::ProfilingGroup" || "AWS::Route53Resolver::ResolverQueryLoggingConfig" || "AWS::Batch::SchedulingPolicy",
* // ],
* // exclusionByResourceTypes: { // ExclusionByResourceTypes
* // resourceTypes: [
- * // "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation",
+ * // "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation" || "AWS::IoTWireless::MulticastGroup" || "AWS::Personalize::DatasetGroup" || "AWS::IoTTwinMaker::ComponentType" || "AWS::CodeBuild::ReportGroup" || "AWS::SageMaker::FeatureGroup" || "AWS::MSK::BatchScramSecret" || "AWS::AppStream::Stack" || "AWS::IoT::JobTemplate" || "AWS::IoTWireless::FuotaTask" || "AWS::IoT::ProvisioningTemplate" || "AWS::InspectorV2::Filter" || "AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation" || "AWS::ServiceDiscovery::Instance" || "AWS::Transfer::Certificate" || "AWS::MediaConnect::FlowSource" || "AWS::APS::RuleGroupsNamespace" || "AWS::CodeGuruProfiler::ProfilingGroup" || "AWS::Route53Resolver::ResolverQueryLoggingConfig" || "AWS::Batch::SchedulingPolicy",
* // ],
* // },
* // recordingStrategy: { // RecordingStrategy
diff --git a/clients/client-config-service/src/commands/DescribeRemediationExecutionStatusCommand.ts b/clients/client-config-service/src/commands/DescribeRemediationExecutionStatusCommand.ts
index d0a69d7d4e24e..3d4ac2bfe3bb9 100644
--- a/clients/client-config-service/src/commands/DescribeRemediationExecutionStatusCommand.ts
+++ b/clients/client-config-service/src/commands/DescribeRemediationExecutionStatusCommand.ts
@@ -57,7 +57,7 @@ export interface DescribeRemediationExecutionStatusCommandOutput
* ConfigRuleName: "STRING_VALUE", // required
* ResourceKeys: [ // ResourceKeys
* { // ResourceKey
- * resourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation", // required
+ * resourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation" || "AWS::IoTWireless::MulticastGroup" || "AWS::Personalize::DatasetGroup" || "AWS::IoTTwinMaker::ComponentType" || "AWS::CodeBuild::ReportGroup" || "AWS::SageMaker::FeatureGroup" || "AWS::MSK::BatchScramSecret" || "AWS::AppStream::Stack" || "AWS::IoT::JobTemplate" || "AWS::IoTWireless::FuotaTask" || "AWS::IoT::ProvisioningTemplate" || "AWS::InspectorV2::Filter" || "AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation" || "AWS::ServiceDiscovery::Instance" || "AWS::Transfer::Certificate" || "AWS::MediaConnect::FlowSource" || "AWS::APS::RuleGroupsNamespace" || "AWS::CodeGuruProfiler::ProfilingGroup" || "AWS::Route53Resolver::ResolverQueryLoggingConfig" || "AWS::Batch::SchedulingPolicy", // required
* resourceId: "STRING_VALUE", // required
* },
* ],
@@ -70,7 +70,7 @@ export interface DescribeRemediationExecutionStatusCommandOutput
* // RemediationExecutionStatuses: [ // RemediationExecutionStatuses
* // { // RemediationExecutionStatus
* // ResourceKey: { // ResourceKey
- * // resourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation", // required
+ * // resourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation" || "AWS::IoTWireless::MulticastGroup" || "AWS::Personalize::DatasetGroup" || "AWS::IoTTwinMaker::ComponentType" || "AWS::CodeBuild::ReportGroup" || "AWS::SageMaker::FeatureGroup" || "AWS::MSK::BatchScramSecret" || "AWS::AppStream::Stack" || "AWS::IoT::JobTemplate" || "AWS::IoTWireless::FuotaTask" || "AWS::IoT::ProvisioningTemplate" || "AWS::InspectorV2::Filter" || "AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation" || "AWS::ServiceDiscovery::Instance" || "AWS::Transfer::Certificate" || "AWS::MediaConnect::FlowSource" || "AWS::APS::RuleGroupsNamespace" || "AWS::CodeGuruProfiler::ProfilingGroup" || "AWS::Route53Resolver::ResolverQueryLoggingConfig" || "AWS::Batch::SchedulingPolicy", // required
* // resourceId: "STRING_VALUE", // required
* // },
* // State: "QUEUED" || "IN_PROGRESS" || "SUCCEEDED" || "FAILED",
diff --git a/clients/client-config-service/src/commands/GetAggregateDiscoveredResourceCountsCommand.ts b/clients/client-config-service/src/commands/GetAggregateDiscoveredResourceCountsCommand.ts
index 76e69135c303d..3678caf6d3a09 100644
--- a/clients/client-config-service/src/commands/GetAggregateDiscoveredResourceCountsCommand.ts
+++ b/clients/client-config-service/src/commands/GetAggregateDiscoveredResourceCountsCommand.ts
@@ -57,7 +57,7 @@ export interface GetAggregateDiscoveredResourceCountsCommandOutput
* const input = { // GetAggregateDiscoveredResourceCountsRequest
* ConfigurationAggregatorName: "STRING_VALUE", // required
* Filters: { // ResourceCountFilters
- * ResourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation",
+ * ResourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation" || "AWS::IoTWireless::MulticastGroup" || "AWS::Personalize::DatasetGroup" || "AWS::IoTTwinMaker::ComponentType" || "AWS::CodeBuild::ReportGroup" || "AWS::SageMaker::FeatureGroup" || "AWS::MSK::BatchScramSecret" || "AWS::AppStream::Stack" || "AWS::IoT::JobTemplate" || "AWS::IoTWireless::FuotaTask" || "AWS::IoT::ProvisioningTemplate" || "AWS::InspectorV2::Filter" || "AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation" || "AWS::ServiceDiscovery::Instance" || "AWS::Transfer::Certificate" || "AWS::MediaConnect::FlowSource" || "AWS::APS::RuleGroupsNamespace" || "AWS::CodeGuruProfiler::ProfilingGroup" || "AWS::Route53Resolver::ResolverQueryLoggingConfig" || "AWS::Batch::SchedulingPolicy",
* AccountId: "STRING_VALUE",
* Region: "STRING_VALUE",
* },
diff --git a/clients/client-config-service/src/commands/GetAggregateResourceConfigCommand.ts b/clients/client-config-service/src/commands/GetAggregateResourceConfigCommand.ts
index 542f8031fc1b3..83260fcaf4769 100644
--- a/clients/client-config-service/src/commands/GetAggregateResourceConfigCommand.ts
+++ b/clients/client-config-service/src/commands/GetAggregateResourceConfigCommand.ts
@@ -50,7 +50,7 @@ export interface GetAggregateResourceConfigCommandOutput extends GetAggregateRes
* SourceAccountId: "STRING_VALUE", // required
* SourceRegion: "STRING_VALUE", // required
* ResourceId: "STRING_VALUE", // required
- * ResourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation", // required
+ * ResourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation" || "AWS::IoTWireless::MulticastGroup" || "AWS::Personalize::DatasetGroup" || "AWS::IoTTwinMaker::ComponentType" || "AWS::CodeBuild::ReportGroup" || "AWS::SageMaker::FeatureGroup" || "AWS::MSK::BatchScramSecret" || "AWS::AppStream::Stack" || "AWS::IoT::JobTemplate" || "AWS::IoTWireless::FuotaTask" || "AWS::IoT::ProvisioningTemplate" || "AWS::InspectorV2::Filter" || "AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation" || "AWS::ServiceDiscovery::Instance" || "AWS::Transfer::Certificate" || "AWS::MediaConnect::FlowSource" || "AWS::APS::RuleGroupsNamespace" || "AWS::CodeGuruProfiler::ProfilingGroup" || "AWS::Route53Resolver::ResolverQueryLoggingConfig" || "AWS::Batch::SchedulingPolicy", // required
* ResourceName: "STRING_VALUE",
* },
* };
@@ -65,7 +65,7 @@ export interface GetAggregateResourceConfigCommandOutput extends GetAggregateRes
* // configurationStateId: "STRING_VALUE",
* // configurationItemMD5Hash: "STRING_VALUE",
* // arn: "STRING_VALUE",
- * // resourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation",
+ * // resourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation" || "AWS::IoTWireless::MulticastGroup" || "AWS::Personalize::DatasetGroup" || "AWS::IoTTwinMaker::ComponentType" || "AWS::CodeBuild::ReportGroup" || "AWS::SageMaker::FeatureGroup" || "AWS::MSK::BatchScramSecret" || "AWS::AppStream::Stack" || "AWS::IoT::JobTemplate" || "AWS::IoTWireless::FuotaTask" || "AWS::IoT::ProvisioningTemplate" || "AWS::InspectorV2::Filter" || "AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation" || "AWS::ServiceDiscovery::Instance" || "AWS::Transfer::Certificate" || "AWS::MediaConnect::FlowSource" || "AWS::APS::RuleGroupsNamespace" || "AWS::CodeGuruProfiler::ProfilingGroup" || "AWS::Route53Resolver::ResolverQueryLoggingConfig" || "AWS::Batch::SchedulingPolicy",
* // resourceId: "STRING_VALUE",
* // resourceName: "STRING_VALUE",
* // awsRegion: "STRING_VALUE",
@@ -79,7 +79,7 @@ export interface GetAggregateResourceConfigCommandOutput extends GetAggregateRes
* // ],
* // relationships: [ // RelationshipList
* // { // Relationship
- * // resourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation",
+ * // resourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation" || "AWS::IoTWireless::MulticastGroup" || "AWS::Personalize::DatasetGroup" || "AWS::IoTTwinMaker::ComponentType" || "AWS::CodeBuild::ReportGroup" || "AWS::SageMaker::FeatureGroup" || "AWS::MSK::BatchScramSecret" || "AWS::AppStream::Stack" || "AWS::IoT::JobTemplate" || "AWS::IoTWireless::FuotaTask" || "AWS::IoT::ProvisioningTemplate" || "AWS::InspectorV2::Filter" || "AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation" || "AWS::ServiceDiscovery::Instance" || "AWS::Transfer::Certificate" || "AWS::MediaConnect::FlowSource" || "AWS::APS::RuleGroupsNamespace" || "AWS::CodeGuruProfiler::ProfilingGroup" || "AWS::Route53Resolver::ResolverQueryLoggingConfig" || "AWS::Batch::SchedulingPolicy",
* // resourceId: "STRING_VALUE",
* // resourceName: "STRING_VALUE",
* // relationshipName: "STRING_VALUE",
diff --git a/clients/client-config-service/src/commands/GetDiscoveredResourceCountsCommand.ts b/clients/client-config-service/src/commands/GetDiscoveredResourceCountsCommand.ts
index 3b079284e7d7a..d1fb1ae16f7b4 100644
--- a/clients/client-config-service/src/commands/GetDiscoveredResourceCountsCommand.ts
+++ b/clients/client-config-service/src/commands/GetDiscoveredResourceCountsCommand.ts
@@ -116,7 +116,7 @@ export interface GetDiscoveredResourceCountsCommandOutput
* // totalDiscoveredResources: Number("long"),
* // resourceCounts: [ // ResourceCounts
* // { // ResourceCount
- * // resourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation",
+ * // resourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation" || "AWS::IoTWireless::MulticastGroup" || "AWS::Personalize::DatasetGroup" || "AWS::IoTTwinMaker::ComponentType" || "AWS::CodeBuild::ReportGroup" || "AWS::SageMaker::FeatureGroup" || "AWS::MSK::BatchScramSecret" || "AWS::AppStream::Stack" || "AWS::IoT::JobTemplate" || "AWS::IoTWireless::FuotaTask" || "AWS::IoT::ProvisioningTemplate" || "AWS::InspectorV2::Filter" || "AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation" || "AWS::ServiceDiscovery::Instance" || "AWS::Transfer::Certificate" || "AWS::MediaConnect::FlowSource" || "AWS::APS::RuleGroupsNamespace" || "AWS::CodeGuruProfiler::ProfilingGroup" || "AWS::Route53Resolver::ResolverQueryLoggingConfig" || "AWS::Batch::SchedulingPolicy",
* // count: Number("long"),
* // },
* // ],
diff --git a/clients/client-config-service/src/commands/GetResourceConfigHistoryCommand.ts b/clients/client-config-service/src/commands/GetResourceConfigHistoryCommand.ts
index c8f93012f7ca7..c0898fc4e4db0 100644
--- a/clients/client-config-service/src/commands/GetResourceConfigHistoryCommand.ts
+++ b/clients/client-config-service/src/commands/GetResourceConfigHistoryCommand.ts
@@ -37,7 +37,11 @@ export interface GetResourceConfigHistoryCommandOutput extends GetResourceConfig
/**
* @public
- * Returns a list of ConfigurationItems
for the specified resource.
+ *
+ * For accurate reporting on the compliance status, you must record the AWS::Config::ResourceCompliance
resource type.
+ * For more information, see Selecting Which Resources Config Records .
+ *
+ *
Returns a list of ConfigurationItems
for the specified resource.
* The list contains details about each state of the resource
* during the specified time interval. If you specified a retention
* period to retain your ConfigurationItems
between a
@@ -64,7 +68,7 @@ export interface GetResourceConfigHistoryCommandOutput extends GetResourceConfig
* // const { ConfigServiceClient, GetResourceConfigHistoryCommand } = require("@aws-sdk/client-config-service"); // CommonJS import
* const client = new ConfigServiceClient(config);
* const input = { // GetResourceConfigHistoryRequest
- * resourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation", // required
+ * resourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation" || "AWS::IoTWireless::MulticastGroup" || "AWS::Personalize::DatasetGroup" || "AWS::IoTTwinMaker::ComponentType" || "AWS::CodeBuild::ReportGroup" || "AWS::SageMaker::FeatureGroup" || "AWS::MSK::BatchScramSecret" || "AWS::AppStream::Stack" || "AWS::IoT::JobTemplate" || "AWS::IoTWireless::FuotaTask" || "AWS::IoT::ProvisioningTemplate" || "AWS::InspectorV2::Filter" || "AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation" || "AWS::ServiceDiscovery::Instance" || "AWS::Transfer::Certificate" || "AWS::MediaConnect::FlowSource" || "AWS::APS::RuleGroupsNamespace" || "AWS::CodeGuruProfiler::ProfilingGroup" || "AWS::Route53Resolver::ResolverQueryLoggingConfig" || "AWS::Batch::SchedulingPolicy", // required
* resourceId: "STRING_VALUE", // required
* laterTime: new Date("TIMESTAMP"),
* earlierTime: new Date("TIMESTAMP"),
@@ -84,7 +88,7 @@ export interface GetResourceConfigHistoryCommandOutput extends GetResourceConfig
* // configurationStateId: "STRING_VALUE",
* // configurationItemMD5Hash: "STRING_VALUE",
* // arn: "STRING_VALUE",
- * // resourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation",
+ * // resourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation" || "AWS::IoTWireless::MulticastGroup" || "AWS::Personalize::DatasetGroup" || "AWS::IoTTwinMaker::ComponentType" || "AWS::CodeBuild::ReportGroup" || "AWS::SageMaker::FeatureGroup" || "AWS::MSK::BatchScramSecret" || "AWS::AppStream::Stack" || "AWS::IoT::JobTemplate" || "AWS::IoTWireless::FuotaTask" || "AWS::IoT::ProvisioningTemplate" || "AWS::InspectorV2::Filter" || "AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation" || "AWS::ServiceDiscovery::Instance" || "AWS::Transfer::Certificate" || "AWS::MediaConnect::FlowSource" || "AWS::APS::RuleGroupsNamespace" || "AWS::CodeGuruProfiler::ProfilingGroup" || "AWS::Route53Resolver::ResolverQueryLoggingConfig" || "AWS::Batch::SchedulingPolicy",
* // resourceId: "STRING_VALUE",
* // resourceName: "STRING_VALUE",
* // awsRegion: "STRING_VALUE",
@@ -98,7 +102,7 @@ export interface GetResourceConfigHistoryCommandOutput extends GetResourceConfig
* // ],
* // relationships: [ // RelationshipList
* // { // Relationship
- * // resourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation",
+ * // resourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation" || "AWS::IoTWireless::MulticastGroup" || "AWS::Personalize::DatasetGroup" || "AWS::IoTTwinMaker::ComponentType" || "AWS::CodeBuild::ReportGroup" || "AWS::SageMaker::FeatureGroup" || "AWS::MSK::BatchScramSecret" || "AWS::AppStream::Stack" || "AWS::IoT::JobTemplate" || "AWS::IoTWireless::FuotaTask" || "AWS::IoT::ProvisioningTemplate" || "AWS::InspectorV2::Filter" || "AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation" || "AWS::ServiceDiscovery::Instance" || "AWS::Transfer::Certificate" || "AWS::MediaConnect::FlowSource" || "AWS::APS::RuleGroupsNamespace" || "AWS::CodeGuruProfiler::ProfilingGroup" || "AWS::Route53Resolver::ResolverQueryLoggingConfig" || "AWS::Batch::SchedulingPolicy",
* // resourceId: "STRING_VALUE",
* // resourceName: "STRING_VALUE",
* // relationshipName: "STRING_VALUE",
diff --git a/clients/client-config-service/src/commands/ListAggregateDiscoveredResourcesCommand.ts b/clients/client-config-service/src/commands/ListAggregateDiscoveredResourcesCommand.ts
index a9b9b117f82b6..343539a8a6649 100644
--- a/clients/client-config-service/src/commands/ListAggregateDiscoveredResourcesCommand.ts
+++ b/clients/client-config-service/src/commands/ListAggregateDiscoveredResourcesCommand.ts
@@ -54,7 +54,7 @@ export interface ListAggregateDiscoveredResourcesCommandOutput
* const client = new ConfigServiceClient(config);
* const input = { // ListAggregateDiscoveredResourcesRequest
* ConfigurationAggregatorName: "STRING_VALUE", // required
- * ResourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation", // required
+ * ResourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation" || "AWS::IoTWireless::MulticastGroup" || "AWS::Personalize::DatasetGroup" || "AWS::IoTTwinMaker::ComponentType" || "AWS::CodeBuild::ReportGroup" || "AWS::SageMaker::FeatureGroup" || "AWS::MSK::BatchScramSecret" || "AWS::AppStream::Stack" || "AWS::IoT::JobTemplate" || "AWS::IoTWireless::FuotaTask" || "AWS::IoT::ProvisioningTemplate" || "AWS::InspectorV2::Filter" || "AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation" || "AWS::ServiceDiscovery::Instance" || "AWS::Transfer::Certificate" || "AWS::MediaConnect::FlowSource" || "AWS::APS::RuleGroupsNamespace" || "AWS::CodeGuruProfiler::ProfilingGroup" || "AWS::Route53Resolver::ResolverQueryLoggingConfig" || "AWS::Batch::SchedulingPolicy", // required
* Filters: { // ResourceFilters
* AccountId: "STRING_VALUE",
* ResourceId: "STRING_VALUE",
@@ -72,7 +72,7 @@ export interface ListAggregateDiscoveredResourcesCommandOutput
* // SourceAccountId: "STRING_VALUE", // required
* // SourceRegion: "STRING_VALUE", // required
* // ResourceId: "STRING_VALUE", // required
- * // ResourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation", // required
+ * // ResourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation" || "AWS::IoTWireless::MulticastGroup" || "AWS::Personalize::DatasetGroup" || "AWS::IoTTwinMaker::ComponentType" || "AWS::CodeBuild::ReportGroup" || "AWS::SageMaker::FeatureGroup" || "AWS::MSK::BatchScramSecret" || "AWS::AppStream::Stack" || "AWS::IoT::JobTemplate" || "AWS::IoTWireless::FuotaTask" || "AWS::IoT::ProvisioningTemplate" || "AWS::InspectorV2::Filter" || "AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation" || "AWS::ServiceDiscovery::Instance" || "AWS::Transfer::Certificate" || "AWS::MediaConnect::FlowSource" || "AWS::APS::RuleGroupsNamespace" || "AWS::CodeGuruProfiler::ProfilingGroup" || "AWS::Route53Resolver::ResolverQueryLoggingConfig" || "AWS::Batch::SchedulingPolicy", // required
* // ResourceName: "STRING_VALUE",
* // },
* // ],
diff --git a/clients/client-config-service/src/commands/ListDiscoveredResourcesCommand.ts b/clients/client-config-service/src/commands/ListDiscoveredResourcesCommand.ts
index 9f68ca5742d46..814c8d280f66a 100644
--- a/clients/client-config-service/src/commands/ListDiscoveredResourcesCommand.ts
+++ b/clients/client-config-service/src/commands/ListDiscoveredResourcesCommand.ts
@@ -61,7 +61,7 @@ export interface ListDiscoveredResourcesCommandOutput extends ListDiscoveredReso
* // const { ConfigServiceClient, ListDiscoveredResourcesCommand } = require("@aws-sdk/client-config-service"); // CommonJS import
* const client = new ConfigServiceClient(config);
* const input = { // ListDiscoveredResourcesRequest
- * resourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation", // required
+ * resourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation" || "AWS::IoTWireless::MulticastGroup" || "AWS::Personalize::DatasetGroup" || "AWS::IoTTwinMaker::ComponentType" || "AWS::CodeBuild::ReportGroup" || "AWS::SageMaker::FeatureGroup" || "AWS::MSK::BatchScramSecret" || "AWS::AppStream::Stack" || "AWS::IoT::JobTemplate" || "AWS::IoTWireless::FuotaTask" || "AWS::IoT::ProvisioningTemplate" || "AWS::InspectorV2::Filter" || "AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation" || "AWS::ServiceDiscovery::Instance" || "AWS::Transfer::Certificate" || "AWS::MediaConnect::FlowSource" || "AWS::APS::RuleGroupsNamespace" || "AWS::CodeGuruProfiler::ProfilingGroup" || "AWS::Route53Resolver::ResolverQueryLoggingConfig" || "AWS::Batch::SchedulingPolicy", // required
* resourceIds: [ // ResourceIdList
* "STRING_VALUE",
* ],
@@ -75,7 +75,7 @@ export interface ListDiscoveredResourcesCommandOutput extends ListDiscoveredReso
* // { // ListDiscoveredResourcesResponse
* // resourceIdentifiers: [ // ResourceIdentifierList
* // { // ResourceIdentifier
- * // resourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation",
+ * // resourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation" || "AWS::IoTWireless::MulticastGroup" || "AWS::Personalize::DatasetGroup" || "AWS::IoTTwinMaker::ComponentType" || "AWS::CodeBuild::ReportGroup" || "AWS::SageMaker::FeatureGroup" || "AWS::MSK::BatchScramSecret" || "AWS::AppStream::Stack" || "AWS::IoT::JobTemplate" || "AWS::IoTWireless::FuotaTask" || "AWS::IoT::ProvisioningTemplate" || "AWS::InspectorV2::Filter" || "AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation" || "AWS::ServiceDiscovery::Instance" || "AWS::Transfer::Certificate" || "AWS::MediaConnect::FlowSource" || "AWS::APS::RuleGroupsNamespace" || "AWS::CodeGuruProfiler::ProfilingGroup" || "AWS::Route53Resolver::ResolverQueryLoggingConfig" || "AWS::Batch::SchedulingPolicy",
* // resourceId: "STRING_VALUE",
* // resourceName: "STRING_VALUE",
* // resourceDeletionTime: new Date("TIMESTAMP"),
diff --git a/clients/client-config-service/src/commands/PutConfigurationRecorderCommand.ts b/clients/client-config-service/src/commands/PutConfigurationRecorderCommand.ts
index 6cf3ad0cbc4aa..89efa1b8dd1c7 100644
--- a/clients/client-config-service/src/commands/PutConfigurationRecorderCommand.ts
+++ b/clients/client-config-service/src/commands/PutConfigurationRecorderCommand.ts
@@ -64,11 +64,11 @@ export interface PutConfigurationRecorderCommandOutput extends __MetadataBearer
* allSupported: true || false,
* includeGlobalResourceTypes: true || false,
* resourceTypes: [ // ResourceTypeList
- * "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation",
+ * "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation" || "AWS::IoTWireless::MulticastGroup" || "AWS::Personalize::DatasetGroup" || "AWS::IoTTwinMaker::ComponentType" || "AWS::CodeBuild::ReportGroup" || "AWS::SageMaker::FeatureGroup" || "AWS::MSK::BatchScramSecret" || "AWS::AppStream::Stack" || "AWS::IoT::JobTemplate" || "AWS::IoTWireless::FuotaTask" || "AWS::IoT::ProvisioningTemplate" || "AWS::InspectorV2::Filter" || "AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation" || "AWS::ServiceDiscovery::Instance" || "AWS::Transfer::Certificate" || "AWS::MediaConnect::FlowSource" || "AWS::APS::RuleGroupsNamespace" || "AWS::CodeGuruProfiler::ProfilingGroup" || "AWS::Route53Resolver::ResolverQueryLoggingConfig" || "AWS::Batch::SchedulingPolicy",
* ],
* exclusionByResourceTypes: { // ExclusionByResourceTypes
* resourceTypes: [
- * "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation",
+ * "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation" || "AWS::IoTWireless::MulticastGroup" || "AWS::Personalize::DatasetGroup" || "AWS::IoTTwinMaker::ComponentType" || "AWS::CodeBuild::ReportGroup" || "AWS::SageMaker::FeatureGroup" || "AWS::MSK::BatchScramSecret" || "AWS::AppStream::Stack" || "AWS::IoT::JobTemplate" || "AWS::IoTWireless::FuotaTask" || "AWS::IoT::ProvisioningTemplate" || "AWS::InspectorV2::Filter" || "AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation" || "AWS::ServiceDiscovery::Instance" || "AWS::Transfer::Certificate" || "AWS::MediaConnect::FlowSource" || "AWS::APS::RuleGroupsNamespace" || "AWS::CodeGuruProfiler::ProfilingGroup" || "AWS::Route53Resolver::ResolverQueryLoggingConfig" || "AWS::Batch::SchedulingPolicy",
* ],
* },
* recordingStrategy: { // RecordingStrategy
diff --git a/clients/client-config-service/src/commands/PutDeliveryChannelCommand.ts b/clients/client-config-service/src/commands/PutDeliveryChannelCommand.ts
index 5a7f96306b2b0..68f8d3a3a23e9 100644
--- a/clients/client-config-service/src/commands/PutDeliveryChannelCommand.ts
+++ b/clients/client-config-service/src/commands/PutDeliveryChannelCommand.ts
@@ -38,7 +38,9 @@ export interface PutDeliveryChannelCommandOutput extends __MetadataBearer {}
/**
* @public
*
Creates a delivery channel object to deliver configuration
- * information to an Amazon S3 bucket and Amazon SNS topic.
+ * information and other compliance information to an Amazon S3 bucket and Amazon SNS topic.
+ * For more information,
+ * see Notifications that Config Sends to an Amazon SNS topic .
* Before you can create a delivery channel, you must create a
* configuration recorder.
* You can use this action to change the Amazon S3 bucket or an
diff --git a/clients/client-config-service/src/commands/StartRemediationExecutionCommand.ts b/clients/client-config-service/src/commands/StartRemediationExecutionCommand.ts
index 19aebf55cbfb1..d7b7d68eeec3d 100644
--- a/clients/client-config-service/src/commands/StartRemediationExecutionCommand.ts
+++ b/clients/client-config-service/src/commands/StartRemediationExecutionCommand.ts
@@ -49,7 +49,7 @@ export interface StartRemediationExecutionCommandOutput extends StartRemediation
* ConfigRuleName: "STRING_VALUE", // required
* ResourceKeys: [ // ResourceKeys // required
* { // ResourceKey
- * resourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation", // required
+ * resourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation" || "AWS::IoTWireless::MulticastGroup" || "AWS::Personalize::DatasetGroup" || "AWS::IoTTwinMaker::ComponentType" || "AWS::CodeBuild::ReportGroup" || "AWS::SageMaker::FeatureGroup" || "AWS::MSK::BatchScramSecret" || "AWS::AppStream::Stack" || "AWS::IoT::JobTemplate" || "AWS::IoTWireless::FuotaTask" || "AWS::IoT::ProvisioningTemplate" || "AWS::InspectorV2::Filter" || "AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation" || "AWS::ServiceDiscovery::Instance" || "AWS::Transfer::Certificate" || "AWS::MediaConnect::FlowSource" || "AWS::APS::RuleGroupsNamespace" || "AWS::CodeGuruProfiler::ProfilingGroup" || "AWS::Route53Resolver::ResolverQueryLoggingConfig" || "AWS::Batch::SchedulingPolicy", // required
* resourceId: "STRING_VALUE", // required
* },
* ],
@@ -60,7 +60,7 @@ export interface StartRemediationExecutionCommandOutput extends StartRemediation
* // FailureMessage: "STRING_VALUE",
* // FailedItems: [ // ResourceKeys
* // { // ResourceKey
- * // resourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation", // required
+ * // resourceType: "AWS::EC2::CustomerGateway" || "AWS::EC2::EIP" || "AWS::EC2::Host" || "AWS::EC2::Instance" || "AWS::EC2::InternetGateway" || "AWS::EC2::NetworkAcl" || "AWS::EC2::NetworkInterface" || "AWS::EC2::RouteTable" || "AWS::EC2::SecurityGroup" || "AWS::EC2::Subnet" || "AWS::CloudTrail::Trail" || "AWS::EC2::Volume" || "AWS::EC2::VPC" || "AWS::EC2::VPNConnection" || "AWS::EC2::VPNGateway" || "AWS::EC2::RegisteredHAInstance" || "AWS::EC2::NatGateway" || "AWS::EC2::EgressOnlyInternetGateway" || "AWS::EC2::VPCEndpoint" || "AWS::EC2::VPCEndpointService" || "AWS::EC2::FlowLog" || "AWS::EC2::VPCPeeringConnection" || "AWS::Elasticsearch::Domain" || "AWS::IAM::Group" || "AWS::IAM::Policy" || "AWS::IAM::Role" || "AWS::IAM::User" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::ACM::Certificate" || "AWS::RDS::DBInstance" || "AWS::RDS::DBSubnetGroup" || "AWS::RDS::DBSecurityGroup" || "AWS::RDS::DBSnapshot" || "AWS::RDS::DBCluster" || "AWS::RDS::DBClusterSnapshot" || "AWS::RDS::EventSubscription" || "AWS::S3::Bucket" || "AWS::S3::AccountPublicAccessBlock" || "AWS::Redshift::Cluster" || "AWS::Redshift::ClusterSnapshot" || "AWS::Redshift::ClusterParameterGroup" || "AWS::Redshift::ClusterSecurityGroup" || "AWS::Redshift::ClusterSubnetGroup" || "AWS::Redshift::EventSubscription" || "AWS::SSM::ManagedInstanceInventory" || "AWS::CloudWatch::Alarm" || "AWS::CloudFormation::Stack" || "AWS::ElasticLoadBalancing::LoadBalancer" || "AWS::AutoScaling::AutoScalingGroup" || "AWS::AutoScaling::LaunchConfiguration" || "AWS::AutoScaling::ScalingPolicy" || "AWS::AutoScaling::ScheduledAction" || "AWS::DynamoDB::Table" || "AWS::CodeBuild::Project" || "AWS::WAF::RateBasedRule" || "AWS::WAF::Rule" || "AWS::WAF::RuleGroup" || "AWS::WAF::WebACL" || "AWS::WAFRegional::RateBasedRule" || "AWS::WAFRegional::Rule" || "AWS::WAFRegional::RuleGroup" || "AWS::WAFRegional::WebACL" || "AWS::CloudFront::Distribution" || "AWS::CloudFront::StreamingDistribution" || "AWS::Lambda::Function" || "AWS::NetworkFirewall::Firewall" || "AWS::NetworkFirewall::FirewallPolicy" || "AWS::NetworkFirewall::RuleGroup" || "AWS::ElasticBeanstalk::Application" || "AWS::ElasticBeanstalk::ApplicationVersion" || "AWS::ElasticBeanstalk::Environment" || "AWS::WAFv2::WebACL" || "AWS::WAFv2::RuleGroup" || "AWS::WAFv2::IPSet" || "AWS::WAFv2::RegexPatternSet" || "AWS::WAFv2::ManagedRuleSet" || "AWS::XRay::EncryptionConfig" || "AWS::SSM::AssociationCompliance" || "AWS::SSM::PatchCompliance" || "AWS::Shield::Protection" || "AWS::ShieldRegional::Protection" || "AWS::Config::ConformancePackCompliance" || "AWS::Config::ResourceCompliance" || "AWS::ApiGateway::Stage" || "AWS::ApiGateway::RestApi" || "AWS::ApiGatewayV2::Stage" || "AWS::ApiGatewayV2::Api" || "AWS::CodePipeline::Pipeline" || "AWS::ServiceCatalog::CloudFormationProvisionedProduct" || "AWS::ServiceCatalog::CloudFormationProduct" || "AWS::ServiceCatalog::Portfolio" || "AWS::SQS::Queue" || "AWS::KMS::Key" || "AWS::QLDB::Ledger" || "AWS::SecretsManager::Secret" || "AWS::SNS::Topic" || "AWS::SSM::FileData" || "AWS::Backup::BackupPlan" || "AWS::Backup::BackupSelection" || "AWS::Backup::BackupVault" || "AWS::Backup::RecoveryPoint" || "AWS::ECR::Repository" || "AWS::ECS::Cluster" || "AWS::ECS::Service" || "AWS::ECS::TaskDefinition" || "AWS::EFS::AccessPoint" || "AWS::EFS::FileSystem" || "AWS::EKS::Cluster" || "AWS::OpenSearch::Domain" || "AWS::EC2::TransitGateway" || "AWS::Kinesis::Stream" || "AWS::Kinesis::StreamConsumer" || "AWS::CodeDeploy::Application" || "AWS::CodeDeploy::DeploymentConfig" || "AWS::CodeDeploy::DeploymentGroup" || "AWS::EC2::LaunchTemplate" || "AWS::ECR::PublicRepository" || "AWS::GuardDuty::Detector" || "AWS::EMR::SecurityConfiguration" || "AWS::SageMaker::CodeRepository" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::Route53Resolver::ResolverRule" || "AWS::Route53Resolver::ResolverRuleAssociation" || "AWS::DMS::ReplicationSubnetGroup" || "AWS::DMS::EventSubscription" || "AWS::MSK::Cluster" || "AWS::StepFunctions::Activity" || "AWS::WorkSpaces::Workspace" || "AWS::WorkSpaces::ConnectionAlias" || "AWS::SageMaker::Model" || "AWS::ElasticLoadBalancingV2::Listener" || "AWS::StepFunctions::StateMachine" || "AWS::Batch::JobQueue" || "AWS::Batch::ComputeEnvironment" || "AWS::AccessAnalyzer::Analyzer" || "AWS::Athena::WorkGroup" || "AWS::Athena::DataCatalog" || "AWS::Detective::Graph" || "AWS::GlobalAccelerator::Accelerator" || "AWS::GlobalAccelerator::EndpointGroup" || "AWS::GlobalAccelerator::Listener" || "AWS::EC2::TransitGatewayAttachment" || "AWS::EC2::TransitGatewayRouteTable" || "AWS::DMS::Certificate" || "AWS::AppConfig::Application" || "AWS::AppSync::GraphQLApi" || "AWS::DataSync::LocationSMB" || "AWS::DataSync::LocationFSxLustre" || "AWS::DataSync::LocationS3" || "AWS::DataSync::LocationEFS" || "AWS::DataSync::Task" || "AWS::DataSync::LocationNFS" || "AWS::EC2::NetworkInsightsAccessScopeAnalysis" || "AWS::EKS::FargateProfile" || "AWS::Glue::Job" || "AWS::GuardDuty::ThreatIntelSet" || "AWS::GuardDuty::IPSet" || "AWS::SageMaker::Workteam" || "AWS::SageMaker::NotebookInstanceLifecycleConfig" || "AWS::ServiceDiscovery::Service" || "AWS::ServiceDiscovery::PublicDnsNamespace" || "AWS::SES::ContactList" || "AWS::SES::ConfigurationSet" || "AWS::Route53::HostedZone" || "AWS::IoTEvents::Input" || "AWS::IoTEvents::DetectorModel" || "AWS::IoTEvents::AlarmModel" || "AWS::ServiceDiscovery::HttpNamespace" || "AWS::Events::EventBus" || "AWS::ImageBuilder::ContainerRecipe" || "AWS::ImageBuilder::DistributionConfiguration" || "AWS::ImageBuilder::InfrastructureConfiguration" || "AWS::DataSync::LocationObjectStorage" || "AWS::DataSync::LocationHDFS" || "AWS::Glue::Classifier" || "AWS::Route53RecoveryReadiness::Cell" || "AWS::Route53RecoveryReadiness::ReadinessCheck" || "AWS::ECR::RegistryPolicy" || "AWS::Backup::ReportPlan" || "AWS::Lightsail::Certificate" || "AWS::RUM::AppMonitor" || "AWS::Events::Endpoint" || "AWS::SES::ReceiptRuleSet" || "AWS::Events::Archive" || "AWS::Events::ApiDestination" || "AWS::Lightsail::Disk" || "AWS::FIS::ExperimentTemplate" || "AWS::DataSync::LocationFSxWindows" || "AWS::SES::ReceiptFilter" || "AWS::GuardDuty::Filter" || "AWS::SES::Template" || "AWS::AmazonMQ::Broker" || "AWS::AppConfig::Environment" || "AWS::AppConfig::ConfigurationProfile" || "AWS::Cloud9::EnvironmentEC2" || "AWS::EventSchemas::Registry" || "AWS::EventSchemas::RegistryPolicy" || "AWS::EventSchemas::Discoverer" || "AWS::FraudDetector::Label" || "AWS::FraudDetector::EntityType" || "AWS::FraudDetector::Variable" || "AWS::FraudDetector::Outcome" || "AWS::IoT::Authorizer" || "AWS::IoT::SecurityProfile" || "AWS::IoT::RoleAlias" || "AWS::IoT::Dimension" || "AWS::IoTAnalytics::Datastore" || "AWS::Lightsail::Bucket" || "AWS::Lightsail::StaticIp" || "AWS::MediaPackage::PackagingGroup" || "AWS::Route53RecoveryReadiness::RecoveryGroup" || "AWS::ResilienceHub::ResiliencyPolicy" || "AWS::Transfer::Workflow" || "AWS::EKS::IdentityProviderConfig" || "AWS::EKS::Addon" || "AWS::Glue::MLTransform" || "AWS::IoT::Policy" || "AWS::IoT::MitigationAction" || "AWS::IoTTwinMaker::Workspace" || "AWS::IoTTwinMaker::Entity" || "AWS::IoTAnalytics::Dataset" || "AWS::IoTAnalytics::Pipeline" || "AWS::IoTAnalytics::Channel" || "AWS::IoTSiteWise::Dashboard" || "AWS::IoTSiteWise::Project" || "AWS::IoTSiteWise::Portal" || "AWS::IoTSiteWise::AssetModel" || "AWS::IVS::Channel" || "AWS::IVS::RecordingConfiguration" || "AWS::IVS::PlaybackKeyPair" || "AWS::KinesisAnalyticsV2::Application" || "AWS::RDS::GlobalCluster" || "AWS::S3::MultiRegionAccessPoint" || "AWS::DeviceFarm::TestGridProject" || "AWS::Budgets::BudgetsAction" || "AWS::Lex::Bot" || "AWS::CodeGuruReviewer::RepositoryAssociation" || "AWS::IoT::CustomMetric" || "AWS::Route53Resolver::FirewallDomainList" || "AWS::RoboMaker::RobotApplicationVersion" || "AWS::EC2::TrafficMirrorSession" || "AWS::IoTSiteWise::Gateway" || "AWS::Lex::BotAlias" || "AWS::LookoutMetrics::Alert" || "AWS::IoT::AccountAuditConfiguration" || "AWS::EC2::TrafficMirrorTarget" || "AWS::S3::StorageLens" || "AWS::IoT::ScheduledAudit" || "AWS::Events::Connection" || "AWS::EventSchemas::Schema" || "AWS::MediaPackage::PackagingConfiguration" || "AWS::KinesisVideo::SignalingChannel" || "AWS::AppStream::DirectoryConfig" || "AWS::LookoutVision::Project" || "AWS::Route53RecoveryControl::Cluster" || "AWS::Route53RecoveryControl::SafetyRule" || "AWS::Route53RecoveryControl::ControlPanel" || "AWS::Route53RecoveryControl::RoutingControl" || "AWS::Route53RecoveryReadiness::ResourceSet" || "AWS::RoboMaker::SimulationApplication" || "AWS::RoboMaker::RobotApplication" || "AWS::HealthLake::FHIRDatastore" || "AWS::Pinpoint::Segment" || "AWS::Pinpoint::ApplicationSettings" || "AWS::Events::Rule" || "AWS::EC2::DHCPOptions" || "AWS::EC2::NetworkInsightsPath" || "AWS::EC2::TrafficMirrorFilter" || "AWS::EC2::IPAM" || "AWS::IoTTwinMaker::Scene" || "AWS::NetworkManager::TransitGatewayRegistration" || "AWS::CustomerProfiles::Domain" || "AWS::AutoScaling::WarmPool" || "AWS::Connect::PhoneNumber" || "AWS::AppConfig::DeploymentStrategy" || "AWS::AppFlow::Flow" || "AWS::AuditManager::Assessment" || "AWS::CloudWatch::MetricStream" || "AWS::DeviceFarm::InstanceProfile" || "AWS::DeviceFarm::Project" || "AWS::EC2::EC2Fleet" || "AWS::EC2::SubnetRouteTableAssociation" || "AWS::ECR::PullThroughCacheRule" || "AWS::GroundStation::Config" || "AWS::ImageBuilder::ImagePipeline" || "AWS::IoT::FleetMetric" || "AWS::IoTWireless::ServiceProfile" || "AWS::NetworkManager::Device" || "AWS::NetworkManager::GlobalNetwork" || "AWS::NetworkManager::Link" || "AWS::NetworkManager::Site" || "AWS::Panorama::Package" || "AWS::Pinpoint::App" || "AWS::Redshift::ScheduledAction" || "AWS::Route53Resolver::FirewallRuleGroupAssociation" || "AWS::SageMaker::AppImageConfig" || "AWS::SageMaker::Image" || "AWS::ECS::TaskSet" || "AWS::Cassandra::Keyspace" || "AWS::Signer::SigningProfile" || "AWS::Amplify::App" || "AWS::AppMesh::VirtualNode" || "AWS::AppMesh::VirtualService" || "AWS::AppRunner::VpcConnector" || "AWS::AppStream::Application" || "AWS::CodeArtifact::Repository" || "AWS::EC2::PrefixList" || "AWS::EC2::SpotFleet" || "AWS::Evidently::Project" || "AWS::Forecast::Dataset" || "AWS::IAM::SAMLProvider" || "AWS::IAM::ServerCertificate" || "AWS::Pinpoint::Campaign" || "AWS::Pinpoint::InAppTemplate" || "AWS::SageMaker::Domain" || "AWS::Transfer::Agreement" || "AWS::Transfer::Connector" || "AWS::KinesisFirehose::DeliveryStream" || "AWS::Amplify::Branch" || "AWS::AppIntegrations::EventIntegration" || "AWS::AppMesh::Route" || "AWS::Athena::PreparedStatement" || "AWS::EC2::IPAMScope" || "AWS::Evidently::Launch" || "AWS::Forecast::DatasetGroup" || "AWS::GreengrassV2::ComponentVersion" || "AWS::GroundStation::MissionProfile" || "AWS::MediaConnect::FlowEntitlement" || "AWS::MediaConnect::FlowVpcInterface" || "AWS::MediaTailor::PlaybackConfiguration" || "AWS::MSK::Configuration" || "AWS::Personalize::Dataset" || "AWS::Personalize::Schema" || "AWS::Personalize::Solution" || "AWS::Pinpoint::EmailTemplate" || "AWS::Pinpoint::EventStream" || "AWS::ResilienceHub::App" || "AWS::ACMPCA::CertificateAuthority" || "AWS::AppConfig::HostedConfigurationVersion" || "AWS::AppMesh::VirtualGateway" || "AWS::AppMesh::VirtualRouter" || "AWS::AppRunner::Service" || "AWS::CustomerProfiles::ObjectType" || "AWS::DMS::Endpoint" || "AWS::EC2::CapacityReservation" || "AWS::EC2::ClientVpnEndpoint" || "AWS::Kendra::Index" || "AWS::KinesisVideo::Stream" || "AWS::Logs::Destination" || "AWS::Pinpoint::EmailChannel" || "AWS::S3::AccessPoint" || "AWS::NetworkManager::CustomerGatewayAssociation" || "AWS::NetworkManager::LinkAssociation" || "AWS::IoTWireless::MulticastGroup" || "AWS::Personalize::DatasetGroup" || "AWS::IoTTwinMaker::ComponentType" || "AWS::CodeBuild::ReportGroup" || "AWS::SageMaker::FeatureGroup" || "AWS::MSK::BatchScramSecret" || "AWS::AppStream::Stack" || "AWS::IoT::JobTemplate" || "AWS::IoTWireless::FuotaTask" || "AWS::IoT::ProvisioningTemplate" || "AWS::InspectorV2::Filter" || "AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation" || "AWS::ServiceDiscovery::Instance" || "AWS::Transfer::Certificate" || "AWS::MediaConnect::FlowSource" || "AWS::APS::RuleGroupsNamespace" || "AWS::CodeGuruProfiler::ProfilingGroup" || "AWS::Route53Resolver::ResolverQueryLoggingConfig" || "AWS::Batch::SchedulingPolicy", // required
* // resourceId: "STRING_VALUE", // required
* // },
* // ],
diff --git a/clients/client-config-service/src/models/models_0.ts b/clients/client-config-service/src/models/models_0.ts
index 27cf44d224f8e..c26900e9fd8ae 100644
--- a/clients/client-config-service/src/models/models_0.ts
+++ b/clients/client-config-service/src/models/models_0.ts
@@ -604,6 +604,7 @@ export interface AggregateEvaluationResult {
*/
export const ResourceType = {
ACMPCACertificateAuthority: "AWS::ACMPCA::CertificateAuthority",
+ APSRuleGroupsNamespace: "AWS::APS::RuleGroupsNamespace",
AccessAnalyzerAnalyzer: "AWS::AccessAnalyzer::Analyzer",
AccountPublicAccessBlock: "AWS::S3::AccountPublicAccessBlock",
Alarm: "AWS::CloudWatch::Alarm",
@@ -627,6 +628,7 @@ export const ResourceType = {
AppRunnerVpcConnector: "AWS::AppRunner::VpcConnector",
AppStreamApplication: "AWS::AppStream::Application",
AppStreamDirectoryConfig: "AWS::AppStream::DirectoryConfig",
+ AppStreamStack: "AWS::AppStream::Stack",
AppSyncGraphQLApi: "AWS::AppSync::GraphQLApi",
Application: "AWS::ElasticBeanstalk::Application",
ApplicationVersion: "AWS::ElasticBeanstalk::ApplicationVersion",
@@ -644,6 +646,7 @@ export const ResourceType = {
BackupVault: "AWS::Backup::BackupVault",
BatchComputeEnvironment: "AWS::Batch::ComputeEnvironment",
BatchJobQueue: "AWS::Batch::JobQueue",
+ BatchSchedulingPolicy: "AWS::Batch::SchedulingPolicy",
Bucket: "AWS::S3::Bucket",
BudgetsBudgetsAction: "AWS::Budgets::BudgetsAction",
CassandraKeyspace: "AWS::Cassandra::Keyspace",
@@ -658,9 +661,11 @@ export const ResourceType = {
ClusterSnapshot: "AWS::Redshift::ClusterSnapshot",
ClusterSubnetGroup: "AWS::Redshift::ClusterSubnetGroup",
CodeArtifactRepository: "AWS::CodeArtifact::Repository",
+ CodeBuildReportGroup: "AWS::CodeBuild::ReportGroup",
CodeDeployApplication: "AWS::CodeDeploy::Application",
CodeDeployDeploymentConfig: "AWS::CodeDeploy::DeploymentConfig",
CodeDeployDeploymentGroup: "AWS::CodeDeploy::DeploymentGroup",
+ CodeGuruProfilerProfilingGroup: "AWS::CodeGuruProfiler::ProfilingGroup",
CodeGuruReviewerRepositoryAssociation: "AWS::CodeGuruReviewer::RepositoryAssociation",
ConformancePackCompliance: "AWS::Config::ConformancePackCompliance",
ConnectPhoneNumber: "AWS::Connect::PhoneNumber",
@@ -773,6 +778,7 @@ export const ResourceType = {
ImageBuilderDistributionConfiguration: "AWS::ImageBuilder::DistributionConfiguration",
ImageBuilderImagePipeline: "AWS::ImageBuilder::ImagePipeline",
ImageBuilderInfrastructureConfiguration: "AWS::ImageBuilder::InfrastructureConfiguration",
+ InspectorV2Filter: "AWS::InspectorV2::Filter",
Instance: "AWS::EC2::Instance",
InternetGateway: "AWS::EC2::InternetGateway",
IoTAccountAuditConfiguration: "AWS::IoT::AccountAuditConfiguration",
@@ -787,8 +793,10 @@ export const ResourceType = {
IoTEventsDetectorModel: "AWS::IoTEvents::DetectorModel",
IoTEventsInput: "AWS::IoTEvents::Input",
IoTFleetMetric: "AWS::IoT::FleetMetric",
+ IoTJobTemplate: "AWS::IoT::JobTemplate",
IoTMitigationAction: "AWS::IoT::MitigationAction",
IoTPolicy: "AWS::IoT::Policy",
+ IoTProvisioningTemplate: "AWS::IoT::ProvisioningTemplate",
IoTRoleAlias: "AWS::IoT::RoleAlias",
IoTScheduledAudit: "AWS::IoT::ScheduledAudit",
IoTSecurityProfile: "AWS::IoT::SecurityProfile",
@@ -797,9 +805,12 @@ export const ResourceType = {
IoTSiteWiseGateway: "AWS::IoTSiteWise::Gateway",
IoTSiteWisePortal: "AWS::IoTSiteWise::Portal",
IoTSiteWiseProject: "AWS::IoTSiteWise::Project",
+ IoTTwinMakerComponentType: "AWS::IoTTwinMaker::ComponentType",
IoTTwinMakerEntity: "AWS::IoTTwinMaker::Entity",
IoTTwinMakerScene: "AWS::IoTTwinMaker::Scene",
IoTTwinMakerWorkspace: "AWS::IoTTwinMaker::Workspace",
+ IoTWirelessFuotaTask: "AWS::IoTWireless::FuotaTask",
+ IoTWirelessMulticastGroup: "AWS::IoTWireless::MulticastGroup",
IoTWirelessServiceProfile: "AWS::IoTWireless::ServiceProfile",
KendraIndex: "AWS::Kendra::Index",
Key: "AWS::KMS::Key",
@@ -823,11 +834,13 @@ export const ResourceType = {
LogsDestination: "AWS::Logs::Destination",
LookoutMetricsAlert: "AWS::LookoutMetrics::Alert",
LookoutVisionProject: "AWS::LookoutVision::Project",
+ MSKBatchScramSecret: "AWS::MSK::BatchScramSecret",
MSKCluster: "AWS::MSK::Cluster",
MSKConfiguration: "AWS::MSK::Configuration",
ManagedInstanceInventory: "AWS::SSM::ManagedInstanceInventory",
ManagedRuleSetV2: "AWS::WAFv2::ManagedRuleSet",
MediaConnectFlowEntitlement: "AWS::MediaConnect::FlowEntitlement",
+ MediaConnectFlowSource: "AWS::MediaConnect::FlowSource",
MediaConnectFlowVpcInterface: "AWS::MediaConnect::FlowVpcInterface",
MediaPackagePackagingConfiguration: "AWS::MediaPackage::PackagingConfiguration",
MediaPackagePackagingGroup: "AWS::MediaPackage::PackagingGroup",
@@ -850,6 +863,7 @@ export const ResourceType = {
PanoramaPackage: "AWS::Panorama::Package",
PatchCompliance: "AWS::SSM::PatchCompliance",
PersonalizeDataset: "AWS::Personalize::Dataset",
+ PersonalizeDatasetGroup: "AWS::Personalize::DatasetGroup",
PersonalizeSchema: "AWS::Personalize::Schema",
PersonalizeSolution: "AWS::Personalize::Solution",
PinpointApp: "AWS::Pinpoint::App",
@@ -899,6 +913,8 @@ export const ResourceType = {
Route53ResolverFirewallDomainList: "AWS::Route53Resolver::FirewallDomainList",
Route53ResolverFirewallRuleGroupAssociation: "AWS::Route53Resolver::FirewallRuleGroupAssociation",
Route53ResolverResolverEndpoint: "AWS::Route53Resolver::ResolverEndpoint",
+ Route53ResolverResolverQueryLoggingConfig: "AWS::Route53Resolver::ResolverQueryLoggingConfig",
+ Route53ResolverResolverQueryLoggingConfigAssociation: "AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation",
Route53ResolverResolverRule: "AWS::Route53Resolver::ResolverRule",
Route53ResolverResolverRuleAssociation: "AWS::Route53Resolver::ResolverRuleAssociation",
RouteTable: "AWS::EC2::RouteTable",
@@ -916,6 +932,7 @@ export const ResourceType = {
SageMakerAppImageConfig: "AWS::SageMaker::AppImageConfig",
SageMakerCodeRepository: "AWS::SageMaker::CodeRepository",
SageMakerDomain: "AWS::SageMaker::Domain",
+ SageMakerFeatureGroup: "AWS::SageMaker::FeatureGroup",
SageMakerImage: "AWS::SageMaker::Image",
SageMakerModel: "AWS::SageMaker::Model",
SageMakerNotebookInstanceLifecycleConfig: "AWS::SageMaker::NotebookInstanceLifecycleConfig",
@@ -925,6 +942,7 @@ export const ResourceType = {
Secret: "AWS::SecretsManager::Secret",
SecurityGroup: "AWS::EC2::SecurityGroup",
ServiceDiscoveryHttpNamespace: "AWS::ServiceDiscovery::HttpNamespace",
+ ServiceDiscoveryInstance: "AWS::ServiceDiscovery::Instance",
ServiceDiscoveryPublicDnsNamespace: "AWS::ServiceDiscovery::PublicDnsNamespace",
ServiceDiscoveryService: "AWS::ServiceDiscovery::Service",
SignerSigningProfile: "AWS::Signer::SigningProfile",
@@ -939,6 +957,7 @@ export const ResourceType = {
Topic: "AWS::SNS::Topic",
Trail: "AWS::CloudTrail::Trail",
TransferAgreement: "AWS::Transfer::Agreement",
+ TransferCertificate: "AWS::Transfer::Certificate",
TransferConnector: "AWS::Transfer::Connector",
TransferWorkflow: "AWS::Transfer::Workflow",
TransitGateway: "AWS::EC2::TransitGateway",
@@ -1093,9 +1112,6 @@ export interface BaseConfigurationItem {
*
ResourceDeletedNotRecorded – The resource was deleted but its configuration was not recorded since the recorder excludes the recording of resources of this type
*
*
- *
- * The CIs do not incur any cost.
- *
*/
configurationItemStatus?: ConfigurationItemStatus | string;
@@ -1479,7 +1495,7 @@ export type ConfigRuleState = (typeof ConfigRuleState)[keyof typeof ConfigRuleSt
/**
* @public
- * The configuration object for Config rule evaluation mode. The Supported valid values are Detective or Proactive.
+ * The configuration object for Config rule evaluation mode. The supported valid values are Detective or Proactive.
*/
export interface EvaluationModeConfiguration {
/**
@@ -2342,9 +2358,6 @@ export interface ConfigurationItem {
* ResourceDeletedNotRecorded – The resource was deleted but its configuration was not recorded since the recorder excludes the recording of resources of this type
*
*
- *
- * The CIs do not incur any cost.
- *
*/
configurationItemStatus?: ConfigurationItemStatus | string;
@@ -2450,8 +2463,46 @@ export interface ConfigurationItem {
/**
* @public
- * Specifies whether the configuration recorder excludes resource types from being recorded.
- * Use the resourceTypes
field to enter a comma-separated list of resource types to exclude as exemptions.
+ * Specifies whether the configuration recorder excludes certain resource types from being recorded.
+ * Use the resourceTypes
field to enter a comma-separated list of resource types you want to exclude from recording.
+ * By default, when Config adds support for a new resource type in the Region where you set up the configuration recorder,
+ * including global resource types, Config starts recording resources of that type automatically.
+ *
+ *
+ * How to use
+ *
+ * To use this option, you must set the useOnly
+ * field of RecordingStrategy
+ * to EXCLUSION_BY_RESOURCE_TYPES
.
+ * Config will then record configuration changes for all supported resource types, except the resource types that you specify to exclude from being recorded.
+ *
+ * Globally recorded resources
+ *
+ * Unless specifically listed as exclusions,
+ * AWS::RDS::GlobalCluster
will be recorded automatically in all supported Config Regions were the configuration recorder is enabled.
+ * IAM users, groups, roles, and customer managed policies will be recorded automatically in all enabled Config Regions where Config was available before February 2022.
+ * This list does not include the following Regions:
+ *
+ *
+ * Asia Pacific (Hyderabad)
+ *
+ *
+ * Asia Pacific (Melbourne)
+ *
+ *
+ * Europe (Spain)
+ *
+ *
+ * Europe (Zurich)
+ *
+ *
+ * Israel (Tel Aviv)
+ *
+ *
+ * Middle East (UAE)
+ *
+ *
+ *
*/
export interface ExclusionByResourceTypes {
/**
@@ -2487,8 +2538,9 @@ export interface RecordingStrategy {
* The recording strategy for the configuration recorder.
*
*
- * If you set this option to ALL_SUPPORTED_RESOURCE_TYPES
, Config records configuration changes for all supported regional resource types. You also must set the allSupported
field of RecordingGroup to true
.
- * When Config adds support for a new type of regional resource, Config automatically starts recording resources of that type. For a list of supported resource types,
+ *
If you set this option to ALL_SUPPORTED_RESOURCE_TYPES
, Config records configuration changes for all supported regionally recorded resource types.
+ * You also must set the allSupported
field of RecordingGroup to true
.
+ * When Config adds support for a new regionally recorded resource type, Config automatically starts recording resources of that type. For a list of supported resource types,
* see Supported Resource Types in the Config developer guide .
*
*
@@ -2499,11 +2551,14 @@ export interface RecordingStrategy {
*
* If you set this option to EXCLUSION_BY_RESOURCE_TYPES
, Config records
* configuration changes for all supported resource types, except the resource
- * types that you specify as exemptions to exclude from being recorded in the
+ * types that you specify to exclude from being recorded in the
* resourceTypes
field of ExclusionByResourceTypes .
*
*
*
+ *
+ * Required and optional fields
+ *
* The recordingStrategy
field is optional when you set the
* allSupported
field of RecordingGroup to true
.
* The recordingStrategy
field is optional when you list resource types in the
@@ -2511,12 +2566,44 @@ export interface RecordingStrategy {
*
The recordingStrategy
field is required if you list resource types to exclude from recording in the resourceTypes
field of ExclusionByResourceTypes .
*
*
+ *
+ * Overriding fields
+ *
* If you choose EXCLUSION_BY_RESOURCE_TYPES
for the recording strategy, the exclusionByResourceTypes
field will override other properties in the request.
- * For example, even if you set includeGlobalResourceTypes
to false, global resource types will still be automatically
- * recorded in this option unless those resource types are specifically listed as exemptions in the resourceTypes
field of exclusionByResourceTypes
.
+ * For example, even if you set includeGlobalResourceTypes
to false, globally recorded IAM resource types will still be automatically
+ * recorded in this option unless those resource types are specifically listed as exclusions in the resourceTypes
field of exclusionByResourceTypes
.
+ *
+ *
+ *
+ * Global resource types and the exclusion recording strategy
+ *
* By default, if you choose the EXCLUSION_BY_RESOURCE_TYPES
recording strategy,
* when Config adds support for a new resource type in the Region where you set up the configuration recorder, including global resource types,
* Config starts recording resources of that type automatically.
+ * In addition, unless specifically listed as exclusions,
+ * AWS::RDS::GlobalCluster
will be recorded automatically in all supported Config Regions were the configuration recorder is enabled.
+ * IAM users, groups, roles, and customer managed policies will be recorded automatically in all enabled Config Regions where Config was available before February 2022.
+ * This list does not include the following Regions:
+ *
+ *
+ * Asia Pacific (Hyderabad)
+ *
+ *
+ * Asia Pacific (Melbourne)
+ *
+ *
+ * Europe (Spain)
+ *
+ *
+ * Europe (Zurich)
+ *
+ *
+ * Israel (Tel Aviv)
+ *
+ *
+ * Middle East (UAE)
+ *
+ *
*
*/
useOnly?: RecordingStrategyType | string;
@@ -2525,51 +2612,108 @@ export interface RecordingStrategy {
/**
* @public
* Specifies which resource types Config
- * records for configuration changes.
- * In the recording group, you specify whether you want to record all supported resource types or to include or exclude specific types of resources.
- * By default, Config records configuration changes for all supported types of
- * Regional resources that Config discovers in the
- * Amazon Web Services Region in which it is running. Regional resources are tied to a
- * Region and can be used only in that Region. Examples of Regional resources are Amazon EC2 instances and Amazon EBS volumes.
- * You can also have Config record supported types of global resources .
- * Global resources are not tied to a specific Region and can be used in all Regions. The global
- * resource types that Config supports include IAM users, groups, roles, and customer managed
- * policies.
+ * records for configuration changes. By default, Config records configuration changes for all current and future supported resource types in the Amazon Web Services Region where you have enabled Config
+ * (excluding the globally recorded IAM resource types: IAM users, groups, roles, and customer managed policies).
+ * In the recording group, you specify whether you want to record all supported current and future supported resource types or to include or exclude specific resources types.
+ * For a list of supported resource types, see Supported Resource Types in the Config developer guide .
+ * If you don't want Config to record all current and future supported resource types, use one of the following recording strategies:
+ *
+ *
+ *
+ * Record all current and future resource types with exclusions (EXCLUSION_BY_RESOURCE_TYPES
), or
+ *
+ *
+ *
+ * Record specific resource types (INCLUSION_BY_RESOURCE_TYPES
).
+ *
+ *
*
- * Global resource types onboarded to Config recording after February 2022 will
- * be recorded only in the service's home Region for the commercial partition and
- * Amazon Web Services GovCloud (US-West) for the Amazon Web Services GovCloud (US) partition. You can view the
- * Configuration Items for these new global resource types only in their home Region
- * and Amazon Web Services GovCloud (US-West).
+ *
+ * Aurora global clusters are automatically globally recorded
+ *
+ * The AWS::RDS::GlobalCluster
resource type
+ * will be recorded in all supported Config Regions where the configuration recorder is enabled.
+ * If you do not want to record AWS::RDS::GlobalCluster
in all enabled Regions, use the EXCLUSION_BY_RESOURCE_TYPES
or INCLUSION_BY_RESOURCE_TYPES
recording strategy.
*
- * If you don't want Config to record all resources, you can specify which types of resources Config records with the resourceTypes
parameter.
- * For a list of supported resource types, see Supported Resource Types in the Config developer guide .
- * For more information and a table of the Home Regions for Global Resource Types Onboarded after February 2022, see Selecting Which Resources Config Records in the Config developer guide .
*/
export interface RecordingGroup {
/**
* @public
- * Specifies whether Config records configuration changes for all supported regional resource types.
+ * Specifies whether Config records configuration changes for all supported regionally recorded resource types.
* If you set this field to true
, when Config
- * adds support for a new type of regional resource, Config starts recording resources of that type automatically.
+ * adds support for a new regionally recorded resource type, Config starts recording resources of that type automatically.
* If you set this field to true
,
* you cannot enumerate specific resource types to record in the resourceTypes
field of RecordingGroup , or to exclude in the resourceTypes
field of ExclusionByResourceTypes .
+ *
+ *
+ * Region Availability
+ *
+ * Check Resource Coverage by Region Availability
+ * to see if a resource type is supported in the Amazon Web Services Region where you set up Config.
+ *
*/
allSupported?: boolean;
/**
* @public
- * Specifies whether Config records configuration changes for all supported global resources.
- * Before you set this field to true
,
+ *
A legacy field which only applies to the globally recorded IAM resource types : IAM users, groups, roles, and customer managed policies.
+ * If you select this option, these resource types will be recorded in all enabled Config regions where Config was available before February 2022.
+ * This list does not include the following Regions:
+ *
+ *
+ * Asia Pacific (Hyderabad)
+ *
+ *
+ * Asia Pacific (Melbourne)
+ *
+ *
+ * Europe (Spain)
+ *
+ *
+ * Europe (Zurich)
+ *
+ *
+ * Israel (Tel Aviv)
+ *
+ *
+ * Middle East (UAE)
+ *
+ *
+ *
+ *
+ * Aurora global clusters are automatically globally recorded
+ *
+ * The AWS::RDS::GlobalCluster
resource type will be recorded in all supported Config Regions where the configuration recorder is enabled, even if includeGlobalResourceTypes
is not set to true
.
+ * includeGlobalResourceTypes
is a legacy field which only applies to IAM users, groups, roles, and customer managed policies.
+ *
+ * If you do not want to record AWS::RDS::GlobalCluster
in all enabled Regions, use one of the following recording strategies:
+ *
+ *
+ *
+ * Record all current and future resource types with exclusions (EXCLUSION_BY_RESOURCE_TYPES
), or
+ *
+ *
+ *
+ * Record specific resource types (INCLUSION_BY_RESOURCE_TYPES
).
+ *
+ *
+ * For more information, see Selecting Which Resources are Recorded in the Config developer guide .
+ *
+ *
+ *
+ * Required and optional fields
+ *
+ * Before you set this field to true
,
* set the allSupported
field of RecordingGroup to
* true
. Optionally, you can set the useOnly
field of RecordingStrategy to ALL_SUPPORTED_RESOURCE_TYPES
.
- * If you set this field to true
, when Config
- * adds support for a new type of global resource in the Region where you set up the configuration recorder, Config starts recording
- * resources of that type automatically.
+ *
*
- * If you set this field to false
but list global resource types in the resourceTypes
field of RecordingGroup ,
+ *
+ * Overriding fields
+ *
+ * If you set this field to false
but list globally recorded IAM resource types in the resourceTypes
field of RecordingGroup ,
* Config will still record configuration changes for those specified resource types regardless of if you set the includeGlobalResourceTypes
field to false.
- * If you do not want to record configuration changes to global resource types, make sure to not list them in the resourceTypes
field
+ *
If you do not want to record configuration changes to the globally recorded IAM resource types (IAM users, groups, roles, and customer managed policies), make sure to not list them in the resourceTypes
field
* in addition to setting the includeGlobalResourceTypes
field to false.
*
*/
@@ -2614,17 +2758,20 @@ export interface RecordingGroup {
* An object that specifies the recording strategy for the configuration recorder.
*
*
- * If you set the useOnly
field of RecordingStrategy to ALL_SUPPORTED_RESOURCE_TYPES
, Config records configuration changes for all supported regional resource types. You also must set the allSupported
field of RecordingGroup to true
. When Config adds support for a new type of regional resource, Config automatically starts recording resources of that type.
+ * If you set the useOnly
field of RecordingStrategy to ALL_SUPPORTED_RESOURCE_TYPES
, Config records configuration changes for all supported regionally recorded resource types. You also must set the allSupported
field of RecordingGroup to true
. When Config adds support for a new regionally recorded resource type, Config automatically starts recording resources of that type.
*
*
* If you set the useOnly
field of RecordingStrategy to INCLUSION_BY_RESOURCE_TYPES
, Config records configuration changes for only the resource types you specify in the resourceTypes
field of RecordingGroup .
*
*
* If you set the useOnly
field of RecordingStrategy to EXCLUSION_BY_RESOURCE_TYPES
, Config records configuration changes for all supported resource types
- * except the resource types that you specify as exemptions to exclude from being recorded in the resourceTypes
field of ExclusionByResourceTypes .
+ * except the resource types that you specify to exclude from being recorded in the resourceTypes
field of ExclusionByResourceTypes .
*
*
*
+ *
+ * Required and optional fields
+ *
* The recordingStrategy
field is optional when you set the
* allSupported
field of RecordingGroup to true
.
* The recordingStrategy
field is optional when you list resource types in the
@@ -2632,12 +2779,44 @@ export interface RecordingGroup {
*
The recordingStrategy
field is required if you list resource types to exclude from recording in the resourceTypes
field of ExclusionByResourceTypes .
*
*
+ *
+ * Overriding fields
+ *
* If you choose EXCLUSION_BY_RESOURCE_TYPES
for the recording strategy, the exclusionByResourceTypes
field will override other properties in the request.
- * For example, even if you set includeGlobalResourceTypes
to false, global resource types will still be automatically
- * recorded in this option unless those resource types are specifically listed as exemptions in the resourceTypes
field of exclusionByResourceTypes
.
+ * For example, even if you set includeGlobalResourceTypes
to false, globally recorded IAM resource types will still be automatically
+ * recorded in this option unless those resource types are specifically listed as exclusions in the resourceTypes
field of exclusionByResourceTypes
.
+ *
+ *
+ *
+ * Global resources types and the resource exclusion recording strategy
+ *
* By default, if you choose the EXCLUSION_BY_RESOURCE_TYPES
recording strategy,
- * when Config adds support for a new resource type in the Region where you set up the configuration recorder, including global resource types,
- * Config starts recording resources of that type automatically.
+ * when Config adds support for a new resource type in the Region where you set up the configuration recorder, including global resource types,
+ * Config starts recording resources of that type automatically.
+ * In addition, unless specifically listed as exclusions,
+ * AWS::RDS::GlobalCluster
will be recorded automatically in all supported Config Regions were the configuration recorder is enabled.
+ * IAM users, groups, roles, and customer managed policies will be recorded automatically in all enabled Config Regions where Config was available before February 2022.
+ * This list does not include the following Regions:
+ *
+ *
+ * Asia Pacific (Hyderabad)
+ *
+ *
+ * Asia Pacific (Melbourne)
+ *
+ *
+ * Europe (Spain)
+ *
+ *
+ * Europe (Zurich)
+ *
+ *
+ * Israel (Tel Aviv)
+ *
+ *
+ * Middle East (UAE)
+ *
+ *
*
*/
recordingStrategy?: RecordingStrategy;
@@ -4896,7 +5075,7 @@ export type OrganizationConfigRuleTriggerType =
/**
* @public
- * organization custom rule metadata such as resource type, resource ID of Amazon Web Services resource, Lambda function ARN,
+ *
An object that specifies organization custom rule metadata such as resource type, resource ID of Amazon Web Services resource, Lambda function ARN,
* and organization trigger types that trigger Config to evaluate your Amazon Web Services resources against a rule.
* It also provides the frequency with which you want Config to run evaluations for the rule if the trigger type is periodic.
*/
@@ -4980,7 +5159,7 @@ export interface OrganizationCustomRuleMetadata {
/**
* @public
- * organization managed rule metadata such as resource type and ID of Amazon Web Services resource along with the rule identifier.
+ *
An object that specifies organization managed rule metadata such as resource type and ID of Amazon Web Services resource along with the rule identifier.
* It also provides the frequency with which you want Config to run evaluations for the rule if the trigger type is periodic.
*/
export interface OrganizationManagedRuleMetadata {
@@ -7550,14 +7729,14 @@ export interface GetResourceConfigHistoryRequest {
/**
* @public
- * The time stamp that indicates a later time. If not specified,
+ *
The chronologically latest time in the time range for which the history requested. If not specified,
* current time is taken.
*/
laterTime?: Date;
/**
* @public
- * The time stamp that indicates an earlier time. If not
+ *
The chronologically earliest time in the time range for which the history requested. If not
* specified, the action returns paginated results that contain
* configuration items that start when the first configuration item was
* recorded.
diff --git a/clients/client-config-service/src/models/models_1.ts b/clients/client-config-service/src/models/models_1.ts
index 836ff0010ec66..83077146a51fa 100644
--- a/clients/client-config-service/src/models/models_1.ts
+++ b/clients/client-config-service/src/models/models_1.ts
@@ -502,7 +502,8 @@ export interface PutConformancePackRequest {
* @public
* The location of the file containing the template body (s3://bucketname/prefix
). The uri must point to a conformance pack template (max size: 300 KB) that is located in an Amazon S3 bucket in the same Region as the conformance pack.
*
- * You must have access to read Amazon S3 bucket.
+ * You must have access to read Amazon S3 bucket.
+ * In addition, in order to ensure a successful deployment, the template object must not be in an archived storage class if this parameter is passed.
*
*/
TemplateS3Uri?: string;
@@ -712,7 +713,8 @@ export interface PutOrganizationConformancePackRequest {
* Location of file containing the template body. The uri must point to the conformance pack template
* (max size: 300 KB).
*
- * You must have access to read Amazon S3 bucket.
+ * You must have access to read Amazon S3 bucket.
+ * In addition, in order to ensure a successful deployment, the template object must not be in an archived storage class if this parameter is passed.
*
*/
TemplateS3Uri?: string;
diff --git a/codegen/sdk-codegen/aws-models/config-service.json b/codegen/sdk-codegen/aws-models/config-service.json
index ecabf756a7a64..3fde9bb94e462 100644
--- a/codegen/sdk-codegen/aws-models/config-service.json
+++ b/codegen/sdk-codegen/aws-models/config-service.json
@@ -675,7 +675,7 @@
"configurationItemStatus": {
"target": "com.amazonaws.configservice#ConfigurationItemStatus",
"traits": {
- "smithy.api#documentation": "The configuration item status. The valid values are:
\n \n \n OK – The resource configuration has been updated
\n \n \n ResourceDiscovered – The resource was newly discovered
\n \n \n ResourceNotRecorded – The resource was discovered but its configuration was not recorded since the recorder excludes the recording of resources of this type
\n \n \n ResourceDeleted – The resource was deleted
\n \n \n ResourceDeletedNotRecorded – The resource was deleted but its configuration was not recorded since the recorder excludes the recording of resources of this type
\n \n \n \n The CIs do not incur any cost.
\n "
+ "smithy.api#documentation": "The configuration item status. The valid values are:
\n \n \n OK – The resource configuration has been updated
\n \n \n ResourceDiscovered – The resource was newly discovered
\n \n \n ResourceNotRecorded – The resource was discovered but its configuration was not recorded since the recorder excludes the recording of resources of this type
\n \n \n ResourceDeleted – The resource was deleted
\n \n \n ResourceDeletedNotRecorded – The resource was deleted but its configuration was not recorded since the recorder excludes the recording of resources of this type
\n \n "
}
},
"configurationStateId": {
@@ -1631,7 +1631,7 @@
"configurationItemStatus": {
"target": "com.amazonaws.configservice#ConfigurationItemStatus",
"traits": {
- "smithy.api#documentation": "The configuration item status. The valid values are:
\n \n \n OK – The resource configuration has been updated
\n \n \n ResourceDiscovered – The resource was newly discovered
\n \n \n ResourceNotRecorded – The resource was discovered but its configuration was not recorded since the recorder excludes the recording of resources of this type
\n \n \n ResourceDeleted – The resource was deleted
\n \n \n ResourceDeletedNotRecorded – The resource was deleted but its configuration was not recorded since the recorder excludes the recording of resources of this type
\n \n \n \n The CIs do not incur any cost.
\n "
+ "smithy.api#documentation": "The configuration item status. The valid values are:
\n \n \n OK – The resource configuration has been updated
\n \n \n ResourceDiscovered – The resource was newly discovered
\n \n \n ResourceNotRecorded – The resource was discovered but its configuration was not recorded since the recorder excludes the recording of resources of this type
\n \n \n ResourceDeleted – The resource was deleted
\n \n \n ResourceDeletedNotRecorded – The resource was deleted but its configuration was not recorded since the recorder excludes the recording of resources of this type
\n \n "
}
},
"configurationStateId": {
@@ -5271,7 +5271,7 @@
}
},
"traits": {
- "smithy.api#documentation": "The configuration object for Config rule evaluation mode. The Supported valid values are Detective or Proactive.
"
+ "smithy.api#documentation": "The configuration object for Config rule evaluation mode. The supported valid values are Detective or Proactive.
"
}
},
"com.amazonaws.configservice#EvaluationModes": {
@@ -5465,7 +5465,7 @@
}
},
"traits": {
- "smithy.api#documentation": "Specifies whether the configuration recorder excludes resource types from being recorded.\n\t\t\tUse the resourceTypes
field to enter a comma-separated list of resource types to exclude as exemptions.
"
+ "smithy.api#documentation": "Specifies whether the configuration recorder excludes certain resource types from being recorded.\n\t\t\tUse the resourceTypes
field to enter a comma-separated list of resource types you want to exclude from recording.
\n By default, when Config adds support for a new resource type in the Region where you set up the configuration recorder,\n\t\t\tincluding global resource types, Config starts recording resources of that type automatically.
\n \n \n How to use \n
\n To use this option, you must set the useOnly
\n\t\t\t\tfield of RecordingStrategy \n\t\t\t\tto EXCLUSION_BY_RESOURCE_TYPES
.
\n Config will then record configuration changes for all supported resource types, except the resource types that you specify to exclude from being recorded.
\n \n Globally recorded resources \n
\n Unless specifically listed as exclusions,\n\t\t\t\tAWS::RDS::GlobalCluster
will be recorded automatically in all supported Config Regions were the configuration recorder is enabled.\n\t\t\t\tIAM users, groups, roles, and customer managed policies will be recorded automatically in all enabled Config Regions where Config was available before February 2022.\n\t\t\t\tThis list does not include the following Regions:
\n \n \n Asia Pacific (Hyderabad)
\n \n \n Asia Pacific (Melbourne)
\n \n \n Europe (Spain)
\n \n \n Europe (Zurich)
\n \n \n Israel (Tel Aviv)
\n \n \n Middle East (UAE)
\n \n \n "
}
},
"com.amazonaws.configservice#ExecutionControls": {
@@ -6902,7 +6902,7 @@
}
],
"traits": {
- "smithy.api#documentation": "Returns a list of ConfigurationItems
for the specified resource.\n\t\t\tThe list contains details about each state of the resource\n\t\t\tduring the specified time interval. If you specified a retention\n\t\t\tperiod to retain your ConfigurationItems
between a\n\t\t\tminimum of 30 days and a maximum of 7 years (2557 days), Config\n\t\t\treturns the ConfigurationItems
for the specified\n\t\t\tretention period.
\n The response is paginated. By default, Config returns a\n\t\t\tlimit of 10 configuration items per page. You can customize this\n\t\t\tnumber with the limit
parameter. The response includes\n\t\t\ta nextToken
string. To get the next page of results,\n\t\t\trun the request again and specify the string for the\n\t\t\t\tnextToken
parameter.
\n \n Each call to the API is limited to span a duration of seven\n\t\t\t\tdays. It is likely that the number of records returned is\n\t\t\t\tsmaller than the specified limit
. In such cases,\n\t\t\t\tyou can make another call, using the\n\t\t\t\tnextToken
.
\n ",
+ "smithy.api#documentation": "\n For accurate reporting on the compliance status, you must record the AWS::Config::ResourceCompliance
resource type.\n\t\t\tFor more information, see Selecting Which Resources Config Records .
\n \n Returns a list of ConfigurationItems
for the specified resource.\n\t\t\tThe list contains details about each state of the resource\n\t\t\tduring the specified time interval. If you specified a retention\n\t\t\tperiod to retain your ConfigurationItems
between a\n\t\t\tminimum of 30 days and a maximum of 7 years (2557 days), Config\n\t\t\treturns the ConfigurationItems
for the specified\n\t\t\tretention period.
\n The response is paginated. By default, Config returns a\n\t\t\tlimit of 10 configuration items per page. You can customize this\n\t\t\tnumber with the limit
parameter. The response includes\n\t\t\ta nextToken
string. To get the next page of results,\n\t\t\trun the request again and specify the string for the\n\t\t\t\tnextToken
parameter.
\n \n Each call to the API is limited to span a duration of seven\n\t\t\t\tdays. It is likely that the number of records returned is\n\t\t\t\tsmaller than the specified limit
. In such cases,\n\t\t\t\tyou can make another call, using the\n\t\t\t\tnextToken
.
\n ",
"smithy.api#paginated": {
"inputToken": "nextToken",
"outputToken": "nextToken",
@@ -6931,13 +6931,13 @@
"laterTime": {
"target": "com.amazonaws.configservice#LaterTime",
"traits": {
- "smithy.api#documentation": "The time stamp that indicates a later time. If not specified,\n\t\t\tcurrent time is taken.
"
+ "smithy.api#documentation": "The chronologically latest time in the time range for which the history requested. If not specified,\n\t\t\tcurrent time is taken.
"
}
},
"earlierTime": {
"target": "com.amazonaws.configservice#EarlierTime",
"traits": {
- "smithy.api#documentation": "The time stamp that indicates an earlier time. If not\n\t\t\tspecified, the action returns paginated results that contain\n\t\t\tconfiguration items that start when the first configuration item was\n\t\t\trecorded.
"
+ "smithy.api#documentation": "The chronologically earliest time in the time range for which the history requested. If not\n\t\t\tspecified, the action returns paginated results that contain\n\t\t\tconfiguration items that start when the first configuration item was\n\t\t\trecorded.
"
}
},
"chronologicalOrder": {
@@ -9153,7 +9153,7 @@
}
},
"traits": {
- "smithy.api#documentation": " organization custom rule metadata such as resource type, resource ID of Amazon Web Services resource, Lambda function ARN, \n\t\t\tand organization trigger types that trigger Config to evaluate your Amazon Web Services resources against a rule. \n\t\t\tIt also provides the frequency with which you want Config to run evaluations for the rule if the trigger type is periodic.
"
+ "smithy.api#documentation": "An object that specifies organization custom rule metadata such as resource type, resource ID of Amazon Web Services resource, Lambda function ARN, \n\t\t\tand organization trigger types that trigger Config to evaluate your Amazon Web Services resources against a rule. \n\t\t\tIt also provides the frequency with which you want Config to run evaluations for the rule if the trigger type is periodic.
"
}
},
"com.amazonaws.configservice#OrganizationManagedRuleMetadata": {
@@ -9210,7 +9210,7 @@
}
},
"traits": {
- "smithy.api#documentation": " organization managed rule metadata such as resource type and ID of Amazon Web Services resource along with the rule identifier. \n\t\t\tIt also provides the frequency with which you want Config to run evaluations for the rule if the trigger type is periodic.
"
+ "smithy.api#documentation": "An object that specifies organization managed rule metadata such as resource type and ID of Amazon Web Services resource along with the rule identifier. \n\t\t\tIt also provides the frequency with which you want Config to run evaluations for the rule if the trigger type is periodic.
"
}
},
"com.amazonaws.configservice#OrganizationResourceDetailedStatus": {
@@ -9802,7 +9802,7 @@
"TemplateS3Uri": {
"target": "com.amazonaws.configservice#TemplateS3Uri",
"traits": {
- "smithy.api#documentation": "The location of the file containing the template body (s3://bucketname/prefix
). The uri must point to a conformance pack template (max size: 300 KB) that is located in an Amazon S3 bucket in the same Region as the conformance pack.
\n \n You must have access to read Amazon S3 bucket.
\n "
+ "smithy.api#documentation": "The location of the file containing the template body (s3://bucketname/prefix
). The uri must point to a conformance pack template (max size: 300 KB) that is located in an Amazon S3 bucket in the same Region as the conformance pack.
\n \n You must have access to read Amazon S3 bucket.\n\t\t\tIn addition, in order to ensure a successful deployment, the template object must not be in an archived storage class if this parameter is passed.
\n "
}
},
"TemplateBody": {
@@ -9889,7 +9889,7 @@
}
],
"traits": {
- "smithy.api#documentation": "Creates a delivery channel object to deliver configuration\n\t\t\tinformation to an Amazon S3 bucket and Amazon SNS topic.
\n Before you can create a delivery channel, you must create a\n\t\t\tconfiguration recorder.
\n You can use this action to change the Amazon S3 bucket or an\n\t\t\tAmazon SNS topic of the existing delivery channel. To change the\n\t\t\tAmazon S3 bucket or an Amazon SNS topic, call this action and\n\t\t\tspecify the changed values for the S3 bucket and the SNS topic. If\n\t\t\tyou specify a different value for either the S3 bucket or the SNS\n\t\t\ttopic, this action will keep the existing value for the parameter\n\t\t\tthat is not changed.
\n \n You can have only one delivery channel per region in your\n\t\t\t\taccount.
\n "
+ "smithy.api#documentation": "Creates a delivery channel object to deliver configuration\n\t\t\tinformation and other compliance information to an Amazon S3 bucket and Amazon SNS topic.\n\t\t\tFor more information,\n\t\t\tsee Notifications that Config Sends to an Amazon SNS topic .
\n Before you can create a delivery channel, you must create a\n\t\t\tconfiguration recorder.
\n You can use this action to change the Amazon S3 bucket or an\n\t\t\tAmazon SNS topic of the existing delivery channel. To change the\n\t\t\tAmazon S3 bucket or an Amazon SNS topic, call this action and\n\t\t\tspecify the changed values for the S3 bucket and the SNS topic. If\n\t\t\tyou specify a different value for either the S3 bucket or the SNS\n\t\t\ttopic, this action will keep the existing value for the parameter\n\t\t\tthat is not changed.
\n \n You can have only one delivery channel per region in your\n\t\t\t\taccount.
\n "
}
},
"com.amazonaws.configservice#PutDeliveryChannelRequest": {
@@ -10166,7 +10166,7 @@
"TemplateS3Uri": {
"target": "com.amazonaws.configservice#TemplateS3Uri",
"traits": {
- "smithy.api#documentation": "Location of file containing the template body. The uri must point to the conformance pack template\n\t\t\t(max size: 300 KB).
\n \n You must have access to read Amazon S3 bucket.
\n "
+ "smithy.api#documentation": "Location of file containing the template body. The uri must point to the conformance pack template\n\t\t\t(max size: 300 KB).
\n \n You must have access to read Amazon S3 bucket.\n\t\t\tIn addition, in order to ensure a successful deployment, the template object must not be in an archived storage class if this parameter is passed.
\n "
}
},
"TemplateBody": {
@@ -10620,14 +10620,14 @@
"target": "com.amazonaws.configservice#AllSupported",
"traits": {
"smithy.api#default": false,
- "smithy.api#documentation": "Specifies whether Config records configuration changes for all supported regional resource types.
\n If you set this field to true
, when Config\n\t\t\tadds support for a new type of regional resource, Config starts recording resources of that type automatically.
\n If you set this field to true
,\n\t\t\tyou cannot enumerate specific resource types to record in the resourceTypes
field of RecordingGroup , or to exclude in the resourceTypes
field of ExclusionByResourceTypes .
"
+ "smithy.api#documentation": "Specifies whether Config records configuration changes for all supported regionally recorded resource types.
\n If you set this field to true
, when Config\n\t\t\tadds support for a new regionally recorded resource type, Config starts recording resources of that type automatically.
\n If you set this field to true
,\n\t\t\tyou cannot enumerate specific resource types to record in the resourceTypes
field of RecordingGroup , or to exclude in the resourceTypes
field of ExclusionByResourceTypes .
\n \n \n Region Availability \n
\n Check Resource Coverage by Region Availability \n\t\t\t\tto see if a resource type is supported in the Amazon Web Services Region where you set up Config.
\n "
}
},
"includeGlobalResourceTypes": {
"target": "com.amazonaws.configservice#IncludeGlobalResourceTypes",
"traits": {
"smithy.api#default": false,
- "smithy.api#documentation": "Specifies whether Config records configuration changes for all supported global resources.
\n Before you set this field to true
,\n\t\t\tset the allSupported
field of RecordingGroup to\n\t\t\ttrue
. Optionally, you can set the useOnly
field of RecordingStrategy to ALL_SUPPORTED_RESOURCE_TYPES
.
\n If you set this field to true
, when Config\n\t\t\tadds support for a new type of global resource in the Region where you set up the configuration recorder, Config starts recording\n\t\t\tresources of that type automatically.
\n \n If you set this field to false
but list global resource types in the resourceTypes
field of RecordingGroup ,\n\t\t\tConfig will still record configuration changes for those specified resource types regardless of if you set the includeGlobalResourceTypes
field to false.
\n If you do not want to record configuration changes to global resource types, make sure to not list them in the resourceTypes
field\n\t\t\tin addition to setting the includeGlobalResourceTypes
field to false.
\n "
+ "smithy.api#documentation": "A legacy field which only applies to the globally recorded IAM resource types : IAM users, groups, roles, and customer managed policies.\n\t\t\tIf you select this option, these resource types will be recorded in all enabled Config regions where Config was available before February 2022.\n\t\t\tThis list does not include the following Regions:
\n \n \n Asia Pacific (Hyderabad)
\n \n \n Asia Pacific (Melbourne)
\n \n \n Europe (Spain)
\n \n \n Europe (Zurich)
\n \n \n Israel (Tel Aviv)
\n \n \n Middle East (UAE)
\n \n \n \n \n Aurora global clusters are automatically globally recorded \n
\n The AWS::RDS::GlobalCluster
resource type will be recorded in all supported Config Regions where the configuration recorder is enabled, even if includeGlobalResourceTypes
is not set to true
.\n\t\t\t\tincludeGlobalResourceTypes
is a legacy field which only applies to IAM users, groups, roles, and customer managed policies.\n\t\t\t
\n If you do not want to record AWS::RDS::GlobalCluster
in all enabled Regions, use one of the following recording strategies:
\n \n \n \n Record all current and future resource types with exclusions (EXCLUSION_BY_RESOURCE_TYPES
), or
\n \n \n \n Record specific resource types (INCLUSION_BY_RESOURCE_TYPES
).
\n \n \n For more information, see Selecting Which Resources are Recorded in the Config developer guide .
\n \n \n \n Required and optional fields \n
\n Before you set this field to true
,\n\t\t\tset the allSupported
field of RecordingGroup to\n\t\t\ttrue
. Optionally, you can set the useOnly
field of RecordingStrategy to ALL_SUPPORTED_RESOURCE_TYPES
.
\n \n \n \n Overriding fields \n
\n If you set this field to false
but list globally recorded IAM resource types in the resourceTypes
field of RecordingGroup ,\n\t\t\tConfig will still record configuration changes for those specified resource types regardless of if you set the includeGlobalResourceTypes
field to false.
\n If you do not want to record configuration changes to the globally recorded IAM resource types (IAM users, groups, roles, and customer managed policies), make sure to not list them in the resourceTypes
field\n\t\t\tin addition to setting the includeGlobalResourceTypes
field to false.
\n "
}
},
"resourceTypes": {
@@ -10645,12 +10645,12 @@
"recordingStrategy": {
"target": "com.amazonaws.configservice#RecordingStrategy",
"traits": {
- "smithy.api#documentation": "An object that specifies the recording strategy for the configuration recorder.
\n \n \n If you set the useOnly
field of RecordingStrategy to ALL_SUPPORTED_RESOURCE_TYPES
, Config records configuration changes for all supported regional resource types. You also must set the allSupported
field of RecordingGroup to true
. When Config adds support for a new type of regional resource, Config automatically starts recording resources of that type.
\n \n \n If you set the useOnly
field of RecordingStrategy to INCLUSION_BY_RESOURCE_TYPES
, Config records configuration changes for only the resource types you specify in the resourceTypes
field of RecordingGroup .
\n \n \n If you set the useOnly
field of RecordingStrategy to EXCLUSION_BY_RESOURCE_TYPES
, Config records configuration changes for all supported resource types\n\t\t\t\texcept the resource types that you specify as exemptions to exclude from being recorded in the resourceTypes
field of ExclusionByResourceTypes .
\n \n \n \n The recordingStrategy
field is optional when you set the\n\t\t\tallSupported
field of RecordingGroup to true
.
\n The recordingStrategy
field is optional when you list resource types in the\n\t\t\t\tresourceTypes
field of RecordingGroup .
\n The recordingStrategy
field is required if you list resource types to exclude from recording in the resourceTypes
field of ExclusionByResourceTypes .
\n \n \n If you choose EXCLUSION_BY_RESOURCE_TYPES
for the recording strategy, the exclusionByResourceTypes
field will override other properties in the request.
\n For example, even if you set includeGlobalResourceTypes
to false, global resource types will still be automatically\n\t\t\trecorded in this option unless those resource types are specifically listed as exemptions in the resourceTypes
field of exclusionByResourceTypes
.
\n By default, if you choose the EXCLUSION_BY_RESOURCE_TYPES
recording strategy,\n\t\t\t\twhen Config adds support for a new resource type in the Region where you set up the configuration recorder, including global resource types,\n\t\t\t\tConfig starts recording resources of that type automatically.
\n "
+ "smithy.api#documentation": "An object that specifies the recording strategy for the configuration recorder.
\n \n \n If you set the useOnly
field of RecordingStrategy to ALL_SUPPORTED_RESOURCE_TYPES
, Config records configuration changes for all supported regionally recorded resource types. You also must set the allSupported
field of RecordingGroup to true
. When Config adds support for a new regionally recorded resource type, Config automatically starts recording resources of that type.
\n \n \n If you set the useOnly
field of RecordingStrategy to INCLUSION_BY_RESOURCE_TYPES
, Config records configuration changes for only the resource types you specify in the resourceTypes
field of RecordingGroup .
\n \n \n If you set the useOnly
field of RecordingStrategy to EXCLUSION_BY_RESOURCE_TYPES
, Config records configuration changes for all supported resource types\n\t\t\t\texcept the resource types that you specify to exclude from being recorded in the resourceTypes
field of ExclusionByResourceTypes .
\n \n \n \n \n Required and optional fields \n
\n The recordingStrategy
field is optional when you set the\n\t\t\tallSupported
field of RecordingGroup to true
.
\n The recordingStrategy
field is optional when you list resource types in the\n\t\t\t\tresourceTypes
field of RecordingGroup .
\n The recordingStrategy
field is required if you list resource types to exclude from recording in the resourceTypes
field of ExclusionByResourceTypes .
\n \n \n \n Overriding fields \n
\n If you choose EXCLUSION_BY_RESOURCE_TYPES
for the recording strategy, the exclusionByResourceTypes
field will override other properties in the request.
\n For example, even if you set includeGlobalResourceTypes
to false, globally recorded IAM resource types will still be automatically\n\t\t\trecorded in this option unless those resource types are specifically listed as exclusions in the resourceTypes
field of exclusionByResourceTypes
.
\n \n \n \n Global resources types and the resource exclusion recording strategy \n
\n By default, if you choose the EXCLUSION_BY_RESOURCE_TYPES
recording strategy,\n\t\t\twhen Config adds support for a new resource type in the Region where you set up the configuration recorder, including global resource types,\n\t\t\tConfig starts recording resources of that type automatically.
\n In addition, unless specifically listed as exclusions,\n\t\t\t\tAWS::RDS::GlobalCluster
will be recorded automatically in all supported Config Regions were the configuration recorder is enabled.\n\t\t\t\tIAM users, groups, roles, and customer managed policies will be recorded automatically in all enabled Config Regions where Config was available before February 2022.\n\t\t\t\tThis list does not include the following Regions:
\n \n \n Asia Pacific (Hyderabad)
\n \n \n Asia Pacific (Melbourne)
\n \n \n Europe (Spain)
\n \n \n Europe (Zurich)
\n \n \n Israel (Tel Aviv)
\n \n \n Middle East (UAE)
\n \n \n "
}
}
},
"traits": {
- "smithy.api#documentation": "Specifies which resource types Config\n\t\t\trecords for configuration changes.\n\t\t\tIn the recording group, you specify whether you want to record all supported resource types or to include or exclude specific types of resources.
\n By default, Config records configuration changes for all supported types of\n\t\t\t\tRegional resources that Config discovers in the\n\t\t\t\tAmazon Web Services Region in which it is running. Regional resources are tied to a\n\t\t\tRegion and can be used only in that Region. Examples of Regional resources are Amazon EC2 instances and Amazon EBS volumes.
\n You can also have Config record supported types of global resources .\n\t\t\t\tGlobal resources are not tied to a specific Region and can be used in all Regions. The global\n\t\t\t\tresource types that Config supports include IAM users, groups, roles, and customer managed\n\t\t\t\tpolicies.
\n \n Global resource types onboarded to Config recording after February 2022 will\n\t\t\t\tbe recorded only in the service's home Region for the commercial partition and\n\t\t\t\tAmazon Web Services GovCloud (US-West) for the Amazon Web Services GovCloud (US) partition. You can view the\n\t\t\t\tConfiguration Items for these new global resource types only in their home Region\n\t\t\t\tand Amazon Web Services GovCloud (US-West).
\n \n If you don't want Config to record all resources, you can specify which types of resources Config records with the resourceTypes
parameter.
\n For a list of supported resource types, see Supported Resource Types in the Config developer guide .
\n For more information and a table of the Home Regions for Global Resource Types Onboarded after February 2022, see Selecting Which Resources Config Records in the Config developer guide .
"
+ "smithy.api#documentation": "Specifies which resource types Config\n\t\t\trecords for configuration changes. By default, Config records configuration changes for all current and future supported resource types in the Amazon Web Services Region where you have enabled Config\n\t\t\t(excluding the globally recorded IAM resource types: IAM users, groups, roles, and customer managed policies).
\n In the recording group, you specify whether you want to record all supported current and future supported resource types or to include or exclude specific resources types.\n\t\t\tFor a list of supported resource types, see Supported Resource Types in the Config developer guide .
\n If you don't want Config to record all current and future supported resource types, use one of the following recording strategies:
\n \n \n \n Record all current and future resource types with exclusions (EXCLUSION_BY_RESOURCE_TYPES
), or
\n \n \n \n Record specific resource types (INCLUSION_BY_RESOURCE_TYPES
).
\n \n \n \n \n Aurora global clusters are automatically globally recorded \n
\n The AWS::RDS::GlobalCluster
resource type\n\t\t\t\twill be recorded in all supported Config Regions where the configuration recorder is enabled.
\n If you do not want to record AWS::RDS::GlobalCluster
in all enabled Regions, use the EXCLUSION_BY_RESOURCE_TYPES
or INCLUSION_BY_RESOURCE_TYPES
recording strategy.
\n "
}
},
"com.amazonaws.configservice#RecordingStrategy": {
@@ -10659,7 +10659,7 @@
"useOnly": {
"target": "com.amazonaws.configservice#RecordingStrategyType",
"traits": {
- "smithy.api#documentation": "The recording strategy for the configuration recorder.
\n \n \n If you set this option to ALL_SUPPORTED_RESOURCE_TYPES
, Config records configuration changes for all supported regional resource types. You also must set the allSupported
field of RecordingGroup to true
.
\n When Config adds support for a new type of regional resource, Config automatically starts recording resources of that type. For a list of supported resource types,\n\t\t\t\tsee Supported Resource Types in the Config developer guide .
\n \n \n If you set this option to INCLUSION_BY_RESOURCE_TYPES
, Config records\n\t\t\t\t\tconfiguration changes for only the resource types that you specify in the\n\t\t\t\t\t\tresourceTypes
field of RecordingGroup .
\n \n \n If you set this option to EXCLUSION_BY_RESOURCE_TYPES
, Config records\n\t\t\t\t\tconfiguration changes for all supported resource types, except the resource\n\t\t\t\t\ttypes that you specify as exemptions to exclude from being recorded in the\n\t\t\t\t\t\tresourceTypes
field of ExclusionByResourceTypes .
\n \n \n \n The recordingStrategy
field is optional when you set the\n\t\t\tallSupported
field of RecordingGroup to true
.
\n The recordingStrategy
field is optional when you list resource types in the\n\t\t\t\tresourceTypes
field of RecordingGroup .
\n The recordingStrategy
field is required if you list resource types to exclude from recording in the resourceTypes
field of ExclusionByResourceTypes .
\n \n \n If you choose EXCLUSION_BY_RESOURCE_TYPES
for the recording strategy, the exclusionByResourceTypes
field will override other properties in the request.
\n For example, even if you set includeGlobalResourceTypes
to false, global resource types will still be automatically\n\t\t\trecorded in this option unless those resource types are specifically listed as exemptions in the resourceTypes
field of exclusionByResourceTypes
.
\n By default, if you choose the EXCLUSION_BY_RESOURCE_TYPES
recording strategy,\n\t\t\t\twhen Config adds support for a new resource type in the Region where you set up the configuration recorder, including global resource types,\n\t\t\t\tConfig starts recording resources of that type automatically.
\n "
+ "smithy.api#documentation": "The recording strategy for the configuration recorder.
\n \n \n If you set this option to ALL_SUPPORTED_RESOURCE_TYPES
, Config records configuration changes for all supported regionally recorded resource types.\n\t\t\t\tYou also must set the allSupported
field of RecordingGroup to true
.\n\t\t\t\tWhen Config adds support for a new regionally recorded resource type, Config automatically starts recording resources of that type. For a list of supported resource types,\n\t\t\t\tsee Supported Resource Types in the Config developer guide .
\n \n \n If you set this option to INCLUSION_BY_RESOURCE_TYPES
, Config records\n\t\t\t\t\tconfiguration changes for only the resource types that you specify in the\n\t\t\t\t\t\tresourceTypes
field of RecordingGroup .
\n \n \n If you set this option to EXCLUSION_BY_RESOURCE_TYPES
, Config records\n\t\t\t\t\tconfiguration changes for all supported resource types, except the resource\n\t\t\t\t\ttypes that you specify to exclude from being recorded in the\n\t\t\t\t\t\tresourceTypes
field of ExclusionByResourceTypes .
\n \n \n \n \n Required and optional fields \n
\n The recordingStrategy
field is optional when you set the\n\t\t\tallSupported
field of RecordingGroup to true
.
\n The recordingStrategy
field is optional when you list resource types in the\n\t\t\t\tresourceTypes
field of RecordingGroup .
\n The recordingStrategy
field is required if you list resource types to exclude from recording in the resourceTypes
field of ExclusionByResourceTypes .
\n \n \n \n Overriding fields \n
\n If you choose EXCLUSION_BY_RESOURCE_TYPES
for the recording strategy, the exclusionByResourceTypes
field will override other properties in the request.
\n For example, even if you set includeGlobalResourceTypes
to false, globally recorded IAM resource types will still be automatically\n\t\t\trecorded in this option unless those resource types are specifically listed as exclusions in the resourceTypes
field of exclusionByResourceTypes
.
\n \n \n \n Global resource types and the exclusion recording strategy \n
\n By default, if you choose the EXCLUSION_BY_RESOURCE_TYPES
recording strategy,\n\t\t\t\twhen Config adds support for a new resource type in the Region where you set up the configuration recorder, including global resource types,\n\t\t\t\tConfig starts recording resources of that type automatically.
\n In addition, unless specifically listed as exclusions,\n\t\t\t\tAWS::RDS::GlobalCluster
will be recorded automatically in all supported Config Regions were the configuration recorder is enabled.\n\t\t\t\tIAM users, groups, roles, and customer managed policies will be recorded automatically in all enabled Config Regions where Config was available before February 2022.\n\t\t\t\tThis list does not include the following Regions:
\n \n \n Asia Pacific (Hyderabad)
\n \n \n Asia Pacific (Melbourne)
\n \n \n Europe (Spain)
\n \n \n Europe (Zurich)
\n \n \n Israel (Tel Aviv)
\n \n \n Middle East (UAE)
\n \n \n "
}
}
},
@@ -13669,6 +13669,120 @@
"traits": {
"smithy.api#enumValue": "AWS::NetworkManager::LinkAssociation"
}
+ },
+ "IoTWirelessMulticastGroup": {
+ "target": "smithy.api#Unit",
+ "traits": {
+ "smithy.api#enumValue": "AWS::IoTWireless::MulticastGroup"
+ }
+ },
+ "PersonalizeDatasetGroup": {
+ "target": "smithy.api#Unit",
+ "traits": {
+ "smithy.api#enumValue": "AWS::Personalize::DatasetGroup"
+ }
+ },
+ "IoTTwinMakerComponentType": {
+ "target": "smithy.api#Unit",
+ "traits": {
+ "smithy.api#enumValue": "AWS::IoTTwinMaker::ComponentType"
+ }
+ },
+ "CodeBuildReportGroup": {
+ "target": "smithy.api#Unit",
+ "traits": {
+ "smithy.api#enumValue": "AWS::CodeBuild::ReportGroup"
+ }
+ },
+ "SageMakerFeatureGroup": {
+ "target": "smithy.api#Unit",
+ "traits": {
+ "smithy.api#enumValue": "AWS::SageMaker::FeatureGroup"
+ }
+ },
+ "MSKBatchScramSecret": {
+ "target": "smithy.api#Unit",
+ "traits": {
+ "smithy.api#enumValue": "AWS::MSK::BatchScramSecret"
+ }
+ },
+ "AppStreamStack": {
+ "target": "smithy.api#Unit",
+ "traits": {
+ "smithy.api#enumValue": "AWS::AppStream::Stack"
+ }
+ },
+ "IoTJobTemplate": {
+ "target": "smithy.api#Unit",
+ "traits": {
+ "smithy.api#enumValue": "AWS::IoT::JobTemplate"
+ }
+ },
+ "IoTWirelessFuotaTask": {
+ "target": "smithy.api#Unit",
+ "traits": {
+ "smithy.api#enumValue": "AWS::IoTWireless::FuotaTask"
+ }
+ },
+ "IoTProvisioningTemplate": {
+ "target": "smithy.api#Unit",
+ "traits": {
+ "smithy.api#enumValue": "AWS::IoT::ProvisioningTemplate"
+ }
+ },
+ "InspectorV2Filter": {
+ "target": "smithy.api#Unit",
+ "traits": {
+ "smithy.api#enumValue": "AWS::InspectorV2::Filter"
+ }
+ },
+ "Route53ResolverResolverQueryLoggingConfigAssociation": {
+ "target": "smithy.api#Unit",
+ "traits": {
+ "smithy.api#enumValue": "AWS::Route53Resolver::ResolverQueryLoggingConfigAssociation"
+ }
+ },
+ "ServiceDiscoveryInstance": {
+ "target": "smithy.api#Unit",
+ "traits": {
+ "smithy.api#enumValue": "AWS::ServiceDiscovery::Instance"
+ }
+ },
+ "TransferCertificate": {
+ "target": "smithy.api#Unit",
+ "traits": {
+ "smithy.api#enumValue": "AWS::Transfer::Certificate"
+ }
+ },
+ "MediaConnectFlowSource": {
+ "target": "smithy.api#Unit",
+ "traits": {
+ "smithy.api#enumValue": "AWS::MediaConnect::FlowSource"
+ }
+ },
+ "APSRuleGroupsNamespace": {
+ "target": "smithy.api#Unit",
+ "traits": {
+ "smithy.api#enumValue": "AWS::APS::RuleGroupsNamespace"
+ }
+ },
+ "CodeGuruProfilerProfilingGroup": {
+ "target": "smithy.api#Unit",
+ "traits": {
+ "smithy.api#enumValue": "AWS::CodeGuruProfiler::ProfilingGroup"
+ }
+ },
+ "Route53ResolverResolverQueryLoggingConfig": {
+ "target": "smithy.api#Unit",
+ "traits": {
+ "smithy.api#enumValue": "AWS::Route53Resolver::ResolverQueryLoggingConfig"
+ }
+ },
+ "BatchSchedulingPolicy": {
+ "target": "smithy.api#Unit",
+ "traits": {
+ "smithy.api#enumValue": "AWS::Batch::SchedulingPolicy"
+ }
}
}
},
@@ -16233,4 +16347,4 @@
"type": "string"
}
}
-}
\ No newline at end of file
+}
From b683df3c866f42d759c18b10be7007bf8e24f608 Mon Sep 17 00:00:00 2001
From: awstools
Date: Thu, 12 Oct 2023 18:24:07 +0000
Subject: [PATCH 17/35] feat(client-glue): Extending version control support to
GitLab and Bitbucket from AWSGlue
---
.../src/commands/BatchGetJobsCommand.ts | 2 +-
.../src/commands/CreateJobCommand.ts | 2 +-
.../client-glue/src/commands/GetJobCommand.ts | 2 +-
.../src/commands/GetJobsCommand.ts | 2 +-
.../src/commands/UpdateJobCommand.ts | 2 +-
.../UpdateJobFromSourceControlCommand.ts | 2 +-
.../UpdateSourceControlFromJobCommand.ts | 2 +-
clients/client-glue/src/models/models_0.ts | 2 ++
clients/client-glue/src/models/models_2.ts | 18 +++++++++---
codegen/sdk-codegen/aws-models/glue.json | 28 +++++++++++++------
10 files changed, 43 insertions(+), 19 deletions(-)
diff --git a/clients/client-glue/src/commands/BatchGetJobsCommand.ts b/clients/client-glue/src/commands/BatchGetJobsCommand.ts
index d0a354fedd5d4..3317393d451bc 100644
--- a/clients/client-glue/src/commands/BatchGetJobsCommand.ts
+++ b/clients/client-glue/src/commands/BatchGetJobsCommand.ts
@@ -1103,7 +1103,7 @@ export interface BatchGetJobsCommandOutput extends BatchGetJobsResponse, __Metad
* // },
* // ExecutionClass: "FLEX" || "STANDARD",
* // SourceControlDetails: { // SourceControlDetails
- * // Provider: "GITHUB" || "AWS_CODE_COMMIT",
+ * // Provider: "GITHUB" || "GITLAB" || "BITBUCKET" || "AWS_CODE_COMMIT",
* // Repository: "STRING_VALUE",
* // Owner: "STRING_VALUE",
* // Branch: "STRING_VALUE",
diff --git a/clients/client-glue/src/commands/CreateJobCommand.ts b/clients/client-glue/src/commands/CreateJobCommand.ts
index b2cf220cfa053..19bc398d6d9ac 100644
--- a/clients/client-glue/src/commands/CreateJobCommand.ts
+++ b/clients/client-glue/src/commands/CreateJobCommand.ts
@@ -1094,7 +1094,7 @@ export interface CreateJobCommandOutput extends CreateJobResponse, __MetadataBea
* },
* ExecutionClass: "FLEX" || "STANDARD",
* SourceControlDetails: { // SourceControlDetails
- * Provider: "GITHUB" || "AWS_CODE_COMMIT",
+ * Provider: "GITHUB" || "GITLAB" || "BITBUCKET" || "AWS_CODE_COMMIT",
* Repository: "STRING_VALUE",
* Owner: "STRING_VALUE",
* Branch: "STRING_VALUE",
diff --git a/clients/client-glue/src/commands/GetJobCommand.ts b/clients/client-glue/src/commands/GetJobCommand.ts
index 0688d3c840be3..97d3b31452857 100644
--- a/clients/client-glue/src/commands/GetJobCommand.ts
+++ b/clients/client-glue/src/commands/GetJobCommand.ts
@@ -1099,7 +1099,7 @@ export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {}
* // },
* // ExecutionClass: "FLEX" || "STANDARD",
* // SourceControlDetails: { // SourceControlDetails
- * // Provider: "GITHUB" || "AWS_CODE_COMMIT",
+ * // Provider: "GITHUB" || "GITLAB" || "BITBUCKET" || "AWS_CODE_COMMIT",
* // Repository: "STRING_VALUE",
* // Owner: "STRING_VALUE",
* // Branch: "STRING_VALUE",
diff --git a/clients/client-glue/src/commands/GetJobsCommand.ts b/clients/client-glue/src/commands/GetJobsCommand.ts
index c6cac82bafe81..7b84586430193 100644
--- a/clients/client-glue/src/commands/GetJobsCommand.ts
+++ b/clients/client-glue/src/commands/GetJobsCommand.ts
@@ -1101,7 +1101,7 @@ export interface GetJobsCommandOutput extends GetJobsResponse, __MetadataBearer
* // },
* // ExecutionClass: "FLEX" || "STANDARD",
* // SourceControlDetails: { // SourceControlDetails
- * // Provider: "GITHUB" || "AWS_CODE_COMMIT",
+ * // Provider: "GITHUB" || "GITLAB" || "BITBUCKET" || "AWS_CODE_COMMIT",
* // Repository: "STRING_VALUE",
* // Owner: "STRING_VALUE",
* // Branch: "STRING_VALUE",
diff --git a/clients/client-glue/src/commands/UpdateJobCommand.ts b/clients/client-glue/src/commands/UpdateJobCommand.ts
index 86e8d26328385..eddfe39fead6d 100644
--- a/clients/client-glue/src/commands/UpdateJobCommand.ts
+++ b/clients/client-glue/src/commands/UpdateJobCommand.ts
@@ -1091,7 +1091,7 @@ export interface UpdateJobCommandOutput extends UpdateJobResponse, __MetadataBea
* },
* ExecutionClass: "FLEX" || "STANDARD",
* SourceControlDetails: { // SourceControlDetails
- * Provider: "GITHUB" || "AWS_CODE_COMMIT",
+ * Provider: "GITHUB" || "GITLAB" || "BITBUCKET" || "AWS_CODE_COMMIT",
* Repository: "STRING_VALUE",
* Owner: "STRING_VALUE",
* Branch: "STRING_VALUE",
diff --git a/clients/client-glue/src/commands/UpdateJobFromSourceControlCommand.ts b/clients/client-glue/src/commands/UpdateJobFromSourceControlCommand.ts
index a7172c63fc2e0..2f2ab926db4cb 100644
--- a/clients/client-glue/src/commands/UpdateJobFromSourceControlCommand.ts
+++ b/clients/client-glue/src/commands/UpdateJobFromSourceControlCommand.ts
@@ -47,7 +47,7 @@ export interface UpdateJobFromSourceControlCommandOutput extends UpdateJobFromSo
* const client = new GlueClient(config);
* const input = { // UpdateJobFromSourceControlRequest
* JobName: "STRING_VALUE",
- * Provider: "GITHUB" || "AWS_CODE_COMMIT",
+ * Provider: "GITHUB" || "GITLAB" || "BITBUCKET" || "AWS_CODE_COMMIT",
* RepositoryName: "STRING_VALUE",
* RepositoryOwner: "STRING_VALUE",
* BranchName: "STRING_VALUE",
diff --git a/clients/client-glue/src/commands/UpdateSourceControlFromJobCommand.ts b/clients/client-glue/src/commands/UpdateSourceControlFromJobCommand.ts
index b352dc935c96e..2ab9e949f20f0 100644
--- a/clients/client-glue/src/commands/UpdateSourceControlFromJobCommand.ts
+++ b/clients/client-glue/src/commands/UpdateSourceControlFromJobCommand.ts
@@ -47,7 +47,7 @@ export interface UpdateSourceControlFromJobCommandOutput extends UpdateSourceCon
* const client = new GlueClient(config);
* const input = { // UpdateSourceControlFromJobRequest
* JobName: "STRING_VALUE",
- * Provider: "GITHUB" || "AWS_CODE_COMMIT",
+ * Provider: "GITHUB" || "GITLAB" || "BITBUCKET" || "AWS_CODE_COMMIT",
* RepositoryName: "STRING_VALUE",
* RepositoryOwner: "STRING_VALUE",
* BranchName: "STRING_VALUE",
diff --git a/clients/client-glue/src/models/models_0.ts b/clients/client-glue/src/models/models_0.ts
index 63b2a47bc36cb..bec86e9aaad36 100644
--- a/clients/client-glue/src/models/models_0.ts
+++ b/clients/client-glue/src/models/models_0.ts
@@ -6551,7 +6551,9 @@ export type SourceControlAuthStrategy = (typeof SourceControlAuthStrategy)[keyof
*/
export const SourceControlProvider = {
AWS_CODE_COMMIT: "AWS_CODE_COMMIT",
+ BITBUCKET: "BITBUCKET",
GITHUB: "GITHUB",
+ GITLAB: "GITLAB",
} as const;
/**
diff --git a/clients/client-glue/src/models/models_2.ts b/clients/client-glue/src/models/models_2.ts
index d4a7f19635f15..9efbd17f1d2a2 100644
--- a/clients/client-glue/src/models/models_2.ts
+++ b/clients/client-glue/src/models/models_2.ts
@@ -4471,13 +4471,18 @@ export interface UpdateJobFromSourceControlRequest {
/**
* @public
- * The provider for the remote repository.
+ *
+ * The provider for the remote repository. Possible values: GITHUB, AWS_CODE_COMMIT, GITLAB, BITBUCKET.
+ *
*/
Provider?: SourceControlProvider | string;
/**
* @public
- * The name of the remote repository that contains the job artifacts.
+ * The name of the remote repository that contains the job artifacts.
+ * For BitBucket providers, RepositoryName
should include WorkspaceName
.
+ * Use the format /
.
+ *
*/
RepositoryName?: string;
@@ -4777,13 +4782,18 @@ export interface UpdateSourceControlFromJobRequest {
/**
* @public
- * The provider for the remote repository.
+ *
+ * The provider for the remote repository. Possible values: GITHUB, AWS_CODE_COMMIT, GITLAB, BITBUCKET.
+ *
*/
Provider?: SourceControlProvider | string;
/**
* @public
- * The name of the remote repository that contains the job artifacts.
+ * The name of the remote repository that contains the job artifacts.
+ * For BitBucket providers, RepositoryName
should include WorkspaceName
.
+ * Use the format /
.
+ *
*/
RepositoryName?: string;
diff --git a/codegen/sdk-codegen/aws-models/glue.json b/codegen/sdk-codegen/aws-models/glue.json
index c0a0449a42444..380e7c1182e2c 100644
--- a/codegen/sdk-codegen/aws-models/glue.json
+++ b/codegen/sdk-codegen/aws-models/glue.json
@@ -14019,8 +14019,8 @@
"type": "double",
"traits": {
"smithy.api#range": {
- "min": 0,
- "max": 1
+ "min": 0.0,
+ "max": 1.0
}
}
},
@@ -24323,7 +24323,7 @@
"traits": {
"smithy.api#default": 0,
"smithy.api#range": {
- "min": 0
+ "min": 0.0
}
}
},
@@ -29324,6 +29324,18 @@
"smithy.api#enumValue": "GITHUB"
}
},
+ "GITLAB": {
+ "target": "smithy.api#Unit",
+ "traits": {
+ "smithy.api#enumValue": "GITLAB"
+ }
+ },
+ "BITBUCKET": {
+ "target": "smithy.api#Unit",
+ "traits": {
+ "smithy.api#enumValue": "BITBUCKET"
+ }
+ },
"AWS_CODE_COMMIT": {
"target": "smithy.api#Unit",
"traits": {
@@ -33614,13 +33626,13 @@
"Provider": {
"target": "com.amazonaws.glue#SourceControlProvider",
"traits": {
- "smithy.api#documentation": "The provider for the remote repository.
"
+ "smithy.api#documentation": "\n The provider for the remote repository. Possible values: GITHUB, AWS_CODE_COMMIT, GITLAB, BITBUCKET.\n
"
}
},
"RepositoryName": {
"target": "com.amazonaws.glue#NameString",
"traits": {
- "smithy.api#documentation": "The name of the remote repository that contains the job artifacts.
"
+ "smithy.api#documentation": "The name of the remote repository that contains the job artifacts. \n For BitBucket providers, RepositoryName
should include WorkspaceName
.\n Use the format /
. \n
"
}
},
"RepositoryOwner": {
@@ -34137,13 +34149,13 @@
"Provider": {
"target": "com.amazonaws.glue#SourceControlProvider",
"traits": {
- "smithy.api#documentation": "The provider for the remote repository.
"
+ "smithy.api#documentation": "\n The provider for the remote repository. Possible values: GITHUB, AWS_CODE_COMMIT, GITLAB, BITBUCKET.\n
"
}
},
"RepositoryName": {
"target": "com.amazonaws.glue#NameString",
"traits": {
- "smithy.api#documentation": "The name of the remote repository that contains the job artifacts.
"
+ "smithy.api#documentation": "The name of the remote repository that contains the job artifacts. \n For BitBucket providers, RepositoryName
should include WorkspaceName
.\n Use the format /
. \n
"
}
},
"RepositoryOwner": {
@@ -35148,4 +35160,4 @@
}
}
}
-}
\ No newline at end of file
+}
From 73c9229645cd57746c812bc85b4d230bd6f70ffb Mon Sep 17 00:00:00 2001
From: awstools
Date: Thu, 12 Oct 2023 18:24:07 +0000
Subject: [PATCH 18/35] feat(client-customer-profiles): Adds sensitive trait to
various shapes in Customer Profiles Calculated Attribute API model.
---
...stCalculatedAttributeDefinitionsCommand.ts | 3 ++-
.../src/models/models_0.ts | 25 +++++++++++++++++++
.../aws-models/customer-profiles.json | 21 +++++++++-------
3 files changed, 39 insertions(+), 10 deletions(-)
diff --git a/clients/client-customer-profiles/src/commands/ListCalculatedAttributeDefinitionsCommand.ts b/clients/client-customer-profiles/src/commands/ListCalculatedAttributeDefinitionsCommand.ts
index 0612146877c9f..4d40a9dc8166a 100644
--- a/clients/client-customer-profiles/src/commands/ListCalculatedAttributeDefinitionsCommand.ts
+++ b/clients/client-customer-profiles/src/commands/ListCalculatedAttributeDefinitionsCommand.ts
@@ -18,6 +18,7 @@ import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputT
import {
ListCalculatedAttributeDefinitionsRequest,
ListCalculatedAttributeDefinitionsResponse,
+ ListCalculatedAttributeDefinitionsResponseFilterSensitiveLog,
} from "../models/models_0";
import {
de_ListCalculatedAttributeDefinitionsCommand,
@@ -151,7 +152,7 @@ export class ListCalculatedAttributeDefinitionsCommand extends $Command<
clientName,
commandName,
inputFilterSensitiveLog: (_: any) => _,
- outputFilterSensitiveLog: (_: any) => _,
+ outputFilterSensitiveLog: ListCalculatedAttributeDefinitionsResponseFilterSensitiveLog,
[SMITHY_CONTEXT_KEY]: {
service: "CustomerProfiles_20200815",
operation: "ListCalculatedAttributeDefinitions",
diff --git a/clients/client-customer-profiles/src/models/models_0.ts b/clients/client-customer-profiles/src/models/models_0.ts
index 7b543173909c9..aff9c5c573542 100644
--- a/clients/client-customer-profiles/src/models/models_0.ts
+++ b/clients/client-customer-profiles/src/models/models_0.ts
@@ -6233,6 +6233,16 @@ export const AttributeDetailsFilterSensitiveLog = (obj: AttributeDetails): any =
...obj,
});
+/**
+ * @internal
+ */
+export const ListCalculatedAttributeDefinitionItemFilterSensitiveLog = (
+ obj: ListCalculatedAttributeDefinitionItem
+): any => ({
+ ...obj,
+ ...(obj.Description && { Description: SENSITIVE_STRING }),
+});
+
/**
* @internal
*/
@@ -6247,6 +6257,7 @@ export const CreateCalculatedAttributeDefinitionRequestFilterSensitiveLog = (
obj: CreateCalculatedAttributeDefinitionRequest
): any => ({
...obj,
+ ...(obj.Description && { Description: SENSITIVE_STRING }),
...(obj.AttributeDetails && { AttributeDetails: SENSITIVE_STRING }),
...(obj.Conditions && { Conditions: SENSITIVE_STRING }),
...(obj.Statistic && { Statistic: SENSITIVE_STRING }),
@@ -6259,6 +6270,7 @@ export const CreateCalculatedAttributeDefinitionResponseFilterSensitiveLog = (
obj: CreateCalculatedAttributeDefinitionResponse
): any => ({
...obj,
+ ...(obj.Description && { Description: SENSITIVE_STRING }),
...(obj.AttributeDetails && { AttributeDetails: SENSITIVE_STRING }),
...(obj.Conditions && { Conditions: SENSITIVE_STRING }),
...(obj.Statistic && { Statistic: SENSITIVE_STRING }),
@@ -6317,6 +6329,7 @@ export const GetCalculatedAttributeDefinitionResponseFilterSensitiveLog = (
obj: GetCalculatedAttributeDefinitionResponse
): any => ({
...obj,
+ ...(obj.Description && { Description: SENSITIVE_STRING }),
...(obj.Statistic && { Statistic: SENSITIVE_STRING }),
...(obj.Conditions && { Conditions: SENSITIVE_STRING }),
...(obj.AttributeDetails && { AttributeDetails: SENSITIVE_STRING }),
@@ -6343,6 +6356,16 @@ export const GetProfileObjectTypeTemplateResponseFilterSensitiveLog = (
...(obj.Keys && { Keys: SENSITIVE_STRING }),
});
+/**
+ * @internal
+ */
+export const ListCalculatedAttributeDefinitionsResponseFilterSensitiveLog = (
+ obj: ListCalculatedAttributeDefinitionsResponse
+): any => ({
+ ...obj,
+ ...(obj.Items && { Items: SENSITIVE_STRING }),
+});
+
/**
* @internal
*/
@@ -6448,6 +6471,7 @@ export const UpdateCalculatedAttributeDefinitionRequestFilterSensitiveLog = (
obj: UpdateCalculatedAttributeDefinitionRequest
): any => ({
...obj,
+ ...(obj.Description && { Description: SENSITIVE_STRING }),
...(obj.Conditions && { Conditions: SENSITIVE_STRING }),
});
@@ -6458,6 +6482,7 @@ export const UpdateCalculatedAttributeDefinitionResponseFilterSensitiveLog = (
obj: UpdateCalculatedAttributeDefinitionResponse
): any => ({
...obj,
+ ...(obj.Description && { Description: SENSITIVE_STRING }),
...(obj.Statistic && { Statistic: SENSITIVE_STRING }),
...(obj.Conditions && { Conditions: SENSITIVE_STRING }),
...(obj.AttributeDetails && { AttributeDetails: SENSITIVE_STRING }),
diff --git a/codegen/sdk-codegen/aws-models/customer-profiles.json b/codegen/sdk-codegen/aws-models/customer-profiles.json
index e5bff922a16b7..05efa922e9acf 100644
--- a/codegen/sdk-codegen/aws-models/customer-profiles.json
+++ b/codegen/sdk-codegen/aws-models/customer-profiles.json
@@ -600,6 +600,9 @@
"type": "list",
"member": {
"target": "com.amazonaws.customerprofiles#ListCalculatedAttributeDefinitionItem"
+ },
+ "traits": {
+ "smithy.api#sensitive": {}
}
},
"com.amazonaws.customerprofiles#CalculatedAttributesForProfileList": {
@@ -796,7 +799,7 @@
}
},
"Description": {
- "target": "com.amazonaws.customerprofiles#text",
+ "target": "com.amazonaws.customerprofiles#sensitiveText",
"traits": {
"smithy.api#documentation": "The description of the calculated attribute.
"
}
@@ -848,7 +851,7 @@
}
},
"Description": {
- "target": "com.amazonaws.customerprofiles#text",
+ "target": "com.amazonaws.customerprofiles#sensitiveText",
"traits": {
"smithy.api#documentation": "The description of the calculated attribute.
"
}
@@ -3131,8 +3134,8 @@
"type": "double",
"traits": {
"smithy.api#range": {
- "min": 0,
- "max": 1
+ "min": 0.0,
+ "max": 1.0
}
}
},
@@ -3788,7 +3791,7 @@
}
},
"Description": {
- "target": "com.amazonaws.customerprofiles#text",
+ "target": "com.amazonaws.customerprofiles#sensitiveText",
"traits": {
"smithy.api#documentation": "The description of the calculated attribute.
"
}
@@ -5498,7 +5501,7 @@
}
},
"Description": {
- "target": "com.amazonaws.customerprofiles#text",
+ "target": "com.amazonaws.customerprofiles#sensitiveText",
"traits": {
"smithy.api#documentation": "The threshold for the calculated attribute.
"
}
@@ -9776,7 +9779,7 @@
}
},
"Description": {
- "target": "com.amazonaws.customerprofiles#text",
+ "target": "com.amazonaws.customerprofiles#sensitiveText",
"traits": {
"smithy.api#documentation": "The description of the calculated attribute.
"
}
@@ -9808,7 +9811,7 @@
}
},
"Description": {
- "target": "com.amazonaws.customerprofiles#text",
+ "target": "com.amazonaws.customerprofiles#sensitiveText",
"traits": {
"smithy.api#documentation": "The description of the calculated attribute.
"
}
@@ -10698,4 +10701,4 @@
}
}
}
-}
\ No newline at end of file
+}
From 634a98311610222f33aa38a6912eccda25ff6d5f Mon Sep 17 00:00:00 2001
From: awstools
Date: Thu, 12 Oct 2023 18:24:08 +0000
Subject: [PATCH 19/35] feat(client-rds): This release adds support for adding
a dedicated log volume to open-source RDS instances.
---
.../src/commands/CopyDBSnapshotCommand.ts | 1 +
.../src/commands/CreateDBInstanceCommand.ts | 3 +
.../CreateDBInstanceReadReplicaCommand.ts | 3 +
.../src/commands/CreateDBSnapshotCommand.ts | 1 +
.../DeleteDBInstanceAutomatedBackupCommand.ts | 1 +
.../src/commands/DeleteDBInstanceCommand.ts | 2 +
.../src/commands/DeleteDBSnapshotCommand.ts | 1 +
...scribeDBInstanceAutomatedBackupsCommand.ts | 1 +
.../commands/DescribeDBInstancesCommand.ts | 2 +
.../commands/DescribeDBSnapshotsCommand.ts | 1 +
...scribeOrderableDBInstanceOptionsCommand.ts | 1 +
...ribeValidDBInstanceModificationsCommand.ts | 1 +
.../src/commands/ModifyDBInstanceCommand.ts | 3 +
.../src/commands/ModifyDBSnapshotCommand.ts | 1 +
.../src/commands/PromoteReadReplicaCommand.ts | 2 +
.../src/commands/RebootDBInstanceCommand.ts | 2 +
.../RestoreDBInstanceFromDBSnapshotCommand.ts | 3 +
.../RestoreDBInstanceFromS3Command.ts | 3 +
.../RestoreDBInstanceToPointInTimeCommand.ts | 3 +
...tanceAutomatedBackupsReplicationCommand.ts | 1 +
.../src/commands/StartDBInstanceCommand.ts | 2 +
...tanceAutomatedBackupsReplicationCommand.ts | 1 +
.../src/commands/StopDBInstanceCommand.ts | 2 +
.../commands/SwitchoverReadReplicaCommand.ts | 2 +
clients/client-rds/src/models/models_0.ts | 36 +++++++++
clients/client-rds/src/models/models_1.ts | 36 +++++++++
clients/client-rds/src/protocols/Aws_query.ts | 36 +++++++++
codegen/sdk-codegen/aws-models/rds.json | 76 +++++++++++++++++++
28 files changed, 227 insertions(+)
diff --git a/clients/client-rds/src/commands/CopyDBSnapshotCommand.ts b/clients/client-rds/src/commands/CopyDBSnapshotCommand.ts
index bdf30273cc47d..434002d9ee765 100644
--- a/clients/client-rds/src/commands/CopyDBSnapshotCommand.ts
+++ b/clients/client-rds/src/commands/CopyDBSnapshotCommand.ts
@@ -115,6 +115,7 @@ export interface CopyDBSnapshotCommandOutput extends CopyDBSnapshotResult, __Met
* // SnapshotTarget: "STRING_VALUE",
* // StorageThroughput: Number("int"),
* // DBSystemId: "STRING_VALUE",
+ * // DedicatedLogVolume: true || false,
* // },
* // };
*
diff --git a/clients/client-rds/src/commands/CreateDBInstanceCommand.ts b/clients/client-rds/src/commands/CreateDBInstanceCommand.ts
index e3cd07615d2d9..2d365df267dbe 100644
--- a/clients/client-rds/src/commands/CreateDBInstanceCommand.ts
+++ b/clients/client-rds/src/commands/CreateDBInstanceCommand.ts
@@ -131,6 +131,7 @@ export interface CreateDBInstanceCommandOutput extends CreateDBInstanceResult, _
* MasterUserSecretKmsKeyId: "STRING_VALUE",
* CACertificateIdentifier: "STRING_VALUE",
* DBSystemId: "STRING_VALUE",
+ * DedicatedLogVolume: true || false,
* };
* const command = new CreateDBInstanceCommand(input);
* const response = await client.send(command);
@@ -227,6 +228,7 @@ export interface CreateDBInstanceCommandOutput extends CreateDBInstanceResult, _
* // ResumeFullAutomationModeTime: new Date("TIMESTAMP"),
* // StorageThroughput: Number("int"),
* // Engine: "STRING_VALUE",
+ * // DedicatedLogVolume: true || false,
* // },
* // LatestRestorableTime: new Date("TIMESTAMP"),
* // MultiAZ: true || false,
@@ -352,6 +354,7 @@ export interface CreateDBInstanceCommandOutput extends CreateDBInstanceResult, _
* // },
* // ReadReplicaSourceDBClusterIdentifier: "STRING_VALUE",
* // PercentProgress: "STRING_VALUE",
+ * // DedicatedLogVolume: true || false,
* // },
* // };
*
diff --git a/clients/client-rds/src/commands/CreateDBInstanceReadReplicaCommand.ts b/clients/client-rds/src/commands/CreateDBInstanceReadReplicaCommand.ts
index 724c455faf5e5..d23562a2e7dd8 100644
--- a/clients/client-rds/src/commands/CreateDBInstanceReadReplicaCommand.ts
+++ b/clients/client-rds/src/commands/CreateDBInstanceReadReplicaCommand.ts
@@ -116,6 +116,7 @@ export interface CreateDBInstanceReadReplicaCommandOutput extends CreateDBInstan
* EnableCustomerOwnedIp: true || false,
* AllocatedStorage: Number("int"),
* SourceDBClusterIdentifier: "STRING_VALUE",
+ * DedicatedLogVolume: true || false,
* };
* const command = new CreateDBInstanceReadReplicaCommand(input);
* const response = await client.send(command);
@@ -212,6 +213,7 @@ export interface CreateDBInstanceReadReplicaCommandOutput extends CreateDBInstan
* // ResumeFullAutomationModeTime: new Date("TIMESTAMP"),
* // StorageThroughput: Number("int"),
* // Engine: "STRING_VALUE",
+ * // DedicatedLogVolume: true || false,
* // },
* // LatestRestorableTime: new Date("TIMESTAMP"),
* // MultiAZ: true || false,
@@ -337,6 +339,7 @@ export interface CreateDBInstanceReadReplicaCommandOutput extends CreateDBInstan
* // },
* // ReadReplicaSourceDBClusterIdentifier: "STRING_VALUE",
* // PercentProgress: "STRING_VALUE",
+ * // DedicatedLogVolume: true || false,
* // },
* // };
*
diff --git a/clients/client-rds/src/commands/CreateDBSnapshotCommand.ts b/clients/client-rds/src/commands/CreateDBSnapshotCommand.ts
index b5511c45d5e50..09eea47fe5403 100644
--- a/clients/client-rds/src/commands/CreateDBSnapshotCommand.ts
+++ b/clients/client-rds/src/commands/CreateDBSnapshotCommand.ts
@@ -103,6 +103,7 @@ export interface CreateDBSnapshotCommandOutput extends CreateDBSnapshotResult, _
* // SnapshotTarget: "STRING_VALUE",
* // StorageThroughput: Number("int"),
* // DBSystemId: "STRING_VALUE",
+ * // DedicatedLogVolume: true || false,
* // },
* // };
*
diff --git a/clients/client-rds/src/commands/DeleteDBInstanceAutomatedBackupCommand.ts b/clients/client-rds/src/commands/DeleteDBInstanceAutomatedBackupCommand.ts
index e3a9f1cebac37..16e3360f67c0e 100644
--- a/clients/client-rds/src/commands/DeleteDBInstanceAutomatedBackupCommand.ts
+++ b/clients/client-rds/src/commands/DeleteDBInstanceAutomatedBackupCommand.ts
@@ -93,6 +93,7 @@ export interface DeleteDBInstanceAutomatedBackupCommandOutput
* // BackupTarget: "STRING_VALUE",
* // StorageThroughput: Number("int"),
* // AwsBackupRecoveryPointArn: "STRING_VALUE",
+ * // DedicatedLogVolume: true || false,
* // },
* // };
*
diff --git a/clients/client-rds/src/commands/DeleteDBInstanceCommand.ts b/clients/client-rds/src/commands/DeleteDBInstanceCommand.ts
index d654d2516ba72..2b4fd6ab4f358 100644
--- a/clients/client-rds/src/commands/DeleteDBInstanceCommand.ts
+++ b/clients/client-rds/src/commands/DeleteDBInstanceCommand.ts
@@ -167,6 +167,7 @@ export interface DeleteDBInstanceCommandOutput extends DeleteDBInstanceResult, _
* // ResumeFullAutomationModeTime: new Date("TIMESTAMP"),
* // StorageThroughput: Number("int"),
* // Engine: "STRING_VALUE",
+ * // DedicatedLogVolume: true || false,
* // },
* // LatestRestorableTime: new Date("TIMESTAMP"),
* // MultiAZ: true || false,
@@ -292,6 +293,7 @@ export interface DeleteDBInstanceCommandOutput extends DeleteDBInstanceResult, _
* // },
* // ReadReplicaSourceDBClusterIdentifier: "STRING_VALUE",
* // PercentProgress: "STRING_VALUE",
+ * // DedicatedLogVolume: true || false,
* // },
* // };
*
diff --git a/clients/client-rds/src/commands/DeleteDBSnapshotCommand.ts b/clients/client-rds/src/commands/DeleteDBSnapshotCommand.ts
index 2ff175c576cb6..54c6db9604fd7 100644
--- a/clients/client-rds/src/commands/DeleteDBSnapshotCommand.ts
+++ b/clients/client-rds/src/commands/DeleteDBSnapshotCommand.ts
@@ -99,6 +99,7 @@ export interface DeleteDBSnapshotCommandOutput extends DeleteDBSnapshotResult, _
* // SnapshotTarget: "STRING_VALUE",
* // StorageThroughput: Number("int"),
* // DBSystemId: "STRING_VALUE",
+ * // DedicatedLogVolume: true || false,
* // },
* // };
*
diff --git a/clients/client-rds/src/commands/DescribeDBInstanceAutomatedBackupsCommand.ts b/clients/client-rds/src/commands/DescribeDBInstanceAutomatedBackupsCommand.ts
index 27ed7281f17bf..67c3f31eb29f1 100644
--- a/clients/client-rds/src/commands/DescribeDBInstanceAutomatedBackupsCommand.ts
+++ b/clients/client-rds/src/commands/DescribeDBInstanceAutomatedBackupsCommand.ts
@@ -112,6 +112,7 @@ export interface DescribeDBInstanceAutomatedBackupsCommandOutput
* // BackupTarget: "STRING_VALUE",
* // StorageThroughput: Number("int"),
* // AwsBackupRecoveryPointArn: "STRING_VALUE",
+ * // DedicatedLogVolume: true || false,
* // },
* // ],
* // };
diff --git a/clients/client-rds/src/commands/DescribeDBInstancesCommand.ts b/clients/client-rds/src/commands/DescribeDBInstancesCommand.ts
index b5e3752cf7c43..45b4ca60203c8 100644
--- a/clients/client-rds/src/commands/DescribeDBInstancesCommand.ts
+++ b/clients/client-rds/src/commands/DescribeDBInstancesCommand.ts
@@ -157,6 +157,7 @@ export interface DescribeDBInstancesCommandOutput extends DBInstanceMessage, __M
* // ResumeFullAutomationModeTime: new Date("TIMESTAMP"),
* // StorageThroughput: Number("int"),
* // Engine: "STRING_VALUE",
+ * // DedicatedLogVolume: true || false,
* // },
* // LatestRestorableTime: new Date("TIMESTAMP"),
* // MultiAZ: true || false,
@@ -282,6 +283,7 @@ export interface DescribeDBInstancesCommandOutput extends DBInstanceMessage, __M
* // },
* // ReadReplicaSourceDBClusterIdentifier: "STRING_VALUE",
* // PercentProgress: "STRING_VALUE",
+ * // DedicatedLogVolume: true || false,
* // },
* // ],
* // };
diff --git a/clients/client-rds/src/commands/DescribeDBSnapshotsCommand.ts b/clients/client-rds/src/commands/DescribeDBSnapshotsCommand.ts
index cbba9a5ca0074..5e136db471827 100644
--- a/clients/client-rds/src/commands/DescribeDBSnapshotsCommand.ts
+++ b/clients/client-rds/src/commands/DescribeDBSnapshotsCommand.ts
@@ -112,6 +112,7 @@ export interface DescribeDBSnapshotsCommandOutput extends DBSnapshotMessage, __M
* // SnapshotTarget: "STRING_VALUE",
* // StorageThroughput: Number("int"),
* // DBSystemId: "STRING_VALUE",
+ * // DedicatedLogVolume: true || false,
* // },
* // ],
* // };
diff --git a/clients/client-rds/src/commands/DescribeOrderableDBInstanceOptionsCommand.ts b/clients/client-rds/src/commands/DescribeOrderableDBInstanceOptionsCommand.ts
index ce3cbc69d7793..5e364cac8bd9b 100644
--- a/clients/client-rds/src/commands/DescribeOrderableDBInstanceOptionsCommand.ts
+++ b/clients/client-rds/src/commands/DescribeOrderableDBInstanceOptionsCommand.ts
@@ -123,6 +123,7 @@ export interface DescribeOrderableDBInstanceOptionsCommandOutput
* // MaxStorageThroughputPerDbInstance: Number("int"),
* // MinStorageThroughputPerIops: Number("double"),
* // MaxStorageThroughputPerIops: Number("double"),
+ * // SupportsDedicatedLogVolume: true || false,
* // },
* // ],
* // Marker: "STRING_VALUE",
diff --git a/clients/client-rds/src/commands/DescribeValidDBInstanceModificationsCommand.ts b/clients/client-rds/src/commands/DescribeValidDBInstanceModificationsCommand.ts
index e22bc66187054..a7c7f17946ad8 100644
--- a/clients/client-rds/src/commands/DescribeValidDBInstanceModificationsCommand.ts
+++ b/clients/client-rds/src/commands/DescribeValidDBInstanceModificationsCommand.ts
@@ -107,6 +107,7 @@ export interface DescribeValidDBInstanceModificationsCommandOutput
* // AllowedValues: "STRING_VALUE",
* // },
* // ],
+ * // SupportsDedicatedLogVolume: true || false,
* // },
* // };
*
diff --git a/clients/client-rds/src/commands/ModifyDBInstanceCommand.ts b/clients/client-rds/src/commands/ModifyDBInstanceCommand.ts
index 9016c0090659c..ee3b8ce0bb879 100644
--- a/clients/client-rds/src/commands/ModifyDBInstanceCommand.ts
+++ b/clients/client-rds/src/commands/ModifyDBInstanceCommand.ts
@@ -125,6 +125,7 @@ export interface ModifyDBInstanceCommandOutput extends ModifyDBInstanceResult, _
* RotateMasterUserPassword: true || false,
* MasterUserSecretKmsKeyId: "STRING_VALUE",
* Engine: "STRING_VALUE",
+ * DedicatedLogVolume: true || false,
* };
* const command = new ModifyDBInstanceCommand(input);
* const response = await client.send(command);
@@ -221,6 +222,7 @@ export interface ModifyDBInstanceCommandOutput extends ModifyDBInstanceResult, _
* // ResumeFullAutomationModeTime: new Date("TIMESTAMP"),
* // StorageThroughput: Number("int"),
* // Engine: "STRING_VALUE",
+ * // DedicatedLogVolume: true || false,
* // },
* // LatestRestorableTime: new Date("TIMESTAMP"),
* // MultiAZ: true || false,
@@ -346,6 +348,7 @@ export interface ModifyDBInstanceCommandOutput extends ModifyDBInstanceResult, _
* // },
* // ReadReplicaSourceDBClusterIdentifier: "STRING_VALUE",
* // PercentProgress: "STRING_VALUE",
+ * // DedicatedLogVolume: true || false,
* // },
* // };
*
diff --git a/clients/client-rds/src/commands/ModifyDBSnapshotCommand.ts b/clients/client-rds/src/commands/ModifyDBSnapshotCommand.ts
index a0193ec8520fa..ee285719c4710 100644
--- a/clients/client-rds/src/commands/ModifyDBSnapshotCommand.ts
+++ b/clients/client-rds/src/commands/ModifyDBSnapshotCommand.ts
@@ -102,6 +102,7 @@ export interface ModifyDBSnapshotCommandOutput extends ModifyDBSnapshotResult, _
* // SnapshotTarget: "STRING_VALUE",
* // StorageThroughput: Number("int"),
* // DBSystemId: "STRING_VALUE",
+ * // DedicatedLogVolume: true || false,
* // },
* // };
*
diff --git a/clients/client-rds/src/commands/PromoteReadReplicaCommand.ts b/clients/client-rds/src/commands/PromoteReadReplicaCommand.ts
index 635f5eaa5144f..be65338469758 100644
--- a/clients/client-rds/src/commands/PromoteReadReplicaCommand.ts
+++ b/clients/client-rds/src/commands/PromoteReadReplicaCommand.ts
@@ -161,6 +161,7 @@ export interface PromoteReadReplicaCommandOutput extends PromoteReadReplicaResul
* // ResumeFullAutomationModeTime: new Date("TIMESTAMP"),
* // StorageThroughput: Number("int"),
* // Engine: "STRING_VALUE",
+ * // DedicatedLogVolume: true || false,
* // },
* // LatestRestorableTime: new Date("TIMESTAMP"),
* // MultiAZ: true || false,
@@ -286,6 +287,7 @@ export interface PromoteReadReplicaCommandOutput extends PromoteReadReplicaResul
* // },
* // ReadReplicaSourceDBClusterIdentifier: "STRING_VALUE",
* // PercentProgress: "STRING_VALUE",
+ * // DedicatedLogVolume: true || false,
* // },
* // };
*
diff --git a/clients/client-rds/src/commands/RebootDBInstanceCommand.ts b/clients/client-rds/src/commands/RebootDBInstanceCommand.ts
index 28320f7005326..861b6ad516a31 100644
--- a/clients/client-rds/src/commands/RebootDBInstanceCommand.ts
+++ b/clients/client-rds/src/commands/RebootDBInstanceCommand.ts
@@ -152,6 +152,7 @@ export interface RebootDBInstanceCommandOutput extends RebootDBInstanceResult, _
* // ResumeFullAutomationModeTime: new Date("TIMESTAMP"),
* // StorageThroughput: Number("int"),
* // Engine: "STRING_VALUE",
+ * // DedicatedLogVolume: true || false,
* // },
* // LatestRestorableTime: new Date("TIMESTAMP"),
* // MultiAZ: true || false,
@@ -277,6 +278,7 @@ export interface RebootDBInstanceCommandOutput extends RebootDBInstanceResult, _
* // },
* // ReadReplicaSourceDBClusterIdentifier: "STRING_VALUE",
* // PercentProgress: "STRING_VALUE",
+ * // DedicatedLogVolume: true || false,
* // },
* // };
*
diff --git a/clients/client-rds/src/commands/RestoreDBInstanceFromDBSnapshotCommand.ts b/clients/client-rds/src/commands/RestoreDBInstanceFromDBSnapshotCommand.ts
index e5b914bc94cae..6b38364de4b6d 100644
--- a/clients/client-rds/src/commands/RestoreDBInstanceFromDBSnapshotCommand.ts
+++ b/clients/client-rds/src/commands/RestoreDBInstanceFromDBSnapshotCommand.ts
@@ -118,6 +118,7 @@ export interface RestoreDBInstanceFromDBSnapshotCommandOutput
* StorageThroughput: Number("int"),
* DBClusterSnapshotIdentifier: "STRING_VALUE",
* AllocatedStorage: Number("int"),
+ * DedicatedLogVolume: true || false,
* };
* const command = new RestoreDBInstanceFromDBSnapshotCommand(input);
* const response = await client.send(command);
@@ -214,6 +215,7 @@ export interface RestoreDBInstanceFromDBSnapshotCommandOutput
* // ResumeFullAutomationModeTime: new Date("TIMESTAMP"),
* // StorageThroughput: Number("int"),
* // Engine: "STRING_VALUE",
+ * // DedicatedLogVolume: true || false,
* // },
* // LatestRestorableTime: new Date("TIMESTAMP"),
* // MultiAZ: true || false,
@@ -339,6 +341,7 @@ export interface RestoreDBInstanceFromDBSnapshotCommandOutput
* // },
* // ReadReplicaSourceDBClusterIdentifier: "STRING_VALUE",
* // PercentProgress: "STRING_VALUE",
+ * // DedicatedLogVolume: true || false,
* // },
* // };
*
diff --git a/clients/client-rds/src/commands/RestoreDBInstanceFromS3Command.ts b/clients/client-rds/src/commands/RestoreDBInstanceFromS3Command.ts
index 699d930e4e61f..8b456afb06710 100644
--- a/clients/client-rds/src/commands/RestoreDBInstanceFromS3Command.ts
+++ b/clients/client-rds/src/commands/RestoreDBInstanceFromS3Command.ts
@@ -117,6 +117,7 @@ export interface RestoreDBInstanceFromS3CommandOutput extends RestoreDBInstanceF
* StorageThroughput: Number("int"),
* ManageMasterUserPassword: true || false,
* MasterUserSecretKmsKeyId: "STRING_VALUE",
+ * DedicatedLogVolume: true || false,
* };
* const command = new RestoreDBInstanceFromS3Command(input);
* const response = await client.send(command);
@@ -213,6 +214,7 @@ export interface RestoreDBInstanceFromS3CommandOutput extends RestoreDBInstanceF
* // ResumeFullAutomationModeTime: new Date("TIMESTAMP"),
* // StorageThroughput: Number("int"),
* // Engine: "STRING_VALUE",
+ * // DedicatedLogVolume: true || false,
* // },
* // LatestRestorableTime: new Date("TIMESTAMP"),
* // MultiAZ: true || false,
@@ -338,6 +340,7 @@ export interface RestoreDBInstanceFromS3CommandOutput extends RestoreDBInstanceF
* // },
* // ReadReplicaSourceDBClusterIdentifier: "STRING_VALUE",
* // PercentProgress: "STRING_VALUE",
+ * // DedicatedLogVolume: true || false,
* // },
* // };
*
diff --git a/clients/client-rds/src/commands/RestoreDBInstanceToPointInTimeCommand.ts b/clients/client-rds/src/commands/RestoreDBInstanceToPointInTimeCommand.ts
index d0e6aa2d48989..50737006c13a3 100644
--- a/clients/client-rds/src/commands/RestoreDBInstanceToPointInTimeCommand.ts
+++ b/clients/client-rds/src/commands/RestoreDBInstanceToPointInTimeCommand.ts
@@ -118,6 +118,7 @@ export interface RestoreDBInstanceToPointInTimeCommandOutput
* NetworkType: "STRING_VALUE",
* StorageThroughput: Number("int"),
* AllocatedStorage: Number("int"),
+ * DedicatedLogVolume: true || false,
* };
* const command = new RestoreDBInstanceToPointInTimeCommand(input);
* const response = await client.send(command);
@@ -214,6 +215,7 @@ export interface RestoreDBInstanceToPointInTimeCommandOutput
* // ResumeFullAutomationModeTime: new Date("TIMESTAMP"),
* // StorageThroughput: Number("int"),
* // Engine: "STRING_VALUE",
+ * // DedicatedLogVolume: true || false,
* // },
* // LatestRestorableTime: new Date("TIMESTAMP"),
* // MultiAZ: true || false,
@@ -339,6 +341,7 @@ export interface RestoreDBInstanceToPointInTimeCommandOutput
* // },
* // ReadReplicaSourceDBClusterIdentifier: "STRING_VALUE",
* // PercentProgress: "STRING_VALUE",
+ * // DedicatedLogVolume: true || false,
* // },
* // };
*
diff --git a/clients/client-rds/src/commands/StartDBInstanceAutomatedBackupsReplicationCommand.ts b/clients/client-rds/src/commands/StartDBInstanceAutomatedBackupsReplicationCommand.ts
index ed67cae0ff725..9937a3f0b74f5 100644
--- a/clients/client-rds/src/commands/StartDBInstanceAutomatedBackupsReplicationCommand.ts
+++ b/clients/client-rds/src/commands/StartDBInstanceAutomatedBackupsReplicationCommand.ts
@@ -104,6 +104,7 @@ export interface StartDBInstanceAutomatedBackupsReplicationCommandOutput
* // BackupTarget: "STRING_VALUE",
* // StorageThroughput: Number("int"),
* // AwsBackupRecoveryPointArn: "STRING_VALUE",
+ * // DedicatedLogVolume: true || false,
* // },
* // };
*
diff --git a/clients/client-rds/src/commands/StartDBInstanceCommand.ts b/clients/client-rds/src/commands/StartDBInstanceCommand.ts
index 89e8c06afe1bf..557f69cfe0ef5 100644
--- a/clients/client-rds/src/commands/StartDBInstanceCommand.ts
+++ b/clients/client-rds/src/commands/StartDBInstanceCommand.ts
@@ -151,6 +151,7 @@ export interface StartDBInstanceCommandOutput extends StartDBInstanceResult, __M
* // ResumeFullAutomationModeTime: new Date("TIMESTAMP"),
* // StorageThroughput: Number("int"),
* // Engine: "STRING_VALUE",
+ * // DedicatedLogVolume: true || false,
* // },
* // LatestRestorableTime: new Date("TIMESTAMP"),
* // MultiAZ: true || false,
@@ -276,6 +277,7 @@ export interface StartDBInstanceCommandOutput extends StartDBInstanceResult, __M
* // },
* // ReadReplicaSourceDBClusterIdentifier: "STRING_VALUE",
* // PercentProgress: "STRING_VALUE",
+ * // DedicatedLogVolume: true || false,
* // },
* // };
*
diff --git a/clients/client-rds/src/commands/StopDBInstanceAutomatedBackupsReplicationCommand.ts b/clients/client-rds/src/commands/StopDBInstanceAutomatedBackupsReplicationCommand.ts
index 2ea3e870e9f42..7c05946efec1c 100644
--- a/clients/client-rds/src/commands/StopDBInstanceAutomatedBackupsReplicationCommand.ts
+++ b/clients/client-rds/src/commands/StopDBInstanceAutomatedBackupsReplicationCommand.ts
@@ -100,6 +100,7 @@ export interface StopDBInstanceAutomatedBackupsReplicationCommandOutput
* // BackupTarget: "STRING_VALUE",
* // StorageThroughput: Number("int"),
* // AwsBackupRecoveryPointArn: "STRING_VALUE",
+ * // DedicatedLogVolume: true || false,
* // },
* // };
*
diff --git a/clients/client-rds/src/commands/StopDBInstanceCommand.ts b/clients/client-rds/src/commands/StopDBInstanceCommand.ts
index 8a5829ec6a256..1e2847be9c5f8 100644
--- a/clients/client-rds/src/commands/StopDBInstanceCommand.ts
+++ b/clients/client-rds/src/commands/StopDBInstanceCommand.ts
@@ -154,6 +154,7 @@ export interface StopDBInstanceCommandOutput extends StopDBInstanceResult, __Met
* // ResumeFullAutomationModeTime: new Date("TIMESTAMP"),
* // StorageThroughput: Number("int"),
* // Engine: "STRING_VALUE",
+ * // DedicatedLogVolume: true || false,
* // },
* // LatestRestorableTime: new Date("TIMESTAMP"),
* // MultiAZ: true || false,
@@ -279,6 +280,7 @@ export interface StopDBInstanceCommandOutput extends StopDBInstanceResult, __Met
* // },
* // ReadReplicaSourceDBClusterIdentifier: "STRING_VALUE",
* // PercentProgress: "STRING_VALUE",
+ * // DedicatedLogVolume: true || false,
* // },
* // };
*
diff --git a/clients/client-rds/src/commands/SwitchoverReadReplicaCommand.ts b/clients/client-rds/src/commands/SwitchoverReadReplicaCommand.ts
index 3a62b2db54574..e2bf2db751ebd 100644
--- a/clients/client-rds/src/commands/SwitchoverReadReplicaCommand.ts
+++ b/clients/client-rds/src/commands/SwitchoverReadReplicaCommand.ts
@@ -143,6 +143,7 @@ export interface SwitchoverReadReplicaCommandOutput extends SwitchoverReadReplic
* // ResumeFullAutomationModeTime: new Date("TIMESTAMP"),
* // StorageThroughput: Number("int"),
* // Engine: "STRING_VALUE",
+ * // DedicatedLogVolume: true || false,
* // },
* // LatestRestorableTime: new Date("TIMESTAMP"),
* // MultiAZ: true || false,
@@ -268,6 +269,7 @@ export interface SwitchoverReadReplicaCommandOutput extends SwitchoverReadReplic
* // },
* // ReadReplicaSourceDBClusterIdentifier: "STRING_VALUE",
* // PercentProgress: "STRING_VALUE",
+ * // DedicatedLogVolume: true || false,
* // },
* // };
*
diff --git a/clients/client-rds/src/models/models_0.ts b/clients/client-rds/src/models/models_0.ts
index cdc9844d186fc..2baa136f115e2 100644
--- a/clients/client-rds/src/models/models_0.ts
+++ b/clients/client-rds/src/models/models_0.ts
@@ -2640,6 +2640,12 @@ export interface DBSnapshot {
* manages your database files. The Oracle SID is also the name of your CDB.
*/
DBSystemId?: string;
+
+ /**
+ * @public
+ * Indicates whether the DB instance has a dedicated log volume (DLV) enabled.
+ */
+ DedicatedLogVolume?: boolean;
}
/**
@@ -7883,6 +7889,12 @@ export interface CreateDBInstanceMessage {
* the value defaults to RDSCDB
. The Oracle SID is also the name of your CDB.
*/
DBSystemId?: string;
+
+ /**
+ * @public
+ * Indicates whether the DB instance has a dedicated log volume (DLV) enabled.
+ */
+ DedicatedLogVolume?: boolean;
}
/**
@@ -8369,6 +8381,12 @@ export interface PendingModifiedValues {
* The database engine of the DB instance.
*/
Engine?: string;
+
+ /**
+ * @public
+ * Indicates whether the DB instance has a dedicated log volume (DLV) enabled.>
+ */
+ DedicatedLogVolume?: boolean;
}
/**
@@ -9052,6 +9070,12 @@ export interface DBInstance {
* The progress of the storage optimization operation as a percentage.
*/
PercentProgress?: string;
+
+ /**
+ * @public
+ * Indicates whether the DB instance has a dedicated log volume (DLV) enabled.
+ */
+ DedicatedLogVolume?: boolean;
}
/**
@@ -9802,6 +9826,12 @@ export interface CreateDBInstanceReadReplicaMessage {
*
*/
SourceDBClusterIdentifier?: string;
+
+ /**
+ * @public
+ * Indicates whether the DB instance has a dedicated log volume (DLV) enabled.
+ */
+ DedicatedLogVolume?: boolean;
}
/**
@@ -12580,6 +12610,12 @@ export interface DBInstanceAutomatedBackup {
* The Amazon Resource Name (ARN) of the recovery point in Amazon Web Services Backup.
*/
AwsBackupRecoveryPointArn?: string;
+
+ /**
+ * @public
+ * Indicates whether the DB instance has a dedicated log volume (DLV) enabled.
+ */
+ DedicatedLogVolume?: boolean;
}
/**
diff --git a/clients/client-rds/src/models/models_1.ts b/clients/client-rds/src/models/models_1.ts
index 860139877964a..58315e881cedb 100644
--- a/clients/client-rds/src/models/models_1.ts
+++ b/clients/client-rds/src/models/models_1.ts
@@ -3286,6 +3286,12 @@ export interface OrderableDBInstanceOption {
* Maximum storage throughput to provisioned IOPS ratio for a DB instance.
*/
MaxStorageThroughputPerIops?: number;
+
+ /**
+ * @public
+ * Indicates whether a DB instance supports using a dedicated log volume (DLV).
+ */
+ SupportsDedicatedLogVolume?: boolean;
}
/**
@@ -4053,6 +4059,12 @@ export interface ValidDBInstanceModificationsMessage {
* Valid processor features for your DB instance.
*/
ValidProcessorFeatures?: AvailableProcessorFeature[];
+
+ /**
+ * @public
+ * Indicates whether a DB instance supports using a dedicated log volume (DLV).
+ */
+ SupportsDedicatedLogVolume?: boolean;
}
/**
@@ -6548,6 +6560,12 @@ export interface ModifyDBInstanceMessage {
*
*/
Engine?: string;
+
+ /**
+ * @public
+ * Indicates whether the DB instance has a dedicated log volume (DLV) enabled.
+ */
+ DedicatedLogVolume?: boolean;
}
/**
@@ -9813,6 +9831,12 @@ export interface RestoreDBInstanceFromDBSnapshotMessage {
*
*/
AllocatedStorage?: number;
+
+ /**
+ * @public
+ * Specifies whether to enable a dedicated log volume (DLV) for the DB instance.
+ */
+ DedicatedLogVolume?: boolean;
}
/**
@@ -10395,6 +10419,12 @@ export interface RestoreDBInstanceFromS3Message {
* has a different default KMS key for each Amazon Web Services Region.
*/
MasterUserSecretKmsKeyId?: string;
+
+ /**
+ * @public
+ * Specifies whether to enable a dedicated log volume (DLV) for the DB instance.
+ */
+ DedicatedLogVolume?: boolean;
}
/**
@@ -11018,6 +11048,12 @@ export interface RestoreDBInstanceToPointInTimeMessage {
*
*/
AllocatedStorage?: number;
+
+ /**
+ * @public
+ * Specifies whether to enable a dedicated log volume (DLV) for the DB instance.
+ */
+ DedicatedLogVolume?: boolean;
}
/**
diff --git a/clients/client-rds/src/protocols/Aws_query.ts b/clients/client-rds/src/protocols/Aws_query.ts
index ca4c96fc45ca0..2b0448f64fa10 100644
--- a/clients/client-rds/src/protocols/Aws_query.ts
+++ b/clients/client-rds/src/protocols/Aws_query.ts
@@ -14383,6 +14383,9 @@ const se_CreateDBInstanceMessage = (input: CreateDBInstanceMessage, context: __S
if (input.DBSystemId != null) {
entries["DBSystemId"] = input.DBSystemId;
}
+ if (input.DedicatedLogVolume != null) {
+ entries["DedicatedLogVolume"] = input.DedicatedLogVolume;
+ }
return entries;
};
@@ -14555,6 +14558,9 @@ const se_CreateDBInstanceReadReplicaMessage = (
if (input.SourceDBClusterIdentifier != null) {
entries["SourceDBClusterIdentifier"] = input.SourceDBClusterIdentifier;
}
+ if (input.DedicatedLogVolume != null) {
+ entries["DedicatedLogVolume"] = input.DedicatedLogVolume;
+ }
return entries;
};
@@ -17152,6 +17158,9 @@ const se_ModifyDBInstanceMessage = (input: ModifyDBInstanceMessage, context: __S
if (input.Engine != null) {
entries["Engine"] = input.Engine;
}
+ if (input.DedicatedLogVolume != null) {
+ entries["DedicatedLogVolume"] = input.DedicatedLogVolume;
+ }
return entries;
};
@@ -18488,6 +18497,9 @@ const se_RestoreDBInstanceFromDBSnapshotMessage = (
if (input.AllocatedStorage != null) {
entries["AllocatedStorage"] = input.AllocatedStorage;
}
+ if (input.DedicatedLogVolume != null) {
+ entries["DedicatedLogVolume"] = input.DedicatedLogVolume;
+ }
return entries;
};
@@ -18675,6 +18687,9 @@ const se_RestoreDBInstanceFromS3Message = (input: RestoreDBInstanceFromS3Message
if (input.MasterUserSecretKmsKeyId != null) {
entries["MasterUserSecretKmsKeyId"] = input.MasterUserSecretKmsKeyId;
}
+ if (input.DedicatedLogVolume != null) {
+ entries["DedicatedLogVolume"] = input.DedicatedLogVolume;
+ }
return entries;
};
@@ -18850,6 +18865,9 @@ const se_RestoreDBInstanceToPointInTimeMessage = (
if (input.AllocatedStorage != null) {
entries["AllocatedStorage"] = input.AllocatedStorage;
}
+ if (input.DedicatedLogVolume != null) {
+ entries["DedicatedLogVolume"] = input.DedicatedLogVolume;
+ }
return entries;
};
@@ -21761,6 +21779,9 @@ const de_DBInstance = (output: any, context: __SerdeContext): DBInstance => {
if (output["PercentProgress"] !== undefined) {
contents.PercentProgress = __expectString(output["PercentProgress"]);
}
+ if (output["DedicatedLogVolume"] !== undefined) {
+ contents.DedicatedLogVolume = __parseBoolean(output["DedicatedLogVolume"]);
+ }
return contents;
};
@@ -21875,6 +21896,9 @@ const de_DBInstanceAutomatedBackup = (output: any, context: __SerdeContext): DBI
if (output["AwsBackupRecoveryPointArn"] !== undefined) {
contents.AwsBackupRecoveryPointArn = __expectString(output["AwsBackupRecoveryPointArn"]);
}
+ if (output["DedicatedLogVolume"] !== undefined) {
+ contents.DedicatedLogVolume = __parseBoolean(output["DedicatedLogVolume"]);
+ }
return contents;
};
@@ -22831,6 +22855,9 @@ const de_DBSnapshot = (output: any, context: __SerdeContext): DBSnapshot => {
if (output["DBSystemId"] !== undefined) {
contents.DBSystemId = __expectString(output["DBSystemId"]);
}
+ if (output["DedicatedLogVolume"] !== undefined) {
+ contents.DedicatedLogVolume = __parseBoolean(output["DedicatedLogVolume"]);
+ }
return contents;
};
@@ -25462,6 +25489,9 @@ const de_OrderableDBInstanceOption = (output: any, context: __SerdeContext): Ord
if (output["MaxStorageThroughputPerIops"] !== undefined) {
contents.MaxStorageThroughputPerIops = __strictParseFloat(output["MaxStorageThroughputPerIops"]) as number;
}
+ if (output["SupportsDedicatedLogVolume"] !== undefined) {
+ contents.SupportsDedicatedLogVolume = __parseBoolean(output["SupportsDedicatedLogVolume"]);
+ }
return contents;
};
@@ -25738,6 +25768,9 @@ const de_PendingModifiedValues = (output: any, context: __SerdeContext): Pending
if (output["Engine"] !== undefined) {
contents.Engine = __expectString(output["Engine"]);
}
+ if (output["DedicatedLogVolume"] !== undefined) {
+ contents.DedicatedLogVolume = __parseBoolean(output["DedicatedLogVolume"]);
+ }
return contents;
};
@@ -27073,6 +27106,9 @@ const de_ValidDBInstanceModificationsMessage = (
context
);
}
+ if (output["SupportsDedicatedLogVolume"] !== undefined) {
+ contents.SupportsDedicatedLogVolume = __parseBoolean(output["SupportsDedicatedLogVolume"]);
+ }
return contents;
};
diff --git a/codegen/sdk-codegen/aws-models/rds.json b/codegen/sdk-codegen/aws-models/rds.json
index 570178888e230..c899c336d3f9d 100644
--- a/codegen/sdk-codegen/aws-models/rds.json
+++ b/codegen/sdk-codegen/aws-models/rds.json
@@ -4989,6 +4989,12 @@
"traits": {
"smithy.api#documentation": "The Oracle system identifier (SID), which is the name of the Oracle database instance that \n manages your database files. In this context, the term \"Oracle database instance\" refers exclusively \n to the system global area (SGA) and Oracle background processes. If you don't specify a SID, \n the value defaults to RDSCDB
. The Oracle SID is also the name of your CDB.
"
}
+ },
+ "DedicatedLogVolume": {
+ "target": "com.amazonaws.rds#BooleanOptional",
+ "traits": {
+ "smithy.api#documentation": "Indicates whether the DB instance has a dedicated log volume (DLV) enabled.
"
+ }
}
},
"traits": {
@@ -5347,6 +5353,12 @@
"traits": {
"smithy.api#documentation": "The identifier of the Multi-AZ DB cluster that will act as the source for the read\n replica. Each DB cluster can have up to 15 read replicas.
\n Constraints:
\n \n \n Must be the identifier of an existing Multi-AZ DB cluster.
\n \n \n Can't be specified if the SourceDBInstanceIdentifier
parameter is\n also specified.
\n \n \n The specified DB cluster must have automatic backups enabled, that is, its\n backup retention period must be greater than 0.
\n \n \n The source DB cluster must be in the same Amazon Web Services Region as the read replica.\n Cross-Region replication isn't supported.
\n \n "
}
+ },
+ "DedicatedLogVolume": {
+ "target": "com.amazonaws.rds#BooleanOptional",
+ "traits": {
+ "smithy.api#documentation": "Indicates whether the DB instance has a dedicated log volume (DLV) enabled.
"
+ }
}
},
"traits": {
@@ -8726,6 +8738,13 @@
"traits": {
"smithy.api#documentation": "The progress of the storage optimization operation as a percentage.
"
}
+ },
+ "DedicatedLogVolume": {
+ "target": "com.amazonaws.rds#Boolean",
+ "traits": {
+ "smithy.api#default": false,
+ "smithy.api#documentation": "Indicates whether the DB instance has a dedicated log volume (DLV) enabled.
"
+ }
}
},
"traits": {
@@ -8929,6 +8948,12 @@
"traits": {
"smithy.api#documentation": "The Amazon Resource Name (ARN) of the recovery point in Amazon Web Services Backup.
"
}
+ },
+ "DedicatedLogVolume": {
+ "target": "com.amazonaws.rds#BooleanOptional",
+ "traits": {
+ "smithy.api#documentation": "Indicates whether the DB instance has a dedicated log volume (DLV) enabled.
"
+ }
}
},
"traits": {
@@ -10376,6 +10401,13 @@
"traits": {
"smithy.api#documentation": "The Oracle system identifier (SID), which is the name of the Oracle database instance that \n manages your database files. The Oracle SID is also the name of your CDB.
"
}
+ },
+ "DedicatedLogVolume": {
+ "target": "com.amazonaws.rds#Boolean",
+ "traits": {
+ "smithy.api#default": false,
+ "smithy.api#documentation": "Indicates whether the DB instance has a dedicated log volume (DLV) enabled.
"
+ }
}
},
"traits": {
@@ -19857,6 +19889,12 @@
"traits": {
"smithy.api#documentation": "The target Oracle DB engine when you convert a non-CDB to a CDB. This intermediate step is necessary to upgrade an Oracle Database 19c non-CDB\n to an Oracle Database 21c CDB.
\n Note the following requirements:
\n \n Note the following limitations:
\n \n \n You can't convert a CDB to a non-CDB.
\n \n \n You can't convert a replica database.
\n \n \n You can't convert a non-CDB to a CDB and upgrade the engine version in the\n same command.
\n \n \n You can't convert the existing custom parameter or option group when it has\n options or parameters that are permanent or persistent. In this situation, the\n DB instance reverts to the default option and parameter group. To avoid\n reverting to the default, specify a new parameter group with\n --db-parameter-group-name
and a new option group with\n --option-group-name
.
\n \n "
}
+ },
+ "DedicatedLogVolume": {
+ "target": "com.amazonaws.rds#BooleanOptional",
+ "traits": {
+ "smithy.api#documentation": "Indicates whether the DB instance has a dedicated log volume (DLV) enabled.
"
+ }
}
},
"traits": {
@@ -21664,6 +21702,13 @@
"traits": {
"smithy.api#documentation": "Maximum storage throughput to provisioned IOPS ratio for a DB instance.
"
}
+ },
+ "SupportsDedicatedLogVolume": {
+ "target": "com.amazonaws.rds#Boolean",
+ "traits": {
+ "smithy.api#default": false,
+ "smithy.api#documentation": "Indicates whether a DB instance supports using a dedicated log volume (DLV).
"
+ }
}
},
"traits": {
@@ -22020,6 +22065,12 @@
"traits": {
"smithy.api#documentation": "The database engine of the DB instance.
"
}
+ },
+ "DedicatedLogVolume": {
+ "target": "com.amazonaws.rds#BooleanOptional",
+ "traits": {
+ "smithy.api#documentation": "Indicates whether the DB instance has a dedicated log volume (DLV) enabled.>
"
+ }
}
},
"traits": {
@@ -24778,6 +24829,12 @@
"traits": {
"smithy.api#documentation": "The amount of storage (in gibibytes) to allocate initially for the DB instance. Follow the allocation rules specified in\n CreateDBInstance.
\n \n Be sure to allocate enough storage for your new DB instance so that the restore operation can succeed. You can also\n allocate additional storage for future growth.
\n "
}
+ },
+ "DedicatedLogVolume": {
+ "target": "com.amazonaws.rds#BooleanOptional",
+ "traits": {
+ "smithy.api#documentation": "Specifies whether to enable a dedicated log volume (DLV) for the DB instance.
"
+ }
}
},
"traits": {
@@ -25161,6 +25218,12 @@
"traits": {
"smithy.api#documentation": "The Amazon Web Services KMS key identifier to encrypt a secret that is automatically generated and \n managed in Amazon Web Services Secrets Manager.
\n This setting is valid only if the master user password is managed by RDS in Amazon Web Services Secrets \n Manager for the DB instance.
\n The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.\n To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN.
\n If you don't specify MasterUserSecretKmsKeyId
, then the aws/secretsmanager
\n KMS key is used to encrypt the secret. If the secret is in a different Amazon Web Services account, then you can't \n use the aws/secretsmanager
KMS key to encrypt the secret, and you must use a customer \n managed KMS key.
\n There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account\n has a different default KMS key for each Amazon Web Services Region.
"
}
+ },
+ "DedicatedLogVolume": {
+ "target": "com.amazonaws.rds#BooleanOptional",
+ "traits": {
+ "smithy.api#documentation": "Specifies whether to enable a dedicated log volume (DLV) for the DB instance.
"
+ }
}
},
"traits": {
@@ -25610,6 +25673,12 @@
"traits": {
"smithy.api#documentation": "The amount of storage (in gibibytes) to allocate initially for the DB instance.\n Follow the allocation rules specified in CreateDBInstance
.
\n \n Be sure to allocate enough storage for your new DB instance so that the restore operation can succeed.\n You can also allocate additional storage for future growth.
\n "
}
+ },
+ "DedicatedLogVolume": {
+ "target": "com.amazonaws.rds#BooleanOptional",
+ "traits": {
+ "smithy.api#documentation": "Specifies whether to enable a dedicated log volume (DLV) for the DB instance.
"
+ }
}
},
"traits": {
@@ -27787,6 +27856,13 @@
"traits": {
"smithy.api#documentation": "Valid processor features for your DB instance.
"
}
+ },
+ "SupportsDedicatedLogVolume": {
+ "target": "com.amazonaws.rds#Boolean",
+ "traits": {
+ "smithy.api#default": false,
+ "smithy.api#documentation": "Indicates whether a DB instance supports using a dedicated log volume (DLV).
"
+ }
}
},
"traits": {
From 2964c2f75c0e59c6bfd700bde7fe1bbecaef60c5 Mon Sep 17 00:00:00 2001
From: awstools
Date: Thu, 12 Oct 2023 18:24:08 +0000
Subject: [PATCH 20/35] feat(client-inspector2): Add MacOs ec2 platform support
---
clients/client-inspector2/README.md | 2 +-
clients/client-inspector2/src/Inspector2.ts | 2 +-
.../client-inspector2/src/Inspector2Client.ts | 2 +-
.../src/commands/CreateFilterCommand.ts | 2 +-
clients/client-inspector2/src/index.ts | 2 +-
.../client-inspector2/src/models/models_0.ts | 118 +++++++++++-------
.../sdk-codegen/aws-models/inspector2.json | 79 ++++++------
7 files changed, 113 insertions(+), 94 deletions(-)
diff --git a/clients/client-inspector2/README.md b/clients/client-inspector2/README.md
index 1dbd1cd42ef8c..473404f5f633a 100644
--- a/clients/client-inspector2/README.md
+++ b/clients/client-inspector2/README.md
@@ -7,7 +7,7 @@
AWS SDK for JavaScript Inspector2 Client for Node.js, Browser and React Native.
Amazon Inspector is a vulnerability discovery service that automates continuous scanning for
-security vulnerabilities within your Amazon EC2 and Amazon ECR environments.
+security vulnerabilities within your Amazon EC2, Amazon ECR, and Amazon Web Services Lambda environments.
## Installing
diff --git a/clients/client-inspector2/src/Inspector2.ts b/clients/client-inspector2/src/Inspector2.ts
index 277d046ce5fc8..e6464f0340065 100644
--- a/clients/client-inspector2/src/Inspector2.ts
+++ b/clients/client-inspector2/src/Inspector2.ts
@@ -962,7 +962,7 @@ export interface Inspector2 {
/**
* @public
* Amazon Inspector is a vulnerability discovery service that automates continuous scanning for
- * security vulnerabilities within your Amazon EC2 and Amazon ECR environments.
+ * security vulnerabilities within your Amazon EC2, Amazon ECR, and Amazon Web Services Lambda environments.
*/
export class Inspector2 extends Inspector2Client implements Inspector2 {}
createAggregatedClient(commands, Inspector2);
diff --git a/clients/client-inspector2/src/Inspector2Client.ts b/clients/client-inspector2/src/Inspector2Client.ts
index c49306f0483d8..2fb3756e72a30 100644
--- a/clients/client-inspector2/src/Inspector2Client.ts
+++ b/clients/client-inspector2/src/Inspector2Client.ts
@@ -457,7 +457,7 @@ export interface Inspector2ClientResolvedConfig extends Inspector2ClientResolved
/**
* @public
* Amazon Inspector is a vulnerability discovery service that automates continuous scanning for
- * security vulnerabilities within your Amazon EC2 and Amazon ECR environments.
+ * security vulnerabilities within your Amazon EC2, Amazon ECR, and Amazon Web Services Lambda environments.
*/
export class Inspector2Client extends __Client<
__HttpHandlerOptions,
diff --git a/clients/client-inspector2/src/commands/CreateFilterCommand.ts b/clients/client-inspector2/src/commands/CreateFilterCommand.ts
index 7f13e60b783c1..7a50e57b79fd3 100644
--- a/clients/client-inspector2/src/commands/CreateFilterCommand.ts
+++ b/clients/client-inspector2/src/commands/CreateFilterCommand.ts
@@ -37,7 +37,7 @@ export interface CreateFilterCommandOutput extends CreateFilterResponse, __Metad
/**
* @public
- * Creates a filter resource using specified filter criteria.
+ * Creates a filter resource using specified filter criteria. When the filter action is set to SUPPRESS
this action creates a suppression rule.
* @example
* Use a bare-bones client and the command you need to make an API call.
* ```javascript
diff --git a/clients/client-inspector2/src/index.ts b/clients/client-inspector2/src/index.ts
index 01548c7bf54bc..ef18af548d634 100644
--- a/clients/client-inspector2/src/index.ts
+++ b/clients/client-inspector2/src/index.ts
@@ -2,7 +2,7 @@
/* eslint-disable */
/**
* Amazon Inspector is a vulnerability discovery service that automates continuous scanning for
- * security vulnerabilities within your Amazon EC2 and Amazon ECR environments.
+ * security vulnerabilities within your Amazon EC2, Amazon ECR, and Amazon Web Services Lambda environments.
*
* @packageDocumentation
*/
diff --git a/clients/client-inspector2/src/models/models_0.ts b/clients/client-inspector2/src/models/models_0.ts
index bcf2593c29adc..7f41dd4cf13df 100644
--- a/clients/client-inspector2/src/models/models_0.ts
+++ b/clients/client-inspector2/src/models/models_0.ts
@@ -3369,7 +3369,7 @@ export interface CoverageMapFilter {
export interface CoverageFilterCriteria {
/**
* @public
- * The scan status code to filter on.
+ * The scan status code to filter on. Valid values are: ValidationException
, InternalServerException
, ResourceNotFoundException
, BadRequestException
, and ThrottlingException
.
*/
scanStatusCode?: CoverageStringFilter[];
@@ -3468,6 +3468,7 @@ export type CoverageResourceType = (typeof CoverageResourceType)[keyof typeof Co
*/
export const Ec2Platform = {
LINUX: "LINUX",
+ MACOS: "MACOS",
UNKNOWN: "UNKNOWN",
WINDOWS: "WINDOWS",
} as const;
@@ -3669,7 +3670,56 @@ export interface ScanStatus {
/**
* @public
- * The reason for the scan.
+ * The scan status. Possible return values and descriptions are:
+ *
+ * PENDING_INITIAL_SCAN
- This resource has been identified for scanning, results will be available soon.
+ *
+ * ACCESS_DENIED
- Resource access policy restricting Amazon Inspector access. Please update the IAM policy.
+ *
+ * INTERNAL_ERROR
- Amazon Inspector has encountered an internal error for this resource. Amazon Inspector service will automatically resolve the issue and resume the scanning. No action required from the user.
+ *
+ * UNMANAGED_EC2_INSTANCE
- The EC2 instance is not managed by SSM, please use the following SSM automation to remediate the issue: https://docs.aws.amazon.com/systems-manager-automation-runbooks/latest/userguide/automation-awssupport-troubleshoot-managed-instance.html . Once the instance becomes managed by SSM, Inspector will automatically begin scanning this instance.
+ *
+ * UNSUPPORTED_OS
- Amazon Inspector does not support this OS, architecture, or image manifest type at this time. To see a complete list of supported operating systems see: https://docs.aws.amazon.com/inspector/latest/user/supported.html .
+ *
+ * SCAN_ELIGIBILITY_EXPIRED
- The configured scan duration has lapsed for this image.
+ *
+ * RESOURCE_TERMINATED
- This resource has been terminated. The findings and coverage associated with this resource are in the process of being cleaned up.
+ *
+ * SUCCESSFUL
- The scan was successful.
+ *
+ * NO_RESOURCES_FOUND
- Reserved for future use.
+ *
+ * IMAGE_SIZE_EXCEEDED
- Reserved for future use.
+ *
+ * SCAN_FREQUENCY_MANUAL
- This image will not be covered by Amazon Inspector due to the repository scan frequency configuration.
+ *
+ * SCAN_FREQUENCY_SCAN_ON_PUSH
- This image will be scanned one time and will not new findings because of the scan frequency configuration.
+ *
+ * EC2_INSTANCE_STOPPED
- This EC2 instance is in a stopped state, therefore, Amazon Inspector will pause scanning. The existing findings will continue to exist until the instance is terminated. Once the instance is re-started, Inspector will automatically start scanning the instance again. Please note that you will not be charged for this instance while it’s in a stopped state.
+ *
+ * PENDING_DISABLE
- This resource is pending cleanup during disablement. The customer will not be billed while a resource is in the pending disable status.
+ *
+ * NO INVENTORY
- Amazon Inspector couldn’t find software application inventory to scan for vulnerabilities. This might be caused due to required Amazon Inspector associations being deleted or failing to run on your resource. Please verify the status of InspectorInventoryCollection-do-not-delete
association in the SSM console for the resource. Additionally, you can verify the instance’s inventory in the SSM Fleet Manager console.
+ *
+ * STALE_INVENTORY
- Amazon Inspector wasn’t able to collect an updated software application inventory in the last 7 days. Please confirm the required Amazon Inspector associations still exist and you can still see an updated inventory in the SSM console.
+ *
+ * EXCLUDED_BY_TAG
- This resource was not scanned because it has been excluded by a tag.
+ *
+ * UNSUPPORTED_RUNTIME
- The function was not scanned because it has an unsupported runtime. To see a complete list of supported runtimes see: https://docs.aws.amazon.com/inspector/latest/user/supported.html .
+ *
+ * UNSUPPORTED_MEDIA_TYPE
- The ECR image has an unsupported media type.
+ *
+ * UNSUPPORTED_CONFIG_FILE
- Reserved for future use.
+ *
+ * DEEP_INSPECTION_PACKAGE_COLLECTION_LIMIT_EXCEEDED
- The instance has exceeded the 5000 package limit for Amazon Inspector Deep inspection. To resume Deep inspection for this instance you can try to adjust the custom paths associated with the account.
+ *
+ * DEEP_INSPECTION_DAILY_SSM_INVENTORY_LIMIT_EXCEEDED
- The SSM agent couldn't send inventory to Amazon Inspector because the SSM quota for Inventory data collected per instance per day has already been reached for this instance.
+ *
+ * DEEP_INSPECTION_COLLECTION_TIME_LIMIT_EXCEEDED
- Amazon Inspector failed to extract the package inventory because the package collection time exceeding the maximum threshold of 15 minutes.
+ *
+ * DEEP_INSPECTION_NO_INVENTORY
The Amazon Inspector plugin hasn't yet been able to collect an inventory of packages for this instance. This is usually the result of a pending scan, however, if this status persists after 6 hours, use SSM to ensure that the required Amazon Inspector associations exist and are running for the instance.
+ *
*/
reason: ScanStatusReason | string | undefined;
}
@@ -5530,7 +5580,7 @@ export interface Finding {
/**
* @public
- * The type of the finding.
+ * The type of the finding. The type
value determines the valid values for resource
in your request. For more information, see Finding types in the Amazon Inspector user guide.
*/
type: FindingType | string | undefined;
@@ -5554,7 +5604,7 @@ export interface Finding {
/**
* @public
- * The severity of the finding.
+ * The severity of the finding. UNTRIAGED
applies to PACKAGE_VULNERABILITY
type findings that the vendor has not assigned a severity yet. For more information, see Severity levels for findings in the Amazon Inspector user guide.
*/
severity: Severity | string | undefined;
@@ -5584,7 +5634,7 @@ export interface Finding {
/**
* @public
- * Contains information on the resources involved in a finding.
+ * Contains information on the resources involved in a finding. The resource
value determines the valid values for type
in your request. For more information, see Finding types in the Amazon Inspector user guide.
*/
resources: Resource[] | undefined;
@@ -5944,16 +5994,13 @@ export interface ListAccountPermissionsRequest {
/**
* @public
- * The maximum number of results to return in the response.
+ * The maximum number of results the response can return. If your request would return more than the maximum the response will return a nextToken
value, use this value when you call the action again to get the remaining results.
*/
maxResults?: number;
/**
* @public
- * A token to use for paginating results that are returned in the response. Set the value
- * of this parameter to null for the first request to a list action. For subsequent calls, use
- * the NextToken
value returned from the previous request to continue listing
- * results after the first page.
+ * A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the maxResults
maximum value it will also return a nextToken
value. For subsequent calls, use the NextToken value returned from the previous request to continue listing results after the first page.
*/
nextToken?: string;
}
@@ -6018,16 +6065,13 @@ export interface ListAccountPermissionsResponse {
export interface ListCoverageRequest {
/**
* @public
- * The maximum number of results to return in the response.
+ * The maximum number of results the response can return. If your request would return more than the maximum the response will return a nextToken
value, use this value when you call the action again to get the remaining results.
*/
maxResults?: number;
/**
* @public
- * A token to use for paginating results that are returned in the response. Set the value
- * of this parameter to null for the first request to a list action. For subsequent calls, use
- * the NextToken
value returned from the previous request to continue listing
- * results after the first page.
+ * A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the maxResults
maximum value it will also return a nextToken
value. For subsequent calls, use the nextToken
value returned from the previous request to continue listing results after the first page.
*/
nextToken?: string;
@@ -6118,16 +6162,13 @@ export interface ListCoverageStatisticsResponse {
export interface ListDelegatedAdminAccountsRequest {
/**
* @public
- * The maximum number of results to return in the response.
+ * The maximum number of results the response can return. If your request would return more than the maximum the response will return a nextToken
value, use this value when you call the action again to get the remaining results.
*/
maxResults?: number;
/**
* @public
- * A token to use for paginating results that are returned in the response. Set the value
- * of this parameter to null for the first request to a list action. For subsequent calls, use
- * the NextToken
value returned from the previous request to continue listing
- * results after the first page.
+ * A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the maxResults
maximum value it will also return a nextToken
value. For subsequent calls, use the nextToken
value returned from the previous request to continue listing results after the first page.
*/
nextToken?: string;
}
@@ -6170,16 +6211,13 @@ export interface ListFiltersRequest {
/**
* @public
- * A token to use for paginating results that are returned in the response. Set the value
- * of this parameter to null for the first request to a list action. For subsequent calls, use
- * the NextToken
value returned from the previous request to continue listing
- * results after the first page.
+ * A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the maxResults
maximum value it will also return a nextToken
value. For subsequent calls, use the nextToken
value returned from the previous request to continue listing results after the first page.
*/
nextToken?: string;
/**
* @public
- * The maximum number of results to return in the response.
+ * The maximum number of results the response can return. If your request would return more than the maximum the response will return a nextToken
value, use this value when you call the action again to get the remaining results.
*/
maxResults?: number;
}
@@ -6216,16 +6254,13 @@ export interface ListFindingAggregationsRequest {
/**
* @public
- * A token to use for paginating results that are returned in the response. Set the value
- * of this parameter to null for the first request to a list action. For subsequent calls, use
- * the NextToken
value returned from the previous request to continue listing
- * results after the first page.
+ * A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the maxResults
maximum value it will also return a nextToken
value. For subsequent calls, use the nextToken
value returned from the previous request to continue listing results after the first page.
*/
nextToken?: string;
/**
* @public
- * The maximum number of results to return in the response.
+ * The maximum number of results the response can return. If your request would return more than the maximum the response will return a nextToken
value, use this value when you call the action again to get the remaining results.
*/
maxResults?: number;
@@ -6321,16 +6356,13 @@ export interface SortCriteria {
export interface ListFindingsRequest {
/**
* @public
- * The maximum number of results to return in the response.
+ * The maximum number of results the response can return. If your request would return more than the maximum the response will return a nextToken
value, use this value when you call the action again to get the remaining results.
*/
maxResults?: number;
/**
* @public
- * A token to use for paginating results that are returned in the response. Set the value
- * of this parameter to null for the first request to a list action. For subsequent calls, use
- * the NextToken
value returned from the previous request to continue listing
- * results after the first page.
+ * A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the maxResults
maximum value it will also return a nextToken
value. For subsequent calls, use the nextToken
value returned from the previous request to continue listing results after the first page.
*/
nextToken?: string;
@@ -6380,16 +6412,13 @@ export interface ListMembersRequest {
/**
* @public
- * The maximum number of results to return in the response.
+ * The maximum number of results the response can return. If your request would return more than the maximum the response will return a nextToken
value, use this value when you call the action again to get the remaining results.
*/
maxResults?: number;
/**
* @public
- * A token to use for paginating results that are returned in the response. Set the value
- * of this parameter to null for the first request to a list action. For subsequent calls, use
- * the NextToken
value returned from the previous request to continue listing
- * results after the first page.
+ * A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the maxResults
maximum value it will also return a nextToken
value. For subsequent calls, use the nextToken
value returned from the previous request to continue listing results after the first page.
*/
nextToken?: string;
}
@@ -6440,16 +6469,13 @@ export interface ListTagsForResourceResponse {
export interface ListUsageTotalsRequest {
/**
* @public
- * The maximum number of results to return in the response.
+ * The maximum number of results the response can return. If your request would return more than the maximum the response will return a nextToken
value, use this value when you call the action again to get the remaining results.
*/
maxResults?: number;
/**
* @public
- * A token to use for paginating results that are returned in the response. Set the value
- * of this parameter to null for the first request to a list action. For subsequent calls, use
- * the NextToken
value returned from the previous request to continue listing
- * results after the first page.
+ * A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the maxResults
maximum value it will also return a nextToken
value. For subsequent calls, use the nextToken
value returned from the previous request to continue listing results after the first page.
*/
nextToken?: string;
@@ -6635,7 +6661,7 @@ export interface Vulnerability {
/**
* @public
- * The source of the vulnerability information.
+ * The source of the vulnerability information. Possible results are RHEL
, AMAZON_CVE
, DEBIAN
or NVD
.
*/
source?: VulnerabilitySource | string;
diff --git a/codegen/sdk-codegen/aws-models/inspector2.json b/codegen/sdk-codegen/aws-models/inspector2.json
index 67e68a88ba78b..422591b7b969b 100644
--- a/codegen/sdk-codegen/aws-models/inspector2.json
+++ b/codegen/sdk-codegen/aws-models/inspector2.json
@@ -1200,23 +1200,14 @@
"severity": "Low"
}
],
- "ttps": [
- "TA0001",
- "TA0002"
- ],
- "tools": [
- "Metasploit"
- ],
+ "ttps": ["TA0001", "TA0002"],
+ "tools": ["Metasploit"],
"exploitObserved": {
"lastSeen": 1688580990,
"firstSeen": 1688580800
},
- "referenceUrls": [
- "https://nvd.nist.gov/vuln/detail/CVE-2019-20367"
- ],
- "cwes": [
- "cwe-1234"
- ],
+ "referenceUrls": ["https://nvd.nist.gov/vuln/detail/CVE-2019-20367"],
+ "cwes": ["cwe-1234"],
"epssScore": 0.85
}
],
@@ -1985,7 +1976,7 @@
"scanStatusCode": {
"target": "com.amazonaws.inspector2#CoverageStringFilterList",
"traits": {
- "smithy.api#documentation": "The scan status code to filter on.
"
+ "smithy.api#documentation": "The scan status code to filter on. Valid values are: ValidationException
, InternalServerException
, ResourceNotFoundException
, BadRequestException
, and ThrottlingException
.
"
}
},
"scanStatusReason": {
@@ -2286,7 +2277,7 @@
}
],
"traits": {
- "smithy.api#documentation": "Creates a filter resource using specified filter criteria.
",
+ "smithy.api#documentation": "Creates a filter resource using specified filter criteria. When the filter action is set to SUPPRESS
this action creates a suppression rule.
",
"smithy.api#http": {
"code": 200,
"method": "POST",
@@ -3369,6 +3360,10 @@
{
"value": "UNKNOWN",
"name": "UNKNOWN"
+ },
+ {
+ "value": "MACOS",
+ "name": "MACOS"
}
]
}
@@ -3717,8 +3712,8 @@
"traits": {
"smithy.api#default": 0,
"smithy.api#range": {
- "min": 0,
- "max": 1
+ "min": 0.0,
+ "max": 1.0
}
}
},
@@ -4441,7 +4436,7 @@
"type": {
"target": "com.amazonaws.inspector2#FindingType",
"traits": {
- "smithy.api#documentation": "The type of the finding.
",
+ "smithy.api#documentation": "The type of the finding. The type
value determines the valid values for resource
in your request. For more information, see Finding types in the Amazon Inspector user guide.
",
"smithy.api#required": {}
}
},
@@ -4468,7 +4463,7 @@
"severity": {
"target": "com.amazonaws.inspector2#Severity",
"traits": {
- "smithy.api#documentation": "The severity of the finding.
",
+ "smithy.api#documentation": "The severity of the finding. UNTRIAGED
applies to PACKAGE_VULNERABILITY
type findings that the vendor has not assigned a severity yet. For more information, see Severity levels for findings in the Amazon Inspector user guide.
",
"smithy.api#required": {}
}
},
@@ -4502,7 +4497,7 @@
"resources": {
"target": "com.amazonaws.inspector2#ResourceList",
"traits": {
- "smithy.api#documentation": "Contains information on the resources involved in a finding.
",
+ "smithy.api#documentation": "Contains information on the resources involved in a finding. The resource
value determines the valid values for type
in your request. For more information, see Finding types in the Amazon Inspector user guide.
",
"smithy.api#required": {}
}
},
@@ -5821,11 +5816,9 @@
},
"aws.protocols#restJson1": {},
"smithy.api#cors": {
- "additionalAllowedHeaders": [
- "*"
- ]
+ "additionalAllowedHeaders": ["*"]
},
- "smithy.api#documentation": "Amazon Inspector is a vulnerability discovery service that automates continuous scanning for\n security vulnerabilities within your Amazon EC2 and Amazon ECR environments.
",
+ "smithy.api#documentation": "Amazon Inspector is a vulnerability discovery service that automates continuous scanning for\n security vulnerabilities within your Amazon EC2, Amazon ECR, and Amazon Web Services Lambda environments.
",
"smithy.api#title": "Inspector2",
"smithy.rules#endpointRuleSet": {
"version": "1.0",
@@ -7122,13 +7115,13 @@
"maxResults": {
"target": "com.amazonaws.inspector2#ListAccountPermissionsMaxResults",
"traits": {
- "smithy.api#documentation": "The maximum number of results to return in the response.
"
+ "smithy.api#documentation": "The maximum number of results the response can return. If your request would return more than the maximum the response will return a nextToken
value, use this value when you call the action again to get the remaining results.
"
}
},
"nextToken": {
"target": "com.amazonaws.inspector2#NextToken",
"traits": {
- "smithy.api#documentation": "A token to use for paginating results that are returned in the response. Set the value\n of this parameter to null for the first request to a list action. For subsequent calls, use\n the NextToken
value returned from the previous request to continue listing\n results after the first page.
"
+ "smithy.api#documentation": "A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the maxResults
maximum value it will also return a nextToken
value. For subsequent calls, use the NextToken value returned from the previous request to continue listing results after the first page.
"
}
}
}
@@ -7200,13 +7193,13 @@
"maxResults": {
"target": "com.amazonaws.inspector2#ListCoverageMaxResults",
"traits": {
- "smithy.api#documentation": "The maximum number of results to return in the response.
"
+ "smithy.api#documentation": "The maximum number of results the response can return. If your request would return more than the maximum the response will return a nextToken
value, use this value when you call the action again to get the remaining results.
"
}
},
"nextToken": {
"target": "com.amazonaws.inspector2#NextToken",
"traits": {
- "smithy.api#documentation": "A token to use for paginating results that are returned in the response. Set the value\n of this parameter to null for the first request to a list action. For subsequent calls, use\n the NextToken
value returned from the previous request to continue listing\n results after the first page.
"
+ "smithy.api#documentation": "A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the maxResults
maximum value it will also return a nextToken
value. For subsequent calls, use the nextToken
value returned from the previous request to continue listing results after the first page.
"
}
},
"filterCriteria": {
@@ -7357,13 +7350,13 @@
"maxResults": {
"target": "com.amazonaws.inspector2#ListDelegatedAdminMaxResults",
"traits": {
- "smithy.api#documentation": "The maximum number of results to return in the response.
"
+ "smithy.api#documentation": "The maximum number of results the response can return. If your request would return more than the maximum the response will return a nextToken
value, use this value when you call the action again to get the remaining results.
"
}
},
"nextToken": {
"target": "com.amazonaws.inspector2#NextToken",
"traits": {
- "smithy.api#documentation": "A token to use for paginating results that are returned in the response. Set the value\n of this parameter to null for the first request to a list action. For subsequent calls, use\n the NextToken
value returned from the previous request to continue listing\n results after the first page.
"
+ "smithy.api#documentation": "A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the maxResults
maximum value it will also return a nextToken
value. For subsequent calls, use the nextToken
value returned from the previous request to continue listing results after the first page.
"
}
}
}
@@ -7458,13 +7451,13 @@
"nextToken": {
"target": "com.amazonaws.inspector2#NextToken",
"traits": {
- "smithy.api#documentation": "A token to use for paginating results that are returned in the response. Set the value\n of this parameter to null for the first request to a list action. For subsequent calls, use\n the NextToken
value returned from the previous request to continue listing\n results after the first page.
"
+ "smithy.api#documentation": "A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the maxResults
maximum value it will also return a nextToken
value. For subsequent calls, use the nextToken
value returned from the previous request to continue listing results after the first page.
"
}
},
"maxResults": {
"target": "com.amazonaws.inspector2#ListFilterMaxResults",
"traits": {
- "smithy.api#documentation": "The maximum number of results to return in the response.
"
+ "smithy.api#documentation": "The maximum number of results the response can return. If your request would return more than the maximum the response will return a nextToken
value, use this value when you call the action again to get the remaining results.
"
}
}
}
@@ -7543,13 +7536,13 @@
"nextToken": {
"target": "com.amazonaws.inspector2#NextToken",
"traits": {
- "smithy.api#documentation": "A token to use for paginating results that are returned in the response. Set the value\n of this parameter to null for the first request to a list action. For subsequent calls, use\n the NextToken
value returned from the previous request to continue listing\n results after the first page.
"
+ "smithy.api#documentation": "A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the maxResults
maximum value it will also return a nextToken
value. For subsequent calls, use the nextToken
value returned from the previous request to continue listing results after the first page.
"
}
},
"maxResults": {
"target": "com.amazonaws.inspector2#ListFindingAggregationsMaxResults",
"traits": {
- "smithy.api#documentation": "The maximum number of results to return in the response.
"
+ "smithy.api#documentation": "The maximum number of results the response can return. If your request would return more than the maximum the response will return a nextToken
value, use this value when you call the action again to get the remaining results.
"
}
},
"accountIds": {
@@ -7639,13 +7632,13 @@
"maxResults": {
"target": "com.amazonaws.inspector2#ListFindingsMaxResults",
"traits": {
- "smithy.api#documentation": "The maximum number of results to return in the response.
"
+ "smithy.api#documentation": "The maximum number of results the response can return. If your request would return more than the maximum the response will return a nextToken
value, use this value when you call the action again to get the remaining results.
"
}
},
"nextToken": {
"target": "com.amazonaws.inspector2#NextToken",
"traits": {
- "smithy.api#documentation": "A token to use for paginating results that are returned in the response. Set the value\n of this parameter to null for the first request to a list action. For subsequent calls, use\n the NextToken
value returned from the previous request to continue listing\n results after the first page.
"
+ "smithy.api#documentation": "A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the maxResults
maximum value it will also return a nextToken
value. For subsequent calls, use the nextToken
value returned from the previous request to continue listing results after the first page.
"
}
},
"filterCriteria": {
@@ -7737,13 +7730,13 @@
"maxResults": {
"target": "com.amazonaws.inspector2#ListMembersMaxResults",
"traits": {
- "smithy.api#documentation": "The maximum number of results to return in the response.
"
+ "smithy.api#documentation": "The maximum number of results the response can return. If your request would return more than the maximum the response will return a nextToken
value, use this value when you call the action again to get the remaining results.
"
}
},
"nextToken": {
"target": "com.amazonaws.inspector2#NextToken",
"traits": {
- "smithy.api#documentation": "A token to use for paginating results that are returned in the response. Set the value\n of this parameter to null for the first request to a list action. For subsequent calls, use\n the NextToken
value returned from the previous request to continue listing\n results after the first page.
"
+ "smithy.api#documentation": "A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the maxResults
maximum value it will also return a nextToken
value. For subsequent calls, use the nextToken
value returned from the previous request to continue listing results after the first page.
"
}
}
}
@@ -7880,13 +7873,13 @@
"maxResults": {
"target": "com.amazonaws.inspector2#ListUsageTotalsMaxResults",
"traits": {
- "smithy.api#documentation": "The maximum number of results to return in the response.
"
+ "smithy.api#documentation": "The maximum number of results the response can return. If your request would return more than the maximum the response will return a nextToken
value, use this value when you call the action again to get the remaining results.
"
}
},
"nextToken": {
"target": "com.amazonaws.inspector2#ListUsageTotalsNextToken",
"traits": {
- "smithy.api#documentation": "A token to use for paginating results that are returned in the response. Set the value\n of this parameter to null for the first request to a list action. For subsequent calls, use\n the NextToken
value returned from the previous request to continue listing\n results after the first page.
"
+ "smithy.api#documentation": "A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request to a list action. If your response returns more than the maxResults
maximum value it will also return a nextToken
value. For subsequent calls, use the nextToken
value returned from the previous request to continue listing results after the first page.
"
}
},
"accountIds": {
@@ -9557,7 +9550,7 @@
"reason": {
"target": "com.amazonaws.inspector2#ScanStatusReason",
"traits": {
- "smithy.api#documentation": "The reason for the scan.
",
+ "smithy.api#documentation": "The scan status. Possible return values and descriptions are:
\n \n PENDING_INITIAL_SCAN
- This resource has been identified for scanning, results will be available soon.
\n \n ACCESS_DENIED
- Resource access policy restricting Amazon Inspector access. Please update the IAM policy.
\n \n INTERNAL_ERROR
- Amazon Inspector has encountered an internal error for this resource. Amazon Inspector service will automatically resolve the issue and resume the scanning. No action required from the user.
\n \n UNMANAGED_EC2_INSTANCE
- The EC2 instance is not managed by SSM, please use the following SSM automation to remediate the issue: https://docs.aws.amazon.com/systems-manager-automation-runbooks/latest/userguide/automation-awssupport-troubleshoot-managed-instance.html . Once the instance becomes managed by SSM, Inspector will automatically begin scanning this instance.
\n \n UNSUPPORTED_OS
- Amazon Inspector does not support this OS, architecture, or image manifest type at this time. To see a complete list of supported operating systems see: https://docs.aws.amazon.com/inspector/latest/user/supported.html .
\n \n SCAN_ELIGIBILITY_EXPIRED
- The configured scan duration has lapsed for this image.
\n \n RESOURCE_TERMINATED
- This resource has been terminated. The findings and coverage associated with this resource are in the process of being cleaned up.
\n \n SUCCESSFUL
- The scan was successful.
\n \n NO_RESOURCES_FOUND
- Reserved for future use.
\n \n IMAGE_SIZE_EXCEEDED
- Reserved for future use.
\n \n SCAN_FREQUENCY_MANUAL
- This image will not be covered by Amazon Inspector due to the repository scan frequency configuration.
\n \n SCAN_FREQUENCY_SCAN_ON_PUSH
- This image will be scanned one time and will not new findings because of the scan frequency configuration.
\n \n EC2_INSTANCE_STOPPED
- This EC2 instance is in a stopped state, therefore, Amazon Inspector will pause scanning. The existing findings will continue to exist until the instance is terminated. Once the instance is re-started, Inspector will automatically start scanning the instance again. Please note that you will not be charged for this instance while it’s in a stopped state.
\n \n PENDING_DISABLE
- This resource is pending cleanup during disablement. The customer will not be billed while a resource is in the pending disable status.
\n \n NO INVENTORY
- Amazon Inspector couldn’t find software application inventory to scan for vulnerabilities. This might be caused due to required Amazon Inspector associations being deleted or failing to run on your resource. Please verify the status of InspectorInventoryCollection-do-not-delete
association in the SSM console for the resource. Additionally, you can verify the instance’s inventory in the SSM Fleet Manager console.
\n \n STALE_INVENTORY
- Amazon Inspector wasn’t able to collect an updated software application inventory in the last 7 days. Please confirm the required Amazon Inspector associations still exist and you can still see an updated inventory in the SSM console.
\n \n EXCLUDED_BY_TAG
- This resource was not scanned because it has been excluded by a tag.
\n \n UNSUPPORTED_RUNTIME
- The function was not scanned because it has an unsupported runtime. To see a complete list of supported runtimes see: https://docs.aws.amazon.com/inspector/latest/user/supported.html .
\n \n UNSUPPORTED_MEDIA_TYPE
- The ECR image has an unsupported media type.
\n \n UNSUPPORTED_CONFIG_FILE
- Reserved for future use.
\n \n DEEP_INSPECTION_PACKAGE_COLLECTION_LIMIT_EXCEEDED
- The instance has exceeded the 5000 package limit for Amazon Inspector Deep inspection. To resume Deep inspection for this instance you can try to adjust the custom paths associated with the account.
\n \n DEEP_INSPECTION_DAILY_SSM_INVENTORY_LIMIT_EXCEEDED
- The SSM agent couldn't send inventory to Amazon Inspector because the SSM quota for Inventory data collected per instance per day has already been reached for this instance.
\n \n DEEP_INSPECTION_COLLECTION_TIME_LIMIT_EXCEEDED
- Amazon Inspector failed to extract the package inventory because the package collection time exceeding the maximum threshold of 15 minutes.
\n \n DEEP_INSPECTION_NO_INVENTORY
The Amazon Inspector plugin hasn't yet been able to collect an inventory of packages for this instance. This is usually the result of a pending scan, however, if this status persists after 6 hours, use SSM to ensure that the required Amazon Inspector associations exist and are running for the instance.
\n
",
"smithy.api#required": {}
}
}
@@ -11260,7 +11253,7 @@
"source": {
"target": "com.amazonaws.inspector2#VulnerabilitySource",
"traits": {
- "smithy.api#documentation": "The source of the vulnerability information.
"
+ "smithy.api#documentation": "The source of the vulnerability information. Possible results are RHEL
, AMAZON_CVE
, DEBIAN
or NVD
.
"
}
},
"description": {
@@ -11496,4 +11489,4 @@
}
}
}
-}
\ No newline at end of file
+}
From 4d5eac693235fa55b8f817a7b545befe0d0a30a6 Mon Sep 17 00:00:00 2001
From: awstools
Date: Thu, 12 Oct 2023 18:24:08 +0000
Subject: [PATCH 21/35] feat(client-machine-learning): This release marks
Password field as sensitive
---
.../CreateDataSourceFromRDSCommand.ts | 8 ++-
.../CreateDataSourceFromRedshiftCommand.ts | 8 ++-
.../src/models/models_0.ts | 54 ++++++++++++++++++-
.../aws-models/machine-learning.json | 8 +--
4 files changed, 70 insertions(+), 8 deletions(-)
diff --git a/clients/client-machine-learning/src/commands/CreateDataSourceFromRDSCommand.ts b/clients/client-machine-learning/src/commands/CreateDataSourceFromRDSCommand.ts
index 244763e99cebe..8934538634d04 100644
--- a/clients/client-machine-learning/src/commands/CreateDataSourceFromRDSCommand.ts
+++ b/clients/client-machine-learning/src/commands/CreateDataSourceFromRDSCommand.ts
@@ -15,7 +15,11 @@ import {
} from "@smithy/types";
import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient";
-import { CreateDataSourceFromRDSInput, CreateDataSourceFromRDSOutput } from "../models/models_0";
+import {
+ CreateDataSourceFromRDSInput,
+ CreateDataSourceFromRDSInputFilterSensitiveLog,
+ CreateDataSourceFromRDSOutput,
+} from "../models/models_0";
import { de_CreateDataSourceFromRDSCommand, se_CreateDataSourceFromRDSCommand } from "../protocols/Aws_json1_1";
/**
@@ -157,7 +161,7 @@ export class CreateDataSourceFromRDSCommand extends $Command<
logger,
clientName,
commandName,
- inputFilterSensitiveLog: (_: any) => _,
+ inputFilterSensitiveLog: CreateDataSourceFromRDSInputFilterSensitiveLog,
outputFilterSensitiveLog: (_: any) => _,
[SMITHY_CONTEXT_KEY]: {
service: "AmazonML_20141212",
diff --git a/clients/client-machine-learning/src/commands/CreateDataSourceFromRedshiftCommand.ts b/clients/client-machine-learning/src/commands/CreateDataSourceFromRedshiftCommand.ts
index d280c9059d568..fba0ddd65f037 100644
--- a/clients/client-machine-learning/src/commands/CreateDataSourceFromRedshiftCommand.ts
+++ b/clients/client-machine-learning/src/commands/CreateDataSourceFromRedshiftCommand.ts
@@ -15,7 +15,11 @@ import {
} from "@smithy/types";
import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient";
-import { CreateDataSourceFromRedshiftInput, CreateDataSourceFromRedshiftOutput } from "../models/models_0";
+import {
+ CreateDataSourceFromRedshiftInput,
+ CreateDataSourceFromRedshiftInputFilterSensitiveLog,
+ CreateDataSourceFromRedshiftOutput,
+} from "../models/models_0";
import {
de_CreateDataSourceFromRedshiftCommand,
se_CreateDataSourceFromRedshiftCommand,
@@ -177,7 +181,7 @@ export class CreateDataSourceFromRedshiftCommand extends $Command<
logger,
clientName,
commandName,
- inputFilterSensitiveLog: (_: any) => _,
+ inputFilterSensitiveLog: CreateDataSourceFromRedshiftInputFilterSensitiveLog,
outputFilterSensitiveLog: (_: any) => _,
[SMITHY_CONTEXT_KEY]: {
service: "AmazonML_20141212",
diff --git a/clients/client-machine-learning/src/models/models_0.ts b/clients/client-machine-learning/src/models/models_0.ts
index bcbc9d88eaf14..43f1e49def7bf 100644
--- a/clients/client-machine-learning/src/models/models_0.ts
+++ b/clients/client-machine-learning/src/models/models_0.ts
@@ -1,5 +1,5 @@
// smithy-typescript generated code
-import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
+import { ExceptionOptionType as __ExceptionOptionType, SENSITIVE_STRING } from "@smithy/smithy-client";
import { MachineLearningServiceException as __BaseException } from "./MachineLearningServiceException";
@@ -3993,3 +3993,55 @@ export interface UpdateMLModelOutput {
*/
MLModelId?: string;
}
+
+/**
+ * @internal
+ */
+export const RDSDatabaseCredentialsFilterSensitiveLog = (obj: RDSDatabaseCredentials): any => ({
+ ...obj,
+ ...(obj.Password && { Password: SENSITIVE_STRING }),
+});
+
+/**
+ * @internal
+ */
+export const RDSDataSpecFilterSensitiveLog = (obj: RDSDataSpec): any => ({
+ ...obj,
+ ...(obj.DatabaseCredentials && {
+ DatabaseCredentials: RDSDatabaseCredentialsFilterSensitiveLog(obj.DatabaseCredentials),
+ }),
+});
+
+/**
+ * @internal
+ */
+export const CreateDataSourceFromRDSInputFilterSensitiveLog = (obj: CreateDataSourceFromRDSInput): any => ({
+ ...obj,
+ ...(obj.RDSData && { RDSData: RDSDataSpecFilterSensitiveLog(obj.RDSData) }),
+});
+
+/**
+ * @internal
+ */
+export const RedshiftDatabaseCredentialsFilterSensitiveLog = (obj: RedshiftDatabaseCredentials): any => ({
+ ...obj,
+ ...(obj.Password && { Password: SENSITIVE_STRING }),
+});
+
+/**
+ * @internal
+ */
+export const RedshiftDataSpecFilterSensitiveLog = (obj: RedshiftDataSpec): any => ({
+ ...obj,
+ ...(obj.DatabaseCredentials && {
+ DatabaseCredentials: RedshiftDatabaseCredentialsFilterSensitiveLog(obj.DatabaseCredentials),
+ }),
+});
+
+/**
+ * @internal
+ */
+export const CreateDataSourceFromRedshiftInputFilterSensitiveLog = (obj: CreateDataSourceFromRedshiftInput): any => ({
+ ...obj,
+ ...(obj.DataSpec && { DataSpec: RedshiftDataSpecFilterSensitiveLog(obj.DataSpec) }),
+});
diff --git a/codegen/sdk-codegen/aws-models/machine-learning.json b/codegen/sdk-codegen/aws-models/machine-learning.json
index 096d4758371eb..6c39e75e9b14a 100644
--- a/codegen/sdk-codegen/aws-models/machine-learning.json
+++ b/codegen/sdk-codegen/aws-models/machine-learning.json
@@ -4313,7 +4313,8 @@
"smithy.api#length": {
"min": 8,
"max": 128
- }
+ },
+ "smithy.api#sensitive": {}
}
},
"com.amazonaws.machinelearning#RDSDatabaseUsername": {
@@ -4594,7 +4595,8 @@
"smithy.api#length": {
"min": 8,
"max": 64
- }
+ },
+ "smithy.api#sensitive": {}
}
},
"com.amazonaws.machinelearning#RedshiftDatabaseUsername": {
@@ -5148,4 +5150,4 @@
"type": "float"
}
}
-}
\ No newline at end of file
+}
From 672708506bf6b4748142ed5126c1b788e8f47758 Mon Sep 17 00:00:00 2001
From: awstools
Date: Thu, 12 Oct 2023 18:24:08 +0000
Subject: [PATCH 22/35] feat(client-auto-scaling): Update the
NotificationMetadata field to only allow visible ascii characters. Add
paginators to DescribeInstanceRefreshes, DescribeLoadBalancers, and
DescribeLoadBalancerTargetGroups
---
.../DescribeInstanceRefreshesPaginator.ts | 50 +++++++
...scribeLoadBalancerTargetGroupsPaginator.ts | 50 +++++++
.../DescribeLoadBalancersPaginator.ts | 50 +++++++
.../src/pagination/index.ts | 13 +-
.../sdk-codegen/aws-models/auto-scaling.json | 136 ++++++++----------
5 files changed, 215 insertions(+), 84 deletions(-)
create mode 100644 clients/client-auto-scaling/src/pagination/DescribeInstanceRefreshesPaginator.ts
create mode 100644 clients/client-auto-scaling/src/pagination/DescribeLoadBalancerTargetGroupsPaginator.ts
create mode 100644 clients/client-auto-scaling/src/pagination/DescribeLoadBalancersPaginator.ts
diff --git a/clients/client-auto-scaling/src/pagination/DescribeInstanceRefreshesPaginator.ts b/clients/client-auto-scaling/src/pagination/DescribeInstanceRefreshesPaginator.ts
new file mode 100644
index 0000000000000..d465c206eeb81
--- /dev/null
+++ b/clients/client-auto-scaling/src/pagination/DescribeInstanceRefreshesPaginator.ts
@@ -0,0 +1,50 @@
+// smithy-typescript generated code
+import { Paginator } from "@smithy/types";
+
+import { AutoScalingClient } from "../AutoScalingClient";
+import {
+ DescribeInstanceRefreshesCommand,
+ DescribeInstanceRefreshesCommandInput,
+ DescribeInstanceRefreshesCommandOutput,
+} from "../commands/DescribeInstanceRefreshesCommand";
+import { AutoScalingPaginationConfiguration } from "./Interfaces";
+
+/**
+ * @internal
+ */
+const makePagedClientRequest = async (
+ client: AutoScalingClient,
+ input: DescribeInstanceRefreshesCommandInput,
+ ...args: any
+): Promise => {
+ // @ts-ignore
+ return await client.send(new DescribeInstanceRefreshesCommand(input), ...args);
+};
+/**
+ * @public
+ */
+export async function* paginateDescribeInstanceRefreshes(
+ config: AutoScalingPaginationConfiguration,
+ input: DescribeInstanceRefreshesCommandInput,
+ ...additionalArguments: any
+): Paginator {
+ // ToDo: replace with actual type instead of typeof input.NextToken
+ let token: typeof input.NextToken | undefined = config.startingToken || undefined;
+ let hasNext = true;
+ let page: DescribeInstanceRefreshesCommandOutput;
+ while (hasNext) {
+ input.NextToken = token;
+ input["MaxRecords"] = config.pageSize;
+ if (config.client instanceof AutoScalingClient) {
+ page = await makePagedClientRequest(config.client, input, ...additionalArguments);
+ } else {
+ throw new Error("Invalid client, expected AutoScaling | AutoScalingClient");
+ }
+ yield page;
+ const prevToken = token;
+ token = page.NextToken;
+ hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
+ }
+ // @ts-ignore
+ return undefined;
+}
diff --git a/clients/client-auto-scaling/src/pagination/DescribeLoadBalancerTargetGroupsPaginator.ts b/clients/client-auto-scaling/src/pagination/DescribeLoadBalancerTargetGroupsPaginator.ts
new file mode 100644
index 0000000000000..06f55ded42a18
--- /dev/null
+++ b/clients/client-auto-scaling/src/pagination/DescribeLoadBalancerTargetGroupsPaginator.ts
@@ -0,0 +1,50 @@
+// smithy-typescript generated code
+import { Paginator } from "@smithy/types";
+
+import { AutoScalingClient } from "../AutoScalingClient";
+import {
+ DescribeLoadBalancerTargetGroupsCommand,
+ DescribeLoadBalancerTargetGroupsCommandInput,
+ DescribeLoadBalancerTargetGroupsCommandOutput,
+} from "../commands/DescribeLoadBalancerTargetGroupsCommand";
+import { AutoScalingPaginationConfiguration } from "./Interfaces";
+
+/**
+ * @internal
+ */
+const makePagedClientRequest = async (
+ client: AutoScalingClient,
+ input: DescribeLoadBalancerTargetGroupsCommandInput,
+ ...args: any
+): Promise => {
+ // @ts-ignore
+ return await client.send(new DescribeLoadBalancerTargetGroupsCommand(input), ...args);
+};
+/**
+ * @public
+ */
+export async function* paginateDescribeLoadBalancerTargetGroups(
+ config: AutoScalingPaginationConfiguration,
+ input: DescribeLoadBalancerTargetGroupsCommandInput,
+ ...additionalArguments: any
+): Paginator {
+ // ToDo: replace with actual type instead of typeof input.NextToken
+ let token: typeof input.NextToken | undefined = config.startingToken || undefined;
+ let hasNext = true;
+ let page: DescribeLoadBalancerTargetGroupsCommandOutput;
+ while (hasNext) {
+ input.NextToken = token;
+ input["MaxRecords"] = config.pageSize;
+ if (config.client instanceof AutoScalingClient) {
+ page = await makePagedClientRequest(config.client, input, ...additionalArguments);
+ } else {
+ throw new Error("Invalid client, expected AutoScaling | AutoScalingClient");
+ }
+ yield page;
+ const prevToken = token;
+ token = page.NextToken;
+ hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
+ }
+ // @ts-ignore
+ return undefined;
+}
diff --git a/clients/client-auto-scaling/src/pagination/DescribeLoadBalancersPaginator.ts b/clients/client-auto-scaling/src/pagination/DescribeLoadBalancersPaginator.ts
new file mode 100644
index 0000000000000..0c06d5fa9a152
--- /dev/null
+++ b/clients/client-auto-scaling/src/pagination/DescribeLoadBalancersPaginator.ts
@@ -0,0 +1,50 @@
+// smithy-typescript generated code
+import { Paginator } from "@smithy/types";
+
+import { AutoScalingClient } from "../AutoScalingClient";
+import {
+ DescribeLoadBalancersCommand,
+ DescribeLoadBalancersCommandInput,
+ DescribeLoadBalancersCommandOutput,
+} from "../commands/DescribeLoadBalancersCommand";
+import { AutoScalingPaginationConfiguration } from "./Interfaces";
+
+/**
+ * @internal
+ */
+const makePagedClientRequest = async (
+ client: AutoScalingClient,
+ input: DescribeLoadBalancersCommandInput,
+ ...args: any
+): Promise => {
+ // @ts-ignore
+ return await client.send(new DescribeLoadBalancersCommand(input), ...args);
+};
+/**
+ * @public
+ */
+export async function* paginateDescribeLoadBalancers(
+ config: AutoScalingPaginationConfiguration,
+ input: DescribeLoadBalancersCommandInput,
+ ...additionalArguments: any
+): Paginator {
+ // ToDo: replace with actual type instead of typeof input.NextToken
+ let token: typeof input.NextToken | undefined = config.startingToken || undefined;
+ let hasNext = true;
+ let page: DescribeLoadBalancersCommandOutput;
+ while (hasNext) {
+ input.NextToken = token;
+ input["MaxRecords"] = config.pageSize;
+ if (config.client instanceof AutoScalingClient) {
+ page = await makePagedClientRequest(config.client, input, ...additionalArguments);
+ } else {
+ throw new Error("Invalid client, expected AutoScaling | AutoScalingClient");
+ }
+ yield page;
+ const prevToken = token;
+ token = page.NextToken;
+ hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
+ }
+ // @ts-ignore
+ return undefined;
+}
diff --git a/clients/client-auto-scaling/src/pagination/index.ts b/clients/client-auto-scaling/src/pagination/index.ts
index f5ef00f60c36a..f52d6cff4d28c 100644
--- a/clients/client-auto-scaling/src/pagination/index.ts
+++ b/clients/client-auto-scaling/src/pagination/index.ts
@@ -2,8 +2,14 @@ export * from "./DescribeAutoScalingGroupsPaginator";
export * from "./DescribeAutoScalingInstancesPaginator";
+export * from "./DescribeInstanceRefreshesPaginator";
+
export * from "./DescribeLaunchConfigurationsPaginator";
+export * from "./DescribeLoadBalancerTargetGroupsPaginator";
+
+export * from "./DescribeLoadBalancersPaginator";
+
export * from "./DescribeNotificationConfigurationsPaginator";
export * from "./DescribePoliciesPaginator";
@@ -11,11 +17,8 @@ export * from "./DescribePoliciesPaginator";
export * from "./DescribeScalingActivitiesPaginator";
export * from "./DescribeScheduledActionsPaginator";
-
+// smithy-typescript generated code
+export * from "./Interfaces";
export * from "./DescribeTagsPaginator";
-
export * from "./DescribeTrafficSourcesPaginator";
-
export * from "./DescribeWarmPoolPaginator";
-// smithy-typescript generated code
-export * from "./Interfaces";
diff --git a/codegen/sdk-codegen/aws-models/auto-scaling.json b/codegen/sdk-codegen/aws-models/auto-scaling.json
index ba5d5e912a2fb..18471997649a4 100644
--- a/codegen/sdk-codegen/aws-models/auto-scaling.json
+++ b/codegen/sdk-codegen/aws-models/auto-scaling.json
@@ -438,6 +438,16 @@
"smithy.api#httpError": 400
}
},
+ "com.amazonaws.autoscaling#AnyPrintableAsciiStringMaxLen4000": {
+ "type": "string",
+ "traits": {
+ "smithy.api#length": {
+ "min": 1,
+ "max": 4000
+ },
+ "smithy.api#pattern": "^[\\u0009\\u000A\\u000D\\u0020-\\u007e]+$"
+ }
+ },
"com.amazonaws.autoscaling#AsciiStringMaxLen255": {
"type": "string",
"traits": {
@@ -474,9 +484,7 @@
"title": "To attach an instance to an Auto Scaling group",
"documentation": "This example attaches the specified instance to the specified Auto Scaling group.",
"input": {
- "InstanceIds": [
- "i-93633f9b"
- ],
+ "InstanceIds": ["i-93633f9b"],
"AutoScalingGroupName": "my-auto-scaling-group"
}
}
@@ -580,9 +588,7 @@
"documentation": "This example attaches the specified load balancer to the specified Auto Scaling group.",
"input": {
"AutoScalingGroupName": "my-auto-scaling-group",
- "LoadBalancerNames": [
- "my-load-balancer"
- ]
+ "LoadBalancerNames": ["my-load-balancer"]
}
}
]
@@ -2965,9 +2971,7 @@
"input": {
"LaunchConfigurationName": "my-launch-config",
"ImageId": "ami-12345678",
- "SecurityGroups": [
- "sg-eb2af88e"
- ],
+ "SecurityGroups": ["sg-eb2af88e"],
"InstanceType": "m3.medium",
"IamInstanceProfile": "my-iam-role"
}
@@ -3697,9 +3701,7 @@
"title": "To describe an Auto Scaling group",
"documentation": "This example describes the specified Auto Scaling group.",
"input": {
- "AutoScalingGroupNames": [
- "my-auto-scaling-group"
- ]
+ "AutoScalingGroupNames": ["my-auto-scaling-group"]
},
"output": {
"AutoScalingGroups": [
@@ -3711,11 +3713,7 @@
"MaxSize": 5,
"DesiredCapacity": 2,
"DefaultCooldown": 300,
- "AvailabilityZones": [
- "us-west-2a",
- "us-west-2b",
- "us-west-2c"
- ],
+ "AvailabilityZones": ["us-west-2a", "us-west-2b", "us-west-2c"],
"LoadBalancerNames": [],
"TargetGroupARNs": [],
"HealthCheckType": "EC2",
@@ -3745,9 +3743,7 @@
"VPCZoneIdentifier": "subnet-5ea0c127,subnet-6194ea3b,subnet-c934b782",
"EnabledMetrics": [],
"Tags": [],
- "TerminationPolicies": [
- "Default"
- ],
+ "TerminationPolicies": ["Default"],
"NewInstancesProtectedFromScaleIn": false,
"ServiceLinkedRoleARN": "arn:aws:iam::123456789012:role/aws-service-role/autoscaling.amazonaws.com/AWSServiceRoleForAutoScaling",
"TrafficSources": []
@@ -3864,9 +3860,7 @@
"title": "To describe one or more Auto Scaling instances",
"documentation": "This example describes the specified Auto Scaling instance.",
"input": {
- "InstanceIds": [
- "i-05b4f7d5be44822a6"
- ]
+ "InstanceIds": ["i-05b4f7d5be44822a6"]
},
"output": {
"AutoScalingInstances": [
@@ -3975,7 +3969,12 @@
}
],
"traits": {
- "smithy.api#documentation": "Gets information about the instance refreshes for the specified Auto Scaling group.
\n This operation is part of the instance refresh\n feature in Amazon EC2 Auto Scaling, which helps you update instances in your Auto Scaling group\n after you make configuration changes.
\n To help you determine the status of an instance refresh, Amazon EC2 Auto Scaling returns information\n about the instance refreshes you previously initiated, including their status, start\n time, end time, the percentage of the instance refresh that is complete, and the number\n of instances remaining to update before the instance refresh is complete. If a rollback\n is initiated while an instance refresh is in progress, Amazon EC2 Auto Scaling also returns information\n about the rollback of the instance refresh.
"
+ "smithy.api#documentation": "Gets information about the instance refreshes for the specified Auto Scaling group.
\n This operation is part of the instance refresh\n feature in Amazon EC2 Auto Scaling, which helps you update instances in your Auto Scaling group\n after you make configuration changes.
\n To help you determine the status of an instance refresh, Amazon EC2 Auto Scaling returns information\n about the instance refreshes you previously initiated, including their status, start\n time, end time, the percentage of the instance refresh that is complete, and the number\n of instances remaining to update before the instance refresh is complete. If a rollback\n is initiated while an instance refresh is in progress, Amazon EC2 Auto Scaling also returns information\n about the rollback of the instance refresh.
",
+ "smithy.api#paginated": {
+ "inputToken": "NextToken",
+ "outputToken": "NextToken",
+ "pageSize": "MaxRecords"
+ }
}
},
"com.amazonaws.autoscaling#DescribeInstanceRefreshesAnswer": {
@@ -4048,9 +4047,7 @@
"title": "To describe Auto Scaling launch configurations",
"documentation": "This example describes the specified launch configuration.",
"input": {
- "LaunchConfigurationNames": [
- "my-launch-config"
- ]
+ "LaunchConfigurationNames": ["my-launch-config"]
},
"output": {
"LaunchConfigurations": [
@@ -4063,9 +4060,7 @@
"ImageId": "ami-043a5034",
"CreatedTime": "2014-05-07T17:39:28.599Z",
"BlockDeviceMappings": [],
- "SecurityGroups": [
- "sg-67ef0308"
- ],
+ "SecurityGroups": ["sg-67ef0308"],
"LaunchConfigurationName": "my-launch-config",
"InstanceType": "t1.micro",
"AssociatePublicIpAddress": true
@@ -4102,10 +4097,7 @@
"title": "To describe the available types of lifecycle hooks",
"documentation": "This example describes the available lifecycle hook types.",
"output": {
- "LifecycleHookTypes": [
- "autoscaling:EC2_INSTANCE_LAUNCHING",
- "autoscaling:EC2_INSTANCE_TERMINATING"
- ]
+ "LifecycleHookTypes": ["autoscaling:EC2_INSTANCE_LAUNCHING", "autoscaling:EC2_INSTANCE_TERMINATING"]
}
}
]
@@ -4225,7 +4217,12 @@
]
}
}
- ]
+ ],
+ "smithy.api#paginated": {
+ "inputToken": "NextToken",
+ "outputToken": "NextToken",
+ "pageSize": "MaxRecords"
+ }
}
},
"com.amazonaws.autoscaling#DescribeLoadBalancerTargetGroupsRequest": {
@@ -4309,7 +4306,12 @@
]
}
}
- ]
+ ],
+ "smithy.api#paginated": {
+ "inputToken": "NextToken",
+ "outputToken": "NextToken",
+ "pageSize": "MaxRecords"
+ }
}
},
"com.amazonaws.autoscaling#DescribeLoadBalancersRequest": {
@@ -4455,9 +4457,7 @@
"title": "To describe Auto Scaling notification configurations",
"documentation": "This example describes the notification configurations for the specified Auto Scaling group.",
"input": {
- "AutoScalingGroupNames": [
- "my-auto-scaling-group"
- ]
+ "AutoScalingGroupNames": ["my-auto-scaling-group"]
},
"output": {
"NotificationConfigurations": [
@@ -4872,9 +4872,7 @@
"input": {
"Filters": [
{
- "Values": [
- "my-auto-scaling-group"
- ],
+ "Values": ["my-auto-scaling-group"],
"Name": "auto-scaling-group"
}
]
@@ -5186,9 +5184,7 @@
"title": "To detach an instance from an Auto Scaling group",
"documentation": "This example detaches the specified instance from the specified Auto Scaling group.",
"input": {
- "InstanceIds": [
- "i-93633f9b"
- ],
+ "InstanceIds": ["i-93633f9b"],
"AutoScalingGroupName": "my-auto-scaling-group",
"ShouldDecrementDesiredCapacity": true
},
@@ -5319,9 +5315,7 @@
"documentation": "This example detaches the specified load balancer from the specified Auto Scaling group.",
"input": {
"AutoScalingGroupName": "my-auto-scaling-group",
- "LoadBalancerNames": [
- "my-load-balancer"
- ]
+ "LoadBalancerNames": ["my-load-balancer"]
}
}
]
@@ -5426,9 +5420,7 @@
"documentation": "This example disables collecting data for the GroupDesiredCapacity metric for the specified Auto Scaling group.",
"input": {
"AutoScalingGroupName": "my-auto-scaling-group",
- "Metrics": [
- "GroupDesiredCapacity"
- ]
+ "Metrics": ["GroupDesiredCapacity"]
}
}
]
@@ -5606,9 +5598,7 @@
"title": "To move instances into standby mode",
"documentation": "This example puts the specified instance into standby mode.",
"input": {
- "InstanceIds": [
- "i-93633f9b"
- ],
+ "InstanceIds": ["i-93633f9b"],
"AutoScalingGroupName": "my-auto-scaling-group",
"ShouldDecrementDesiredCapacity": true
},
@@ -5716,8 +5706,8 @@
"input": {
"AutoScalingGroupName": "my-auto-scaling-group",
"PolicyName": "my-step-scale-out-policy",
- "BreachThreshold": 50,
- "MetricValue": 59
+ "BreachThreshold": 50.0,
+ "MetricValue": 59.0
}
}
]
@@ -5779,9 +5769,7 @@
"title": "To move instances out of standby mode",
"documentation": "This example moves the specified instance out of standby mode.",
"input": {
- "InstanceIds": [
- "i-93633f9b"
- ],
+ "InstanceIds": ["i-93633f9b"],
"AutoScalingGroupName": "my-auto-scaling-group"
},
"output": {
@@ -6991,7 +6979,7 @@
}
},
"NotificationMetadata": {
- "target": "com.amazonaws.autoscaling#XmlStringMaxLen1023",
+ "target": "com.amazonaws.autoscaling#AnyPrintableAsciiStringMaxLen4000",
"traits": {
"smithy.api#documentation": "Additional information that is included any time Amazon EC2 Auto Scaling sends a message to the\n notification target.
"
}
@@ -7049,7 +7037,7 @@
}
},
"NotificationMetadata": {
- "target": "com.amazonaws.autoscaling#XmlStringMaxLen1023",
+ "target": "com.amazonaws.autoscaling#AnyPrintableAsciiStringMaxLen4000",
"traits": {
"smithy.api#documentation": "Additional information that you want to include any time Amazon EC2 Auto Scaling sends a message to\n the notification target.
"
}
@@ -8440,7 +8428,7 @@
}
},
"NotificationMetadata": {
- "target": "com.amazonaws.autoscaling#XmlStringMaxLen1023",
+ "target": "com.amazonaws.autoscaling#AnyPrintableAsciiStringMaxLen4000",
"traits": {
"smithy.api#documentation": "Additional information that you want to include any time Amazon EC2 Auto Scaling sends a message to\n the notification target.
"
}
@@ -8487,9 +8475,7 @@
"input": {
"AutoScalingGroupName": "my-auto-scaling-group",
"TopicARN": "arn:aws:sns:us-west-2:123456789012:my-sns-topic",
- "NotificationTypes": [
- "autoscaling:TEST_NOTIFICATION"
- ]
+ "NotificationTypes": ["autoscaling:TEST_NOTIFICATION"]
}
}
]
@@ -8551,7 +8537,7 @@
"PolicyName": "alb1000-target-tracking-scaling-policy",
"PolicyType": "TargetTrackingScaling",
"TargetTrackingConfiguration": {
- "TargetValue": 1000,
+ "TargetValue": 1000.0,
"PredefinedMetricSpecification": {
"PredefinedMetricType": "ALBRequestCountPerTarget",
"ResourceLabel": "app/my-alb/778d41231b141a0f/targetgroup/my-alb-target-group/943f017f100becff"
@@ -9063,9 +9049,7 @@
"documentation": "This example resumes the specified suspended scaling process for the specified Auto Scaling group.",
"input": {
"AutoScalingGroupName": "my-auto-scaling-group",
- "ScalingProcesses": [
- "AlarmNotification"
- ]
+ "ScalingProcesses": ["AlarmNotification"]
}
}
]
@@ -9741,9 +9725,7 @@
"title": "To enable instance protection for an instance",
"documentation": "This example enables instance protection for the specified instance.",
"input": {
- "InstanceIds": [
- "i-93633f9b"
- ],
+ "InstanceIds": ["i-93633f9b"],
"AutoScalingGroupName": "my-auto-scaling-group",
"ProtectedFromScaleIn": true
}
@@ -9861,9 +9843,7 @@
"Preferences": {
"AutoRollback": true,
"AlarmSpecification": {
- "Alarms": [
- "my-alarm"
- ]
+ "Alarms": ["my-alarm"]
},
"InstanceWarmup": 200,
"MinHealthyPercentage": 90
@@ -9974,9 +9954,7 @@
"documentation": "This example suspends the specified scaling process for the specified Auto Scaling group.",
"input": {
"AutoScalingGroupName": "my-auto-scaling-group",
- "ScalingProcesses": [
- "AlarmNotification"
- ]
+ "ScalingProcesses": ["AlarmNotification"]
}
}
]
@@ -10790,4 +10768,4 @@
}
}
}
-}
\ No newline at end of file
+}
From 2bb63a023100d2133b8050c1eb528f04444bd576 Mon Sep 17 00:00:00 2001
From: awstools
Date: Thu, 12 Oct 2023 18:24:08 +0000
Subject: [PATCH 23/35] feat(client-lambda): Adds support for Lambda functions
to access Dual-Stack subnets over IPv6, via an opt-in flag in CreateFunction
and UpdateFunctionConfiguration APIs
---
.../src/commands/CreateFunctionCommand.ts | 2 ++
.../src/commands/GetFunctionCommand.ts | 1 +
.../GetFunctionConfigurationCommand.ts | 1 +
.../src/commands/ListFunctionsCommand.ts | 1 +
.../commands/ListVersionsByFunctionCommand.ts | 1 +
.../src/commands/PublishVersionCommand.ts | 1 +
.../src/commands/UpdateFunctionCodeCommand.ts | 1 +
.../UpdateFunctionConfigurationCommand.ts | 2 ++
clients/client-lambda/src/models/models_0.ts | 12 +++++++++++
codegen/sdk-codegen/aws-models/lambda.json | 21 ++++++++++++++++---
10 files changed, 40 insertions(+), 3 deletions(-)
diff --git a/clients/client-lambda/src/commands/CreateFunctionCommand.ts b/clients/client-lambda/src/commands/CreateFunctionCommand.ts
index 36072bb0d46a0..64e9449785b84 100644
--- a/clients/client-lambda/src/commands/CreateFunctionCommand.ts
+++ b/clients/client-lambda/src/commands/CreateFunctionCommand.ts
@@ -109,6 +109,7 @@ export interface CreateFunctionCommandOutput extends FunctionConfiguration, __Me
* SecurityGroupIds: [ // SecurityGroupIds
* "STRING_VALUE",
* ],
+ * Ipv6AllowedForDualStack: true || false,
* },
* PackageType: "Zip" || "Image",
* DeadLetterConfig: { // DeadLetterConfig
@@ -178,6 +179,7 @@ export interface CreateFunctionCommandOutput extends FunctionConfiguration, __Me
* // "STRING_VALUE",
* // ],
* // VpcId: "STRING_VALUE",
+ * // Ipv6AllowedForDualStack: true || false,
* // },
* // DeadLetterConfig: { // DeadLetterConfig
* // TargetArn: "STRING_VALUE",
diff --git a/clients/client-lambda/src/commands/GetFunctionCommand.ts b/clients/client-lambda/src/commands/GetFunctionCommand.ts
index ee35d1f383ea6..25fa163aa099f 100644
--- a/clients/client-lambda/src/commands/GetFunctionCommand.ts
+++ b/clients/client-lambda/src/commands/GetFunctionCommand.ts
@@ -74,6 +74,7 @@ export interface GetFunctionCommandOutput extends GetFunctionResponse, __Metadat
* // "STRING_VALUE",
* // ],
* // VpcId: "STRING_VALUE",
+ * // Ipv6AllowedForDualStack: true || false,
* // },
* // DeadLetterConfig: { // DeadLetterConfig
* // TargetArn: "STRING_VALUE",
diff --git a/clients/client-lambda/src/commands/GetFunctionConfigurationCommand.ts b/clients/client-lambda/src/commands/GetFunctionConfigurationCommand.ts
index 26b8f87b4e5c8..495d6eba0607f 100644
--- a/clients/client-lambda/src/commands/GetFunctionConfigurationCommand.ts
+++ b/clients/client-lambda/src/commands/GetFunctionConfigurationCommand.ts
@@ -77,6 +77,7 @@ export interface GetFunctionConfigurationCommandOutput extends FunctionConfigura
* // "STRING_VALUE",
* // ],
* // VpcId: "STRING_VALUE",
+ * // Ipv6AllowedForDualStack: true || false,
* // },
* // DeadLetterConfig: { // DeadLetterConfig
* // TargetArn: "STRING_VALUE",
diff --git a/clients/client-lambda/src/commands/ListFunctionsCommand.ts b/clients/client-lambda/src/commands/ListFunctionsCommand.ts
index 1b38644aa41b0..b6aff43ea7b1e 100644
--- a/clients/client-lambda/src/commands/ListFunctionsCommand.ts
+++ b/clients/client-lambda/src/commands/ListFunctionsCommand.ts
@@ -88,6 +88,7 @@ export interface ListFunctionsCommandOutput extends ListFunctionsResponse, __Met
* // "STRING_VALUE",
* // ],
* // VpcId: "STRING_VALUE",
+ * // Ipv6AllowedForDualStack: true || false,
* // },
* // DeadLetterConfig: { // DeadLetterConfig
* // TargetArn: "STRING_VALUE",
diff --git a/clients/client-lambda/src/commands/ListVersionsByFunctionCommand.ts b/clients/client-lambda/src/commands/ListVersionsByFunctionCommand.ts
index c1d66e033d1c3..d7362e076e2eb 100644
--- a/clients/client-lambda/src/commands/ListVersionsByFunctionCommand.ts
+++ b/clients/client-lambda/src/commands/ListVersionsByFunctionCommand.ts
@@ -80,6 +80,7 @@ export interface ListVersionsByFunctionCommandOutput extends ListVersionsByFunct
* // "STRING_VALUE",
* // ],
* // VpcId: "STRING_VALUE",
+ * // Ipv6AllowedForDualStack: true || false,
* // },
* // DeadLetterConfig: { // DeadLetterConfig
* // TargetArn: "STRING_VALUE",
diff --git a/clients/client-lambda/src/commands/PublishVersionCommand.ts b/clients/client-lambda/src/commands/PublishVersionCommand.ts
index f5b87ac438063..f897ecf441c00 100644
--- a/clients/client-lambda/src/commands/PublishVersionCommand.ts
+++ b/clients/client-lambda/src/commands/PublishVersionCommand.ts
@@ -83,6 +83,7 @@ export interface PublishVersionCommandOutput extends FunctionConfiguration, __Me
* // "STRING_VALUE",
* // ],
* // VpcId: "STRING_VALUE",
+ * // Ipv6AllowedForDualStack: true || false,
* // },
* // DeadLetterConfig: { // DeadLetterConfig
* // TargetArn: "STRING_VALUE",
diff --git a/clients/client-lambda/src/commands/UpdateFunctionCodeCommand.ts b/clients/client-lambda/src/commands/UpdateFunctionCodeCommand.ts
index 09be8f1194a47..664ae960fb4c0 100644
--- a/clients/client-lambda/src/commands/UpdateFunctionCodeCommand.ts
+++ b/clients/client-lambda/src/commands/UpdateFunctionCodeCommand.ts
@@ -101,6 +101,7 @@ export interface UpdateFunctionCodeCommandOutput extends FunctionConfiguration,
* // "STRING_VALUE",
* // ],
* // VpcId: "STRING_VALUE",
+ * // Ipv6AllowedForDualStack: true || false,
* // },
* // DeadLetterConfig: { // DeadLetterConfig
* // TargetArn: "STRING_VALUE",
diff --git a/clients/client-lambda/src/commands/UpdateFunctionConfigurationCommand.ts b/clients/client-lambda/src/commands/UpdateFunctionConfigurationCommand.ts
index 4f12ad8c0edca..a65100ab744fb 100644
--- a/clients/client-lambda/src/commands/UpdateFunctionConfigurationCommand.ts
+++ b/clients/client-lambda/src/commands/UpdateFunctionConfigurationCommand.ts
@@ -77,6 +77,7 @@ export interface UpdateFunctionConfigurationCommandOutput extends FunctionConfig
* SecurityGroupIds: [ // SecurityGroupIds
* "STRING_VALUE",
* ],
+ * Ipv6AllowedForDualStack: true || false,
* },
* Environment: { // Environment
* Variables: { // EnvironmentVariables
@@ -140,6 +141,7 @@ export interface UpdateFunctionConfigurationCommandOutput extends FunctionConfig
* // "STRING_VALUE",
* // ],
* // VpcId: "STRING_VALUE",
+ * // Ipv6AllowedForDualStack: true || false,
* // },
* // DeadLetterConfig: { // DeadLetterConfig
* // TargetArn: "STRING_VALUE",
diff --git a/clients/client-lambda/src/models/models_0.ts b/clients/client-lambda/src/models/models_0.ts
index a3dd8cb743c16..1dfb6b76bfae5 100644
--- a/clients/client-lambda/src/models/models_0.ts
+++ b/clients/client-lambda/src/models/models_0.ts
@@ -1744,6 +1744,12 @@ export interface VpcConfig {
* A list of VPC security group IDs.
*/
SecurityGroupIds?: string[];
+
+ /**
+ * @public
+ * Allows outbound IPv6 traffic on VPC functions that are connected to dual-stack subnets.
+ */
+ Ipv6AllowedForDualStack?: boolean;
}
/**
@@ -2236,6 +2242,12 @@ export interface VpcConfigResponse {
* The ID of the VPC.
*/
VpcId?: string;
+
+ /**
+ * @public
+ * Allows outbound IPv6 traffic on VPC functions that are connected to dual-stack subnets.
+ */
+ Ipv6AllowedForDualStack?: boolean;
}
/**
diff --git a/codegen/sdk-codegen/aws-models/lambda.json b/codegen/sdk-codegen/aws-models/lambda.json
index b3707ee068adb..537bcc6dade70 100644
--- a/codegen/sdk-codegen/aws-models/lambda.json
+++ b/codegen/sdk-codegen/aws-models/lambda.json
@@ -8546,6 +8546,9 @@
}
}
},
+ "com.amazonaws.lambda#NullableBoolean": {
+ "type": "boolean"
+ },
"com.amazonaws.lambda#OnFailure": {
"type": "structure",
"members": {
@@ -11735,6 +11738,12 @@
"traits": {
"smithy.api#documentation": "A list of VPC security group IDs.
"
}
+ },
+ "Ipv6AllowedForDualStack": {
+ "target": "com.amazonaws.lambda#NullableBoolean",
+ "traits": {
+ "smithy.api#documentation": "Allows outbound IPv6 traffic on VPC functions that are connected to dual-stack subnets.
"
+ }
}
},
"traits": {
@@ -11761,6 +11770,12 @@
"traits": {
"smithy.api#documentation": "The ID of the VPC.
"
}
+ },
+ "Ipv6AllowedForDualStack": {
+ "target": "com.amazonaws.lambda#NullableBoolean",
+ "traits": {
+ "smithy.api#documentation": "Allows outbound IPv6 traffic on VPC functions that are connected to dual-stack subnets.
"
+ }
}
},
"traits": {
@@ -11775,8 +11790,8 @@
"traits": {
"smithy.api#default": 0,
"smithy.api#range": {
- "min": 0,
- "max": 1
+ "min": 0.0,
+ "max": 1.0
}
}
},
@@ -11790,4 +11805,4 @@
}
}
}
-}
\ No newline at end of file
+}
From 8153a417b837b9c38780840f61aad22b325e7bb1 Mon Sep 17 00:00:00 2001
From: awstools
Date: Thu, 12 Oct 2023 18:24:08 +0000
Subject: [PATCH 24/35] docs(client-workspaces): Updated the CreateWorkspaces
action documentation to clarify that the PCoIP protocol is only available for
Windows bundles.
---
.../src/commands/CreateWorkspacesCommand.ts | 15 +++++++++++----
codegen/sdk-codegen/aws-models/workspaces.json | 2 +-
2 files changed, 12 insertions(+), 5 deletions(-)
diff --git a/clients/client-workspaces/src/commands/CreateWorkspacesCommand.ts b/clients/client-workspaces/src/commands/CreateWorkspacesCommand.ts
index cf85c3f1d1902..1ae5b937798f1 100644
--- a/clients/client-workspaces/src/commands/CreateWorkspacesCommand.ts
+++ b/clients/client-workspaces/src/commands/CreateWorkspacesCommand.ts
@@ -40,10 +40,17 @@ export interface CreateWorkspacesCommandOutput extends CreateWorkspacesResult, _
* Creates one or more WorkSpaces.
* This operation is asynchronous and returns before the WorkSpaces are created.
*
- * The MANUAL
running mode value is only supported by Amazon WorkSpaces
- * Core. Contact your account team to be allow-listed to use this value. For more
- * information, see Amazon WorkSpaces
- * Core .
+ *
+ *
+ * The MANUAL
running mode value is only supported by Amazon WorkSpaces
+ * Core. Contact your account team to be allow-listed to use this value. For more
+ * information, see Amazon WorkSpaces
+ * Core .
+ *
+ *
+ * PCoIP is only available for Windows bundles.
+ *
+ *
*
* @example
* Use a bare-bones client and the command you need to make an API call.
diff --git a/codegen/sdk-codegen/aws-models/workspaces.json b/codegen/sdk-codegen/aws-models/workspaces.json
index cee77ae96d89b..37215f572b0ac 100644
--- a/codegen/sdk-codegen/aws-models/workspaces.json
+++ b/codegen/sdk-codegen/aws-models/workspaces.json
@@ -2089,7 +2089,7 @@
}
],
"traits": {
- "smithy.api#documentation": "Creates one or more WorkSpaces.
\n This operation is asynchronous and returns before the WorkSpaces are created.
\n \n The MANUAL
running mode value is only supported by Amazon WorkSpaces\n Core. Contact your account team to be allow-listed to use this value. For more\n information, see Amazon WorkSpaces\n Core .
\n "
+ "smithy.api#documentation": "Creates one or more WorkSpaces.
\n This operation is asynchronous and returns before the WorkSpaces are created.
\n \n \n \n The MANUAL
running mode value is only supported by Amazon WorkSpaces\n Core. Contact your account team to be allow-listed to use this value. For more\n information, see Amazon WorkSpaces\n Core .
\n \n \n PCoIP is only available for Windows bundles.
\n \n \n "
}
},
"com.amazonaws.workspaces#CreateWorkspacesRequest": {
From 8368f0f6cae11b63de62a9e1bac9db50514b1e0c Mon Sep 17 00:00:00 2001
From: awstools
Date: Thu, 12 Oct 2023 18:24:09 +0000
Subject: [PATCH 25/35] docs(client-elastic-load-balancing-v2): This release
enables routing policies with Availability Zone affinity for Network Load
Balancers.
---
.../src/commands/SetSubnetsCommand.ts | 4 +-
.../src/models/models_0.ts | 19 ++++
.../aws-models/elastic-load-balancing-v2.json | 88 ++++++-------------
3 files changed, 46 insertions(+), 65 deletions(-)
diff --git a/clients/client-elastic-load-balancing-v2/src/commands/SetSubnetsCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/SetSubnetsCommand.ts
index 87b101774a036..388611369ff25 100644
--- a/clients/client-elastic-load-balancing-v2/src/commands/SetSubnetsCommand.ts
+++ b/clients/client-elastic-load-balancing-v2/src/commands/SetSubnetsCommand.ts
@@ -42,9 +42,9 @@ export interface SetSubnetsCommandOutput extends SetSubnetsOutput, __MetadataBea
/**
* @public
* Enables the Availability Zones for the specified public subnets for the specified
- * Application Load Balancer or Network Load Balancer. The specified subnets replace the
+ * Application Load Balancer, Network Load Balancer or Gateway Load Balancer. The specified subnets replace the
* previously enabled subnets.
- * When you specify subnets for a Network Load Balancer, you must include all subnets that
+ *
When you specify subnets for a Network Load Balancer, or Gateway Load Balancer you must include all subnets that
* were enabled previously, with their existing configurations, plus any additional
* subnets.
* @example
diff --git a/clients/client-elastic-load-balancing-v2/src/models/models_0.ts b/clients/client-elastic-load-balancing-v2/src/models/models_0.ts
index 263788b2b1792..12ed91a13464c 100644
--- a/clients/client-elastic-load-balancing-v2/src/models/models_0.ts
+++ b/clients/client-elastic-load-balancing-v2/src/models/models_0.ts
@@ -3183,6 +3183,17 @@ export interface LoadBalancerAttribute {
* default is false
.
*
*
+ * The following attributes are supported by only Network Load Balancers:
+ *
+ *
+ *
+ * dns_record.client_routing_policy
- Indicates how traffic is
+ * distributed among the load balancer Availability Zones. The possible values are
+ * availability_zone_affinity
with 100 percent zonal affinity,
+ * partial_availability_zone_affinity
with 85 percent zonal affinity,
+ * and any_availability_zone
with 0 percent zonal affinity.
+ *
+ *
*/
Key?: string;
@@ -4424,6 +4435,8 @@ export interface SetSubnetsInput {
* Zones.
* [Network Load Balancers] You can specify subnets from one or more Availability
* Zones.
+ * [Gateway Load Balancers] You can specify subnets from one or more Availability
+ * Zones.
*/
Subnets?: string[];
@@ -4441,6 +4454,8 @@ export interface SetSubnetsInput {
* internet-facing load balancer. For internal load balancers, you can specify one private IP
* address per subnet from the IPv4 range of the subnet. For internet-facing load balancer, you
* can specify one IPv6 address per subnet.
+ * [Gateway Load Balancers] You can specify subnets from one or more Availability
+ * Zones.
*/
SubnetMappings?: SubnetMapping[];
@@ -4450,6 +4465,9 @@ export interface SetSubnetsInput {
* balancer. The possible values are ipv4
(for IPv4 addresses) and
* dualstack
(for IPv4 and IPv6 addresses). You can’t specify
* dualstack
for a load balancer with a UDP or TCP_UDP listener.
+ * [Gateway Load Balancers] The type of IP addresses used by the subnets for your load
+ * balancer. The possible values are ipv4
(for IPv4 addresses) and
+ * dualstack
(for IPv4 and IPv6 addresses).
*/
IpAddressType?: IpAddressType | string;
}
@@ -4467,6 +4485,7 @@ export interface SetSubnetsOutput {
/**
* @public
* [Network Load Balancers] The IP address type.
+ * [Gateway Load Balancers] The IP address type.
*/
IpAddressType?: IpAddressType | string;
}
diff --git a/codegen/sdk-codegen/aws-models/elastic-load-balancing-v2.json b/codegen/sdk-codegen/aws-models/elastic-load-balancing-v2.json
index 644ba276f3aaf..607750bd621ec 100644
--- a/codegen/sdk-codegen/aws-models/elastic-load-balancing-v2.json
+++ b/codegen/sdk-codegen/aws-models/elastic-load-balancing-v2.json
@@ -970,10 +970,7 @@
"documentation": "This example creates an Internet-facing load balancer and enables the Availability Zones for the specified subnets.",
"input": {
"Name": "my-load-balancer",
- "Subnets": [
- "subnet-b7d581c0",
- "subnet-8360a9e7"
- ]
+ "Subnets": ["subnet-b7d581c0", "subnet-8360a9e7"]
},
"output": {
"LoadBalancers": [
@@ -984,9 +981,7 @@
"Code": "provisioning"
},
"DNSName": "my-load-balancer-424835706.us-west-2.elb.amazonaws.com",
- "SecurityGroups": [
- "sg-5943793c"
- ],
+ "SecurityGroups": ["sg-5943793c"],
"LoadBalancerName": "my-load-balancer",
"CreatedTime": "2016-03-25T21:26:12.920Z",
"Scheme": "internet-facing",
@@ -1152,9 +1147,7 @@
"Conditions": [
{
"Field": "path-pattern",
- "Values": [
- "/img/*"
- ]
+ "Values": ["/img/*"]
}
],
"Priority": 10,
@@ -1172,9 +1165,7 @@
"Conditions": [
{
"Field": "path-pattern",
- "Values": [
- "/img/*"
- ]
+ "Values": ["/img/*"]
}
],
"RuleArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener-rule/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2/9683b2d02a6cabee",
@@ -2053,9 +2044,7 @@
"Code": "active"
},
"DNSName": "my-load-balancer-424835706.us-west-2.elb.amazonaws.com",
- "SecurityGroups": [
- "sg-5943793c"
- ],
+ "SecurityGroups": ["sg-5943793c"],
"LoadBalancerName": "my-load-balancer",
"CreatedTime": "2016-03-25T21:26:12.920Z",
"Scheme": "internet-facing",
@@ -2081,9 +2070,7 @@
"outputToken": "NextMarker",
"items": "LoadBalancers"
},
- "smithy.api#suppress": [
- "WaitableTraitInvalidErrorType"
- ],
+ "smithy.api#suppress": ["WaitableTraitInvalidErrorType"],
"smithy.waiters#waitable": {
"LoadBalancerAvailable": {
"acceptors": [
@@ -2246,9 +2233,7 @@
"Conditions": [
{
"Field": "path-pattern",
- "Values": [
- "/img/*"
- ]
+ "Values": ["/img/*"]
}
],
"RuleArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener-rule/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2/9683b2d02a6cabee",
@@ -2338,18 +2323,12 @@
"title": "To describe a policy used for SSL negotiation",
"documentation": "This example describes the specified policy used for SSL negotiation.",
"input": {
- "Names": [
- "ELBSecurityPolicy-2015-05"
- ]
+ "Names": ["ELBSecurityPolicy-2015-05"]
},
"output": {
"SslPolicies": [
{
- "SslProtocols": [
- "TLSv1",
- "TLSv1.1",
- "TLSv1.2"
- ],
+ "SslProtocols": ["TLSv1", "TLSv1.1", "TLSv1.2"],
"Ciphers": [
{
"Priority": 1,
@@ -2819,9 +2798,7 @@
}
}
],
- "smithy.api#suppress": [
- "WaitableTraitInvalidErrorType"
- ],
+ "smithy.api#suppress": ["WaitableTraitInvalidErrorType"],
"smithy.waiters#waitable": {
"TargetDeregistered": {
"acceptors": [
@@ -3087,6 +3064,7 @@
"arnNamespace": "elasticloadbalancing",
"cloudFormationName": "ElasticLoadBalancingV2",
"cloudTrailEventSource": "elasticloadbalancingv2.amazonaws.com",
+ "docId": "elasticloadbalancingv2-2015-12-01",
"endpointPrefix": "elasticloadbalancing"
},
"aws.auth#sigv4": {
@@ -4731,7 +4709,7 @@
"Key": {
"target": "com.amazonaws.elasticloadbalancingv2#LoadBalancerAttributeKey",
"traits": {
- "smithy.api#documentation": "The name of the attribute.
\n The following attributes are supported by all load balancers:
\n \n \n \n deletion_protection.enabled
- Indicates whether deletion protection is\n enabled. The value is true
or false
. The default is\n false
.
\n \n \n \n load_balancing.cross_zone.enabled
- Indicates whether cross-zone load\n balancing is enabled. The possible values are true
and false
.\n The default for Network Load Balancers and Gateway Load Balancers is false
. \n The default for Application Load Balancers is true
, and cannot be changed.
\n \n \n The following attributes are supported by both Application Load Balancers and Network Load\n Balancers:
\n \n \n \n access_logs.s3.enabled
- Indicates whether access logs are enabled. The\n value is true
or false
. The default is\n false
.
\n \n \n \n access_logs.s3.bucket
- The name of the S3 bucket for the access logs.\n This attribute is required if access logs are enabled. The bucket must exist in the same\n region as the load balancer and have a bucket policy that grants Elastic Load Balancing\n permissions to write to the bucket.
\n \n \n \n access_logs.s3.prefix
- The prefix for the location in the S3 bucket for the\n access logs.
\n \n \n \n ipv6.deny_all_igw_traffic
- Blocks internet gateway (IGW) access to the\n load balancer. It is set to false
for internet-facing load balancers and\n true
for internal load balancers, preventing unintended access to your\n internal load balancer through an internet gateway.
\n \n \n The following attributes are supported by only Application Load Balancers:
\n \n \n \n idle_timeout.timeout_seconds
- The idle timeout value, in seconds. The\n valid range is 1-4000 seconds. The default is 60 seconds.
\n \n \n \n routing.http.desync_mitigation_mode
- Determines how the load balancer\n handles requests that might pose a security risk to your application. The possible values\n are monitor
, defensive
, and strictest
. The default\n is defensive
.
\n \n \n \n routing.http.drop_invalid_header_fields.enabled
- Indicates whether HTTP\n headers with invalid header fields are removed by the load balancer (true
) or\n routed to targets (false
). The default is false
.
\n \n \n \n routing.http.preserve_host_header.enabled
- Indicates whether the\n Application Load Balancer should preserve the Host
header in the HTTP request\n and send it to the target without any change. The possible values are true
\n and false
. The default is false
.
\n \n \n \n routing.http.x_amzn_tls_version_and_cipher_suite.enabled
- Indicates\n whether the two headers (x-amzn-tls-version
and\n x-amzn-tls-cipher-suite
), which contain information about the negotiated\n TLS version and cipher suite, are added to the client request before sending it to the\n target. The x-amzn-tls-version
header has information about the TLS protocol\n version negotiated with the client, and the x-amzn-tls-cipher-suite
header\n has information about the cipher suite negotiated with the client. Both headers are in\n OpenSSL format. The possible values for the attribute are true
and\n false
. The default is false
.
\n \n \n \n routing.http.xff_client_port.enabled
- Indicates whether the\n X-Forwarded-For
header should preserve the source port that the client used\n to connect to the load balancer. The possible values are true
and\n false
. The default is false
.
\n \n \n \n routing.http.xff_header_processing.mode
- Enables you to modify,\n preserve, or remove the X-Forwarded-For
header in the HTTP request before the\n Application Load Balancer sends the request to the target. The possible values are\n append
, preserve
, and remove
. The default is\n append
.
\n \n \n If the value is append
, the Application Load Balancer adds the client\n IP address (of the last hop) to the X-Forwarded-For
header in the HTTP\n request before it sends it to targets.
\n \n \n If the value is preserve
the Application Load Balancer preserves the\n X-Forwarded-For
header in the HTTP request, and sends it to targets\n without any change.
\n \n \n If the value is remove
, the Application Load Balancer removes the\n X-Forwarded-For
header in the HTTP request before it sends it to\n targets.
\n \n \n \n \n \n routing.http2.enabled
- Indicates whether HTTP/2 is enabled. The possible\n values are true
and false
. The default is true
.\n Elastic Load Balancing requires that message header names contain only alphanumeric\n characters and hyphens.
\n \n \n \n waf.fail_open.enabled
- Indicates whether to allow a WAF-enabled load\n balancer to route requests to targets if it is unable to forward the request to Amazon Web Services WAF. The possible values are true
and false
. The\n default is false
.
\n \n "
+ "smithy.api#documentation": "The name of the attribute.
\n The following attributes are supported by all load balancers:
\n \n \n \n deletion_protection.enabled
- Indicates whether deletion protection is\n enabled. The value is true
or false
. The default is\n false
.
\n \n \n \n load_balancing.cross_zone.enabled
- Indicates whether cross-zone load\n balancing is enabled. The possible values are true
and false
.\n The default for Network Load Balancers and Gateway Load Balancers is false
. \n The default for Application Load Balancers is true
, and cannot be changed.
\n \n \n The following attributes are supported by both Application Load Balancers and Network Load\n Balancers:
\n \n \n \n access_logs.s3.enabled
- Indicates whether access logs are enabled. The\n value is true
or false
. The default is\n false
.
\n \n \n \n access_logs.s3.bucket
- The name of the S3 bucket for the access logs.\n This attribute is required if access logs are enabled. The bucket must exist in the same\n region as the load balancer and have a bucket policy that grants Elastic Load Balancing\n permissions to write to the bucket.
\n \n \n \n access_logs.s3.prefix
- The prefix for the location in the S3 bucket for the\n access logs.
\n \n \n \n ipv6.deny_all_igw_traffic
- Blocks internet gateway (IGW) access to the\n load balancer. It is set to false
for internet-facing load balancers and\n true
for internal load balancers, preventing unintended access to your\n internal load balancer through an internet gateway.
\n \n \n The following attributes are supported by only Application Load Balancers:
\n \n \n \n idle_timeout.timeout_seconds
- The idle timeout value, in seconds. The\n valid range is 1-4000 seconds. The default is 60 seconds.
\n \n \n \n routing.http.desync_mitigation_mode
- Determines how the load balancer\n handles requests that might pose a security risk to your application. The possible values\n are monitor
, defensive
, and strictest
. The default\n is defensive
.
\n \n \n \n routing.http.drop_invalid_header_fields.enabled
- Indicates whether HTTP\n headers with invalid header fields are removed by the load balancer (true
) or\n routed to targets (false
). The default is false
.
\n \n \n \n routing.http.preserve_host_header.enabled
- Indicates whether the\n Application Load Balancer should preserve the Host
header in the HTTP request\n and send it to the target without any change. The possible values are true
\n and false
. The default is false
.
\n \n \n \n routing.http.x_amzn_tls_version_and_cipher_suite.enabled
- Indicates\n whether the two headers (x-amzn-tls-version
and\n x-amzn-tls-cipher-suite
), which contain information about the negotiated\n TLS version and cipher suite, are added to the client request before sending it to the\n target. The x-amzn-tls-version
header has information about the TLS protocol\n version negotiated with the client, and the x-amzn-tls-cipher-suite
header\n has information about the cipher suite negotiated with the client. Both headers are in\n OpenSSL format. The possible values for the attribute are true
and\n false
. The default is false
.
\n \n \n \n routing.http.xff_client_port.enabled
- Indicates whether the\n X-Forwarded-For
header should preserve the source port that the client used\n to connect to the load balancer. The possible values are true
and\n false
. The default is false
.
\n \n \n \n routing.http.xff_header_processing.mode
- Enables you to modify,\n preserve, or remove the X-Forwarded-For
header in the HTTP request before the\n Application Load Balancer sends the request to the target. The possible values are\n append
, preserve
, and remove
. The default is\n append
.
\n \n \n If the value is append
, the Application Load Balancer adds the client\n IP address (of the last hop) to the X-Forwarded-For
header in the HTTP\n request before it sends it to targets.
\n \n \n If the value is preserve
the Application Load Balancer preserves the\n X-Forwarded-For
header in the HTTP request, and sends it to targets\n without any change.
\n \n \n If the value is remove
, the Application Load Balancer removes the\n X-Forwarded-For
header in the HTTP request before it sends it to\n targets.
\n \n \n \n \n \n routing.http2.enabled
- Indicates whether HTTP/2 is enabled. The possible\n values are true
and false
. The default is true
.\n Elastic Load Balancing requires that message header names contain only alphanumeric\n characters and hyphens.
\n \n \n \n waf.fail_open.enabled
- Indicates whether to allow a WAF-enabled load\n balancer to route requests to targets if it is unable to forward the request to Amazon Web Services WAF. The possible values are true
and false
. The\n default is false
.
\n \n \n The following attributes are supported by only Network Load Balancers:
\n \n \n \n dns_record.client_routing_policy
- Indicates how traffic is \n distributed among the load balancer Availability Zones. The possible values are \n availability_zone_affinity
with 100 percent zonal affinity, \n partial_availability_zone_affinity
with 85 percent zonal affinity, \n and any_availability_zone
with 0 percent zonal affinity.
\n \n "
}
},
"Value": {
@@ -5233,9 +5211,7 @@
"Conditions": [
{
"Field": "path-pattern",
- "Values": [
- "/images/*"
- ]
+ "Values": ["/images/*"]
}
]
},
@@ -5246,9 +5222,7 @@
"Conditions": [
{
"Field": "path-pattern",
- "Values": [
- "/images/*"
- ]
+ "Values": ["/images/*"]
}
],
"RuleArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener-rule/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2/9683b2d02a6cabee",
@@ -5963,10 +5937,7 @@
"ResourceArns": [
"arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188"
],
- "TagKeys": [
- "project",
- "department"
- ]
+ "TagKeys": ["project", "department"]
}
}
]
@@ -6320,9 +6291,7 @@
"Conditions": [
{
"Field": "path-pattern",
- "Values": [
- "/img/*"
- ]
+ "Values": ["/img/*"]
}
],
"RuleArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener-rule/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2/1291d13826f405c3",
@@ -6396,14 +6365,10 @@
"documentation": "This example associates the specified security group with the specified load balancer.",
"input": {
"LoadBalancerArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188",
- "SecurityGroups": [
- "sg-5943793c"
- ]
+ "SecurityGroups": ["sg-5943793c"]
},
"output": {
- "SecurityGroupIds": [
- "sg-5943793c"
- ]
+ "SecurityGroupIds": ["sg-5943793c"]
}
}
]
@@ -6486,17 +6451,14 @@
}
],
"traits": {
- "smithy.api#documentation": "Enables the Availability Zones for the specified public subnets for the specified\n Application Load Balancer or Network Load Balancer. The specified subnets replace the\n previously enabled subnets.
\n When you specify subnets for a Network Load Balancer, you must include all subnets that\n were enabled previously, with their existing configurations, plus any additional\n subnets.
",
+ "smithy.api#documentation": "Enables the Availability Zones for the specified public subnets for the specified\n Application Load Balancer, Network Load Balancer or Gateway Load Balancer. The specified subnets replace the\n previously enabled subnets.
\n When you specify subnets for a Network Load Balancer, or Gateway Load Balancer you must include all subnets that\n were enabled previously, with their existing configurations, plus any additional\n subnets.
",
"smithy.api#examples": [
{
"title": "To enable Availability Zones for a load balancer",
"documentation": "This example enables the Availability Zones for the specified subnets for the specified load balancer.",
"input": {
"LoadBalancerArn": "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188",
- "Subnets": [
- "subnet-8360a9e7",
- "subnet-b7d581c0"
- ]
+ "Subnets": ["subnet-8360a9e7", "subnet-b7d581c0"]
},
"output": {
"AvailabilityZones": [
@@ -6527,19 +6489,19 @@
"Subnets": {
"target": "com.amazonaws.elasticloadbalancingv2#Subnets",
"traits": {
- "smithy.api#documentation": "The IDs of the public subnets. You can specify only one subnet per Availability Zone. You\n must specify either subnets or subnet mappings.
\n [Application Load Balancers] You must specify subnets from at least two Availability\n Zones.
\n [Application Load Balancers on Outposts] You must specify one Outpost subnet.
\n [Application Load Balancers on Local Zones] You can specify subnets from one or more Local\n Zones.
\n [Network Load Balancers] You can specify subnets from one or more Availability\n Zones.
"
+ "smithy.api#documentation": "The IDs of the public subnets. You can specify only one subnet per Availability Zone. You\n must specify either subnets or subnet mappings.
\n [Application Load Balancers] You must specify subnets from at least two Availability\n Zones.
\n [Application Load Balancers on Outposts] You must specify one Outpost subnet.
\n [Application Load Balancers on Local Zones] You can specify subnets from one or more Local\n Zones.
\n [Network Load Balancers] You can specify subnets from one or more Availability\n Zones.
\n [Gateway Load Balancers] You can specify subnets from one or more Availability\n Zones.
"
}
},
"SubnetMappings": {
"target": "com.amazonaws.elasticloadbalancingv2#SubnetMappings",
"traits": {
- "smithy.api#documentation": "The IDs of the public subnets. You can specify only one subnet per Availability Zone. You\n must specify either subnets or subnet mappings.
\n [Application Load Balancers] You must specify subnets from at least two Availability\n Zones. You cannot specify Elastic IP addresses for your subnets.
\n [Application Load Balancers on Outposts] You must specify one Outpost subnet.
\n [Application Load Balancers on Local Zones] You can specify subnets from one or more Local\n Zones.
\n [Network Load Balancers] You can specify subnets from one or more Availability Zones. You\n can specify one Elastic IP address per subnet if you need static IP addresses for your\n internet-facing load balancer. For internal load balancers, you can specify one private IP\n address per subnet from the IPv4 range of the subnet. For internet-facing load balancer, you\n can specify one IPv6 address per subnet.
"
+ "smithy.api#documentation": "The IDs of the public subnets. You can specify only one subnet per Availability Zone. You\n must specify either subnets or subnet mappings.
\n [Application Load Balancers] You must specify subnets from at least two Availability\n Zones. You cannot specify Elastic IP addresses for your subnets.
\n [Application Load Balancers on Outposts] You must specify one Outpost subnet.
\n [Application Load Balancers on Local Zones] You can specify subnets from one or more Local\n Zones.
\n [Network Load Balancers] You can specify subnets from one or more Availability Zones. You\n can specify one Elastic IP address per subnet if you need static IP addresses for your\n internet-facing load balancer. For internal load balancers, you can specify one private IP\n address per subnet from the IPv4 range of the subnet. For internet-facing load balancer, you\n can specify one IPv6 address per subnet.
\n [Gateway Load Balancers] You can specify subnets from one or more Availability\n Zones.
"
}
},
"IpAddressType": {
"target": "com.amazonaws.elasticloadbalancingv2#IpAddressType",
"traits": {
- "smithy.api#documentation": "[Network Load Balancers] The type of IP addresses used by the subnets for your load\n balancer. The possible values are ipv4
(for IPv4 addresses) and\n dualstack
(for IPv4 and IPv6 addresses). You can’t specify\n dualstack
for a load balancer with a UDP or TCP_UDP listener.
"
+ "smithy.api#documentation": "[Network Load Balancers] The type of IP addresses used by the subnets for your load\n balancer. The possible values are ipv4
(for IPv4 addresses) and\n dualstack
(for IPv4 and IPv6 addresses). You can’t specify\n dualstack
for a load balancer with a UDP or TCP_UDP listener.
\n [Gateway Load Balancers] The type of IP addresses used by the subnets for your load\n balancer. The possible values are ipv4
(for IPv4 addresses) and\n dualstack
(for IPv4 and IPv6 addresses).
"
}
}
},
@@ -6559,7 +6521,7 @@
"IpAddressType": {
"target": "com.amazonaws.elasticloadbalancingv2#IpAddressType",
"traits": {
- "smithy.api#documentation": "[Network Load Balancers] The IP address type.
"
+ "smithy.api#documentation": "[Network Load Balancers] The IP address type.
\n [Gateway Load Balancers] The IP address type.
"
}
}
},
@@ -7514,4 +7476,4 @@
"type": "string"
}
}
-}
\ No newline at end of file
+}
From f71b2162e204e6bd55685b443964e34944040d66 Mon Sep 17 00:00:00 2001
From: awstools
Date: Thu, 12 Oct 2023 18:24:09 +0000
Subject: [PATCH 26/35] feat(client-location): This release adds endpoint
updates for all AWS Location resource operations.
---
.../src/protocols/Aws_restJson1.ts | 72 +++++++++----------
codegen/sdk-codegen/aws-models/location.json | 72 +++++++++----------
2 files changed, 72 insertions(+), 72 deletions(-)
diff --git a/clients/client-location/src/protocols/Aws_restJson1.ts b/clients/client-location/src/protocols/Aws_restJson1.ts
index 922b6227f02aa..929a23f273cc9 100644
--- a/clients/client-location/src/protocols/Aws_restJson1.ts
+++ b/clients/client-location/src/protocols/Aws_restJson1.ts
@@ -238,7 +238,7 @@ export const se_AssociateTrackerConsumerCommand = async (
);
let { hostname: resolvedHostname } = await context.endpoint();
if (context.disableHostPrefix !== true) {
- resolvedHostname = "tracking." + resolvedHostname;
+ resolvedHostname = "cp.tracking." + resolvedHostname;
if (!__isValidHostname(resolvedHostname)) {
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
}
@@ -651,7 +651,7 @@ export const se_CreateGeofenceCollectionCommand = async (
);
let { hostname: resolvedHostname } = await context.endpoint();
if (context.disableHostPrefix !== true) {
- resolvedHostname = "geofencing." + resolvedHostname;
+ resolvedHostname = "cp.geofencing." + resolvedHostname;
if (!__isValidHostname(resolvedHostname)) {
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
}
@@ -692,7 +692,7 @@ export const se_CreateKeyCommand = async (
);
let { hostname: resolvedHostname } = await context.endpoint();
if (context.disableHostPrefix !== true) {
- resolvedHostname = "metadata." + resolvedHostname;
+ resolvedHostname = "cp.metadata." + resolvedHostname;
if (!__isValidHostname(resolvedHostname)) {
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
}
@@ -732,7 +732,7 @@ export const se_CreateMapCommand = async (
);
let { hostname: resolvedHostname } = await context.endpoint();
if (context.disableHostPrefix !== true) {
- resolvedHostname = "maps." + resolvedHostname;
+ resolvedHostname = "cp.maps." + resolvedHostname;
if (!__isValidHostname(resolvedHostname)) {
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
}
@@ -773,7 +773,7 @@ export const se_CreatePlaceIndexCommand = async (
);
let { hostname: resolvedHostname } = await context.endpoint();
if (context.disableHostPrefix !== true) {
- resolvedHostname = "places." + resolvedHostname;
+ resolvedHostname = "cp.places." + resolvedHostname;
if (!__isValidHostname(resolvedHostname)) {
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
}
@@ -813,7 +813,7 @@ export const se_CreateRouteCalculatorCommand = async (
);
let { hostname: resolvedHostname } = await context.endpoint();
if (context.disableHostPrefix !== true) {
- resolvedHostname = "routes." + resolvedHostname;
+ resolvedHostname = "cp.routes." + resolvedHostname;
if (!__isValidHostname(resolvedHostname)) {
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
}
@@ -857,7 +857,7 @@ export const se_CreateTrackerCommand = async (
);
let { hostname: resolvedHostname } = await context.endpoint();
if (context.disableHostPrefix !== true) {
- resolvedHostname = "tracking." + resolvedHostname;
+ resolvedHostname = "cp.tracking." + resolvedHostname;
if (!__isValidHostname(resolvedHostname)) {
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
}
@@ -896,7 +896,7 @@ export const se_DeleteGeofenceCollectionCommand = async (
let body: any;
let { hostname: resolvedHostname } = await context.endpoint();
if (context.disableHostPrefix !== true) {
- resolvedHostname = "geofencing." + resolvedHostname;
+ resolvedHostname = "cp.geofencing." + resolvedHostname;
if (!__isValidHostname(resolvedHostname)) {
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
}
@@ -927,7 +927,7 @@ export const se_DeleteKeyCommand = async (
let body: any;
let { hostname: resolvedHostname } = await context.endpoint();
if (context.disableHostPrefix !== true) {
- resolvedHostname = "metadata." + resolvedHostname;
+ resolvedHostname = "cp.metadata." + resolvedHostname;
if (!__isValidHostname(resolvedHostname)) {
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
}
@@ -957,7 +957,7 @@ export const se_DeleteMapCommand = async (
let body: any;
let { hostname: resolvedHostname } = await context.endpoint();
if (context.disableHostPrefix !== true) {
- resolvedHostname = "maps." + resolvedHostname;
+ resolvedHostname = "cp.maps." + resolvedHostname;
if (!__isValidHostname(resolvedHostname)) {
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
}
@@ -988,7 +988,7 @@ export const se_DeletePlaceIndexCommand = async (
let body: any;
let { hostname: resolvedHostname } = await context.endpoint();
if (context.disableHostPrefix !== true) {
- resolvedHostname = "places." + resolvedHostname;
+ resolvedHostname = "cp.places." + resolvedHostname;
if (!__isValidHostname(resolvedHostname)) {
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
}
@@ -1026,7 +1026,7 @@ export const se_DeleteRouteCalculatorCommand = async (
let body: any;
let { hostname: resolvedHostname } = await context.endpoint();
if (context.disableHostPrefix !== true) {
- resolvedHostname = "routes." + resolvedHostname;
+ resolvedHostname = "cp.routes." + resolvedHostname;
if (!__isValidHostname(resolvedHostname)) {
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
}
@@ -1057,7 +1057,7 @@ export const se_DeleteTrackerCommand = async (
let body: any;
let { hostname: resolvedHostname } = await context.endpoint();
if (context.disableHostPrefix !== true) {
- resolvedHostname = "tracking." + resolvedHostname;
+ resolvedHostname = "cp.tracking." + resolvedHostname;
if (!__isValidHostname(resolvedHostname)) {
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
}
@@ -1096,7 +1096,7 @@ export const se_DescribeGeofenceCollectionCommand = async (
let body: any;
let { hostname: resolvedHostname } = await context.endpoint();
if (context.disableHostPrefix !== true) {
- resolvedHostname = "geofencing." + resolvedHostname;
+ resolvedHostname = "cp.geofencing." + resolvedHostname;
if (!__isValidHostname(resolvedHostname)) {
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
}
@@ -1127,7 +1127,7 @@ export const se_DescribeKeyCommand = async (
let body: any;
let { hostname: resolvedHostname } = await context.endpoint();
if (context.disableHostPrefix !== true) {
- resolvedHostname = "metadata." + resolvedHostname;
+ resolvedHostname = "cp.metadata." + resolvedHostname;
if (!__isValidHostname(resolvedHostname)) {
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
}
@@ -1157,7 +1157,7 @@ export const se_DescribeMapCommand = async (
let body: any;
let { hostname: resolvedHostname } = await context.endpoint();
if (context.disableHostPrefix !== true) {
- resolvedHostname = "maps." + resolvedHostname;
+ resolvedHostname = "cp.maps." + resolvedHostname;
if (!__isValidHostname(resolvedHostname)) {
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
}
@@ -1188,7 +1188,7 @@ export const se_DescribePlaceIndexCommand = async (
let body: any;
let { hostname: resolvedHostname } = await context.endpoint();
if (context.disableHostPrefix !== true) {
- resolvedHostname = "places." + resolvedHostname;
+ resolvedHostname = "cp.places." + resolvedHostname;
if (!__isValidHostname(resolvedHostname)) {
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
}
@@ -1226,7 +1226,7 @@ export const se_DescribeRouteCalculatorCommand = async (
let body: any;
let { hostname: resolvedHostname } = await context.endpoint();
if (context.disableHostPrefix !== true) {
- resolvedHostname = "routes." + resolvedHostname;
+ resolvedHostname = "cp.routes." + resolvedHostname;
if (!__isValidHostname(resolvedHostname)) {
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
}
@@ -1257,7 +1257,7 @@ export const se_DescribeTrackerCommand = async (
let body: any;
let { hostname: resolvedHostname } = await context.endpoint();
if (context.disableHostPrefix !== true) {
- resolvedHostname = "tracking." + resolvedHostname;
+ resolvedHostname = "cp.tracking." + resolvedHostname;
if (!__isValidHostname(resolvedHostname)) {
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
}
@@ -1290,7 +1290,7 @@ export const se_DisassociateTrackerConsumerCommand = async (
let body: any;
let { hostname: resolvedHostname } = await context.endpoint();
if (context.disableHostPrefix !== true) {
- resolvedHostname = "tracking." + resolvedHostname;
+ resolvedHostname = "cp.tracking." + resolvedHostname;
if (!__isValidHostname(resolvedHostname)) {
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
}
@@ -1678,7 +1678,7 @@ export const se_ListGeofenceCollectionsCommand = async (
);
let { hostname: resolvedHostname } = await context.endpoint();
if (context.disableHostPrefix !== true) {
- resolvedHostname = "geofencing." + resolvedHostname;
+ resolvedHostname = "cp.geofencing." + resolvedHostname;
if (!__isValidHostname(resolvedHostname)) {
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
}
@@ -1763,7 +1763,7 @@ export const se_ListKeysCommand = async (
);
let { hostname: resolvedHostname } = await context.endpoint();
if (context.disableHostPrefix !== true) {
- resolvedHostname = "metadata." + resolvedHostname;
+ resolvedHostname = "cp.metadata." + resolvedHostname;
if (!__isValidHostname(resolvedHostname)) {
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
}
@@ -1800,7 +1800,7 @@ export const se_ListMapsCommand = async (
);
let { hostname: resolvedHostname } = await context.endpoint();
if (context.disableHostPrefix !== true) {
- resolvedHostname = "maps." + resolvedHostname;
+ resolvedHostname = "cp.maps." + resolvedHostname;
if (!__isValidHostname(resolvedHostname)) {
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
}
@@ -1838,7 +1838,7 @@ export const se_ListPlaceIndexesCommand = async (
);
let { hostname: resolvedHostname } = await context.endpoint();
if (context.disableHostPrefix !== true) {
- resolvedHostname = "places." + resolvedHostname;
+ resolvedHostname = "cp.places." + resolvedHostname;
if (!__isValidHostname(resolvedHostname)) {
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
}
@@ -1876,7 +1876,7 @@ export const se_ListRouteCalculatorsCommand = async (
);
let { hostname: resolvedHostname } = await context.endpoint();
if (context.disableHostPrefix !== true) {
- resolvedHostname = "routes." + resolvedHostname;
+ resolvedHostname = "cp.routes." + resolvedHostname;
if (!__isValidHostname(resolvedHostname)) {
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
}
@@ -1906,7 +1906,7 @@ export const se_ListTagsForResourceCommand = async (
let body: any;
let { hostname: resolvedHostname } = await context.endpoint();
if (context.disableHostPrefix !== true) {
- resolvedHostname = "metadata." + resolvedHostname;
+ resolvedHostname = "cp.metadata." + resolvedHostname;
if (!__isValidHostname(resolvedHostname)) {
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
}
@@ -1946,7 +1946,7 @@ export const se_ListTrackerConsumersCommand = async (
);
let { hostname: resolvedHostname } = await context.endpoint();
if (context.disableHostPrefix !== true) {
- resolvedHostname = "tracking." + resolvedHostname;
+ resolvedHostname = "cp.tracking." + resolvedHostname;
if (!__isValidHostname(resolvedHostname)) {
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
}
@@ -1984,7 +1984,7 @@ export const se_ListTrackersCommand = async (
);
let { hostname: resolvedHostname } = await context.endpoint();
if (context.disableHostPrefix !== true) {
- resolvedHostname = "tracking." + resolvedHostname;
+ resolvedHostname = "cp.tracking." + resolvedHostname;
if (!__isValidHostname(resolvedHostname)) {
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
}
@@ -2212,7 +2212,7 @@ export const se_TagResourceCommand = async (
);
let { hostname: resolvedHostname } = await context.endpoint();
if (context.disableHostPrefix !== true) {
- resolvedHostname = "metadata." + resolvedHostname;
+ resolvedHostname = "cp.metadata." + resolvedHostname;
if (!__isValidHostname(resolvedHostname)) {
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
}
@@ -2248,7 +2248,7 @@ export const se_UntagResourceCommand = async (
let body: any;
let { hostname: resolvedHostname } = await context.endpoint();
if (context.disableHostPrefix !== true) {
- resolvedHostname = "metadata." + resolvedHostname;
+ resolvedHostname = "cp.metadata." + resolvedHostname;
if (!__isValidHostname(resolvedHostname)) {
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
}
@@ -2297,7 +2297,7 @@ export const se_UpdateGeofenceCollectionCommand = async (
);
let { hostname: resolvedHostname } = await context.endpoint();
if (context.disableHostPrefix !== true) {
- resolvedHostname = "geofencing." + resolvedHostname;
+ resolvedHostname = "cp.geofencing." + resolvedHostname;
if (!__isValidHostname(resolvedHostname)) {
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
}
@@ -2339,7 +2339,7 @@ export const se_UpdateKeyCommand = async (
);
let { hostname: resolvedHostname } = await context.endpoint();
if (context.disableHostPrefix !== true) {
- resolvedHostname = "metadata." + resolvedHostname;
+ resolvedHostname = "cp.metadata." + resolvedHostname;
if (!__isValidHostname(resolvedHostname)) {
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
}
@@ -2378,7 +2378,7 @@ export const se_UpdateMapCommand = async (
);
let { hostname: resolvedHostname } = await context.endpoint();
if (context.disableHostPrefix !== true) {
- resolvedHostname = "maps." + resolvedHostname;
+ resolvedHostname = "cp.maps." + resolvedHostname;
if (!__isValidHostname(resolvedHostname)) {
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
}
@@ -2418,7 +2418,7 @@ export const se_UpdatePlaceIndexCommand = async (
);
let { hostname: resolvedHostname } = await context.endpoint();
if (context.disableHostPrefix !== true) {
- resolvedHostname = "places." + resolvedHostname;
+ resolvedHostname = "cp.places." + resolvedHostname;
if (!__isValidHostname(resolvedHostname)) {
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
}
@@ -2464,7 +2464,7 @@ export const se_UpdateRouteCalculatorCommand = async (
);
let { hostname: resolvedHostname } = await context.endpoint();
if (context.disableHostPrefix !== true) {
- resolvedHostname = "routes." + resolvedHostname;
+ resolvedHostname = "cp.routes." + resolvedHostname;
if (!__isValidHostname(resolvedHostname)) {
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
}
@@ -2507,7 +2507,7 @@ export const se_UpdateTrackerCommand = async (
);
let { hostname: resolvedHostname } = await context.endpoint();
if (context.disableHostPrefix !== true) {
- resolvedHostname = "tracking." + resolvedHostname;
+ resolvedHostname = "cp.tracking." + resolvedHostname;
if (!__isValidHostname(resolvedHostname)) {
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
}
diff --git a/codegen/sdk-codegen/aws-models/location.json b/codegen/sdk-codegen/aws-models/location.json
index 0077906f41046..15121a4cd8270 100644
--- a/codegen/sdk-codegen/aws-models/location.json
+++ b/codegen/sdk-codegen/aws-models/location.json
@@ -179,7 +179,7 @@
"traits": {
"smithy.api#documentation": "Creates an association between a geofence collection and a tracker resource. This\n allows the tracker resource to communicate location data to the linked geofence\n collection.
\n You can associate up to five geofence collections to each tracker resource.
\n \n Currently not supported — Cross-account configurations, such as creating associations between a tracker resource in one account and a geofence collection in another account.
\n ",
"smithy.api#endpoint": {
- "hostPrefix": "tracking."
+ "hostPrefix": "cp.tracking."
},
"smithy.api#http": {
"uri": "/tracking/v0/trackers/{TrackerName}/consumers",
@@ -1533,7 +1533,7 @@
"traits": {
"smithy.api#documentation": "Creates a geofence collection, which manages and stores geofences.
",
"smithy.api#endpoint": {
- "hostPrefix": "geofencing."
+ "hostPrefix": "cp.geofencing."
},
"smithy.api#http": {
"uri": "/geofencing/v0/collections",
@@ -1649,7 +1649,7 @@
"traits": {
"smithy.api#documentation": "Creates an API key resource in your Amazon Web Services account, which lets you grant\n actions for Amazon Location resources to the API key bearer.
\n \n For more information, see Using API keys .
\n ",
"smithy.api#endpoint": {
- "hostPrefix": "metadata."
+ "hostPrefix": "cp.metadata."
},
"smithy.api#http": {
"uri": "/metadata/v0/keys",
@@ -1765,7 +1765,7 @@
"traits": {
"smithy.api#documentation": "Creates a map resource in your Amazon Web Services account, which provides map tiles of different\n styles sourced from global location data providers.
\n \n If your application is tracking or routing assets you use in your business, such \n as delivery vehicles or employees, you must not use Esri as your geolocation \n provider. See section 82 of the Amazon Web Services\n service terms for more details.
\n ",
"smithy.api#endpoint": {
- "hostPrefix": "maps."
+ "hostPrefix": "cp.maps."
},
"smithy.api#http": {
"uri": "/maps/v0/maps",
@@ -1872,7 +1872,7 @@
"traits": {
"smithy.api#documentation": "Creates a place index resource in your Amazon Web Services account. Use a place index resource to\n geocode addresses and other text queries by using the\n SearchPlaceIndexForText
operation, and reverse geocode coordinates by\n using the SearchPlaceIndexForPosition
operation, and enable autosuggestions\n by using the SearchPlaceIndexForSuggestions
operation.
\n \n If your application is tracking or routing assets you use in your business, such \n as delivery vehicles or employees, you must not use Esri as your geolocation \n provider. See section 82 of the Amazon Web Services\n service terms for more details.
\n ",
"smithy.api#endpoint": {
- "hostPrefix": "places."
+ "hostPrefix": "cp.places."
},
"smithy.api#http": {
"uri": "/places/v0/indexes",
@@ -1985,7 +1985,7 @@
"traits": {
"smithy.api#documentation": "Creates a route calculator resource in your Amazon Web Services account.
\n You can send requests to a route calculator resource to estimate travel time,\n distance, and get directions. A route calculator sources traffic and road network data\n from your chosen data provider.
\n \n If your application is tracking or routing assets you use in your business, such \n as delivery vehicles or employees, you must not use Esri as your geolocation \n provider. See section 82 of the Amazon Web Services\n service terms for more details.
\n ",
"smithy.api#endpoint": {
- "hostPrefix": "routes."
+ "hostPrefix": "cp.routes."
},
"smithy.api#http": {
"uri": "/routes/v0/calculators",
@@ -2092,7 +2092,7 @@
"traits": {
"smithy.api#documentation": "Creates a tracker resource in your Amazon Web Services account, which lets you retrieve current and\n historical location of devices.
",
"smithy.api#endpoint": {
- "hostPrefix": "tracking."
+ "hostPrefix": "cp.tracking."
},
"smithy.api#http": {
"uri": "/tracking/v0/trackers",
@@ -2237,7 +2237,7 @@
"traits": {
"smithy.api#documentation": "Deletes a geofence collection from your Amazon Web Services account.
\n \n This operation deletes the resource permanently. If the geofence collection is the\n target of a tracker resource, the devices will no longer be monitored.
\n ",
"smithy.api#endpoint": {
- "hostPrefix": "geofencing."
+ "hostPrefix": "cp.geofencing."
},
"smithy.api#http": {
"uri": "/geofencing/v0/collections/{CollectionName}",
@@ -2291,7 +2291,7 @@
"traits": {
"smithy.api#documentation": "Deletes the specified API key. The API key must have been deactivated more than\n 90 days previously.
",
"smithy.api#endpoint": {
- "hostPrefix": "metadata."
+ "hostPrefix": "cp.metadata."
},
"smithy.api#http": {
"uri": "/metadata/v0/keys/{KeyName}",
@@ -2345,7 +2345,7 @@
"traits": {
"smithy.api#documentation": "Deletes a map resource from your Amazon Web Services account.
\n \n This operation deletes the resource permanently. If the map is being used in an application,\n the map may not render.
\n ",
"smithy.api#endpoint": {
- "hostPrefix": "maps."
+ "hostPrefix": "cp.maps."
},
"smithy.api#http": {
"uri": "/maps/v0/maps/{MapName}",
@@ -2400,7 +2400,7 @@
"traits": {
"smithy.api#documentation": "Deletes a place index resource from your Amazon Web Services account.
\n \n This operation deletes the resource permanently.
\n ",
"smithy.api#endpoint": {
- "hostPrefix": "places."
+ "hostPrefix": "cp.places."
},
"smithy.api#http": {
"uri": "/places/v0/indexes/{IndexName}",
@@ -2455,7 +2455,7 @@
"traits": {
"smithy.api#documentation": "Deletes a route calculator resource from your Amazon Web Services account.
\n \n This operation deletes the resource permanently.
\n ",
"smithy.api#endpoint": {
- "hostPrefix": "routes."
+ "hostPrefix": "cp.routes."
},
"smithy.api#http": {
"uri": "/routes/v0/calculators/{CalculatorName}",
@@ -2510,7 +2510,7 @@
"traits": {
"smithy.api#documentation": "Deletes a tracker resource from your Amazon Web Services account.
\n \n This operation deletes the resource permanently. If the tracker resource is in use, you may\n encounter an error. Make sure that the target resource isn't a dependency for your\n applications.
\n ",
"smithy.api#endpoint": {
- "hostPrefix": "tracking."
+ "hostPrefix": "cp.tracking."
},
"smithy.api#http": {
"uri": "/tracking/v0/trackers/{TrackerName}",
@@ -2564,7 +2564,7 @@
"traits": {
"smithy.api#documentation": "Retrieves the geofence collection details.
",
"smithy.api#endpoint": {
- "hostPrefix": "geofencing."
+ "hostPrefix": "cp.geofencing."
},
"smithy.api#http": {
"uri": "/geofencing/v0/collections/{CollectionName}",
@@ -2695,7 +2695,7 @@
"traits": {
"smithy.api#documentation": "Retrieves the API key resource details.
",
"smithy.api#endpoint": {
- "hostPrefix": "metadata."
+ "hostPrefix": "cp.metadata."
},
"smithy.api#http": {
"uri": "/metadata/v0/keys/{KeyName}",
@@ -2810,7 +2810,7 @@
"traits": {
"smithy.api#documentation": "Retrieves the map resource details.
",
"smithy.api#endpoint": {
- "hostPrefix": "maps."
+ "hostPrefix": "cp.maps."
},
"smithy.api#http": {
"uri": "/maps/v0/maps/{MapName}",
@@ -2930,7 +2930,7 @@
"traits": {
"smithy.api#documentation": "Retrieves the place index resource details.
",
"smithy.api#endpoint": {
- "hostPrefix": "places."
+ "hostPrefix": "cp.places."
},
"smithy.api#http": {
"uri": "/places/v0/indexes/{IndexName}",
@@ -3050,7 +3050,7 @@
"traits": {
"smithy.api#documentation": "Retrieves the route calculator resource details.
",
"smithy.api#endpoint": {
- "hostPrefix": "routes."
+ "hostPrefix": "cp.routes."
},
"smithy.api#http": {
"uri": "/routes/v0/calculators/{CalculatorName}",
@@ -3163,7 +3163,7 @@
"traits": {
"smithy.api#documentation": "Retrieves the tracker resource details.
",
"smithy.api#endpoint": {
- "hostPrefix": "tracking."
+ "hostPrefix": "cp.tracking."
},
"smithy.api#http": {
"uri": "/tracking/v0/trackers/{TrackerName}",
@@ -3422,7 +3422,7 @@
"traits": {
"smithy.api#documentation": "Removes the association between a tracker resource and a geofence collection.
\n \n Once you unlink a tracker resource from a geofence collection, the tracker\n positions will no longer be automatically evaluated against geofences.
\n ",
"smithy.api#endpoint": {
- "hostPrefix": "tracking."
+ "hostPrefix": "cp.tracking."
},
"smithy.api#http": {
"uri": "/tracking/v0/trackers/{TrackerName}/consumers/{ConsumerArn}",
@@ -4727,7 +4727,7 @@
"traits": {
"smithy.api#documentation": "Lists geofence collections in your Amazon Web Services account.
",
"smithy.api#endpoint": {
- "hostPrefix": "geofencing."
+ "hostPrefix": "cp.geofencing."
},
"smithy.api#http": {
"uri": "/geofencing/v0/list-collections",
@@ -5013,7 +5013,7 @@
"traits": {
"smithy.api#documentation": "Lists API key resources in your Amazon Web Services account.
",
"smithy.api#endpoint": {
- "hostPrefix": "metadata."
+ "hostPrefix": "cp.metadata."
},
"smithy.api#http": {
"uri": "/metadata/v0/list-keys",
@@ -5152,7 +5152,7 @@
"traits": {
"smithy.api#documentation": "Lists map resources in your Amazon Web Services account.
",
"smithy.api#endpoint": {
- "hostPrefix": "maps."
+ "hostPrefix": "cp.maps."
},
"smithy.api#http": {
"uri": "/maps/v0/list-maps",
@@ -5290,7 +5290,7 @@
"traits": {
"smithy.api#documentation": "Lists place index resources in your Amazon Web Services account.
",
"smithy.api#endpoint": {
- "hostPrefix": "places."
+ "hostPrefix": "cp.places."
},
"smithy.api#http": {
"uri": "/places/v0/list-indexes",
@@ -5428,7 +5428,7 @@
"traits": {
"smithy.api#documentation": "Lists route calculator resources in your Amazon Web Services account.
",
"smithy.api#endpoint": {
- "hostPrefix": "routes."
+ "hostPrefix": "cp.routes."
},
"smithy.api#http": {
"uri": "/routes/v0/list-calculators",
@@ -5569,7 +5569,7 @@
"traits": {
"smithy.api#documentation": "Returns a list of tags that are applied to the specified Amazon Location resource.
",
"smithy.api#endpoint": {
- "hostPrefix": "metadata."
+ "hostPrefix": "cp.metadata."
},
"smithy.api#http": {
"method": "GET",
@@ -5630,7 +5630,7 @@
"traits": {
"smithy.api#documentation": "Lists geofence collections currently associated to the given tracker resource.
",
"smithy.api#endpoint": {
- "hostPrefix": "tracking."
+ "hostPrefix": "cp.tracking."
},
"smithy.api#http": {
"uri": "/tracking/v0/trackers/{TrackerName}/list-consumers",
@@ -5717,7 +5717,7 @@
"traits": {
"smithy.api#documentation": "Lists tracker resources in your Amazon Web Services account.
",
"smithy.api#endpoint": {
- "hostPrefix": "tracking."
+ "hostPrefix": "cp.tracking."
},
"smithy.api#http": {
"uri": "/tracking/v0/list-trackers",
@@ -7973,7 +7973,7 @@
"traits": {
"smithy.api#documentation": "Assigns one or more tags (key-value pairs) to the specified Amazon Location Service\n resource.
\n Tags can help you organize and categorize your resources. You can also use them to\n scope user permissions, by granting a user permission to access or change only resources\n with certain tag values.
\n You can use the TagResource
operation with an Amazon Location Service\n resource that already has tags. If you specify a new tag key for the resource, this tag\n is appended to the tags already associated with the resource. If you specify a tag key\n that's already associated with the resource, the new tag value that you specify replaces\n the previous value for that tag.
\n You can associate up to 50 tags with a resource.
",
"smithy.api#endpoint": {
- "hostPrefix": "metadata."
+ "hostPrefix": "cp.metadata."
},
"smithy.api#http": {
"method": "POST",
@@ -8258,7 +8258,7 @@
"traits": {
"smithy.api#documentation": "Removes one or more tags from the specified Amazon Location resource.
",
"smithy.api#endpoint": {
- "hostPrefix": "metadata."
+ "hostPrefix": "cp.metadata."
},
"smithy.api#http": {
"method": "DELETE",
@@ -8320,7 +8320,7 @@
"traits": {
"smithy.api#documentation": "Updates the specified properties of a given geofence collection.
",
"smithy.api#endpoint": {
- "hostPrefix": "geofencing."
+ "hostPrefix": "cp.geofencing."
},
"smithy.api#http": {
"uri": "/geofencing/v0/collections/{CollectionName}",
@@ -8422,7 +8422,7 @@
"traits": {
"smithy.api#documentation": "Updates the specified properties of a given API key resource.
",
"smithy.api#endpoint": {
- "hostPrefix": "metadata."
+ "hostPrefix": "cp.metadata."
},
"smithy.api#http": {
"uri": "/metadata/v0/keys/{KeyName}",
@@ -8528,7 +8528,7 @@
"traits": {
"smithy.api#documentation": "Updates the specified properties of a given map resource.
",
"smithy.api#endpoint": {
- "hostPrefix": "maps."
+ "hostPrefix": "cp.maps."
},
"smithy.api#http": {
"uri": "/maps/v0/maps/{MapName}",
@@ -8626,7 +8626,7 @@
"traits": {
"smithy.api#documentation": "Updates the specified properties of a given place index resource.
",
"smithy.api#endpoint": {
- "hostPrefix": "places."
+ "hostPrefix": "cp.places."
},
"smithy.api#http": {
"uri": "/places/v0/indexes/{IndexName}",
@@ -8724,7 +8724,7 @@
"traits": {
"smithy.api#documentation": "Updates the specified properties for a given route calculator resource.
",
"smithy.api#endpoint": {
- "hostPrefix": "routes."
+ "hostPrefix": "cp.routes."
},
"smithy.api#http": {
"uri": "/routes/v0/calculators/{CalculatorName}",
@@ -8816,7 +8816,7 @@
"traits": {
"smithy.api#documentation": "Updates the specified properties of a given tracker resource.
",
"smithy.api#endpoint": {
- "hostPrefix": "tracking."
+ "hostPrefix": "cp.tracking."
},
"smithy.api#http": {
"uri": "/tracking/v0/trackers/{TrackerName}",
From ec57e7739db99340c4c9ced9ecb0e19a759f68da Mon Sep 17 00:00:00 2001
From: awstools
Date: Thu, 12 Oct 2023 18:24:09 +0000
Subject: [PATCH 27/35] docs(client-pricing): Documentation updates for Price
List
---
clients/client-pricing/README.md | 12 +++------
clients/client-pricing/src/Pricing.ts | 12 +++------
clients/client-pricing/src/PricingClient.ts | 12 +++------
.../commands/GetPriceListFileUrlCommand.ts | 7 +++--
.../src/commands/ListPriceListsCommand.ts | 15 +++++------
clients/client-pricing/src/index.ts | 12 +++------
clients/client-pricing/src/models/models_0.ts | 26 +++++++------------
codegen/sdk-codegen/aws-models/pricing.json | 16 ++++++------
8 files changed, 40 insertions(+), 72 deletions(-)
diff --git a/clients/client-pricing/README.md b/clients/client-pricing/README.md
index 037c0b0c3cd6a..42081607fd67a 100644
--- a/clients/client-pricing/README.md
+++ b/clients/client-pricing/README.md
@@ -32,15 +32,9 @@ available for an attribute. With the service code and an attribute name and valu
use GetProducts
to find specific products that you're interested in, such as
an AmazonEC2
instance, with a Provisioned IOPS
volumeType
.
-You can use the following endpoints for the Amazon Web Services Price List API:
-
+For more information, see Using the
+Amazon Web Services Price List API in the Billing User
+Guide .
## Installing
diff --git a/clients/client-pricing/src/Pricing.ts b/clients/client-pricing/src/Pricing.ts
index def3f3be9ddc0..1c8599ffc404b 100644
--- a/clients/client-pricing/src/Pricing.ts
+++ b/clients/client-pricing/src/Pricing.ts
@@ -139,15 +139,9 @@ export interface Pricing {
* use GetProducts
to find specific products that you're interested in, such as
* an AmazonEC2
instance, with a Provisioned IOPS
* volumeType
.
- * You can use the following endpoints for the Amazon Web Services Price List API:
- *
+ * For more information, see Using the
+ * Amazon Web Services Price List API in the Billing User
+ * Guide .
*/
export class Pricing extends PricingClient implements Pricing {}
createAggregatedClient(commands, Pricing);
diff --git a/clients/client-pricing/src/PricingClient.ts b/clients/client-pricing/src/PricingClient.ts
index 49de6c91794f5..8eaf38c0d81e2 100644
--- a/clients/client-pricing/src/PricingClient.ts
+++ b/clients/client-pricing/src/PricingClient.ts
@@ -287,15 +287,9 @@ export interface PricingClientResolvedConfig extends PricingClientResolvedConfig
* use GetProducts
to find specific products that you're interested in, such as
* an AmazonEC2
instance, with a Provisioned IOPS
* volumeType
.
- * You can use the following endpoints for the Amazon Web Services Price List API:
- *
+ * For more information, see Using the
+ * Amazon Web Services Price List API in the Billing User
+ * Guide .
*/
export class PricingClient extends __Client<
__HttpHandlerOptions,
diff --git a/clients/client-pricing/src/commands/GetPriceListFileUrlCommand.ts b/clients/client-pricing/src/commands/GetPriceListFileUrlCommand.ts
index 9e8d420de3bed..948963219d895 100644
--- a/clients/client-pricing/src/commands/GetPriceListFileUrlCommand.ts
+++ b/clients/client-pricing/src/commands/GetPriceListFileUrlCommand.ts
@@ -42,10 +42,9 @@ export interface GetPriceListFileUrlCommandOutput extends GetPriceListFileUrlRes
* This feature is in preview release and is subject to change. Your use of Amazon Web Services Price List API is subject to the Beta Service Participation terms of the Amazon Web Services Service Terms (Section 1.10).
*
*
- * This returns the URL that you can retrieve your Price List file from. This URL is based on
- * the PriceListArn
and FileFormat
that you retrieve from the
- * ListPriceLists
- * response.
+ * This returns the URL that you can retrieve your Price List file from. This URL is based
+ * on the PriceListArn
and FileFormat
that you retrieve from the
+ * ListPriceLists response.
* @example
* Use a bare-bones client and the command you need to make an API call.
* ```javascript
diff --git a/clients/client-pricing/src/commands/ListPriceListsCommand.ts b/clients/client-pricing/src/commands/ListPriceListsCommand.ts
index 68dec4967dc2d..99c9b25571626 100644
--- a/clients/client-pricing/src/commands/ListPriceListsCommand.ts
+++ b/clients/client-pricing/src/commands/ListPriceListsCommand.ts
@@ -42,14 +42,13 @@ export interface ListPriceListsCommandOutput extends ListPriceListsResponse, __M
* This feature is in preview release and is subject to change. Your use of Amazon Web Services Price List API is subject to the Beta Service Participation terms of the Amazon Web Services Service Terms (Section 1.10).
*
*
- * This returns a list of Price List references that the requester if authorized to view, given a ServiceCode
, CurrencyCode
, and an EffectiveDate
.
- * Use without a RegionCode
filter to list Price List references from all
- * available Amazon Web Services Regions. Use with a RegionCode
filter to get the
- * Price List reference that's specific to a specific Amazon Web Services Region. You can use
- * the PriceListArn
from the response to get your preferred Price List files
- * through the
- * GetPriceListFileUrl
- * API.
+ * This returns a list of Price List references that the requester if authorized to view,
+ * given a ServiceCode
, CurrencyCode
, and an
+ * EffectiveDate
. Use without a RegionCode
filter to list Price
+ * List references from all available Amazon Web Services Regions. Use with a
+ * RegionCode
filter to get the Price List reference that's specific to a
+ * specific Amazon Web Services Region. You can use the PriceListArn
from the
+ * response to get your preferred Price List files through the GetPriceListFileUrl API.
* @example
* Use a bare-bones client and the command you need to make an API call.
* ```javascript
diff --git a/clients/client-pricing/src/index.ts b/clients/client-pricing/src/index.ts
index 775f1e7450704..2df1658f92cf0 100644
--- a/clients/client-pricing/src/index.ts
+++ b/clients/client-pricing/src/index.ts
@@ -27,15 +27,9 @@
* use GetProducts
to find specific products that you're interested in, such as
* an AmazonEC2
instance, with a Provisioned IOPS
* volumeType
.
- * You can use the following endpoints for the Amazon Web Services Price List API:
- *
+ * For more information, see Using the
+ * Amazon Web Services Price List API in the Billing User
+ * Guide .
*
* @packageDocumentation
*/
diff --git a/clients/client-pricing/src/models/models_0.ts b/clients/client-pricing/src/models/models_0.ts
index 0111a5ad79fbb..cf942d8d179fa 100644
--- a/clients/client-pricing/src/models/models_0.ts
+++ b/clients/client-pricing/src/models/models_0.ts
@@ -283,18 +283,14 @@ export interface GetPriceListFileUrlRequest {
/**
* @public
* The unique identifier that maps to where your Price List files are located.
- * PriceListArn
can be obtained from the
- * ListPriceLists
- * response.
+ * PriceListArn
can be obtained from the ListPriceLists response.
*/
PriceListArn: string | undefined;
/**
* @public
* The format that you want to retrieve your Price List files in. The
- * FileFormat
can be obtained from the
- * ListPriceLists
- * response.
+ * FileFormat
can be obtained from the ListPriceLists response.
*/
FileFormat: string | undefined;
}
@@ -427,13 +423,13 @@ export interface ListPriceListsRequest {
/**
* @public
* The service code or the Savings Plan service code for the attributes that
- * you want to retrieve. For example, to get the list of applicable Amazon EC2 price lists, use
- * AmazonEC2
. For a full list of service codes containing On-Demand and
- * Reserved Instance (RI) pricing, use the
- * DescribeServices
- * API.
- * To retrieve the Compute Savings Plan price lists, use ComputeSavingsPlans
. To retrieve Machine Learning Savings Plans price lists, use MachineLearningSavingsPlans
.
- *
+ * you want to retrieve. For example, to get the list of applicable Amazon EC2 price
+ * lists, use AmazonEC2
. For a full list of service codes containing On-Demand
+ * and Reserved Instance (RI) pricing, use the DescribeServices API.
+ * To retrieve the Reserved Instance and Compute Savings Plan price lists,
+ * use ComputeSavingsPlans
.
+ * To retrieve Machine Learning Savings Plans price lists, use
+ * MachineLearningSavingsPlans
.
*/
ServiceCode: string | undefined;
@@ -448,9 +444,7 @@ export interface ListPriceListsRequest {
* This is used to filter the Price List by Amazon Web Services Region. For example, to get
* the price list only for the US East (N. Virginia)
Region, use
* us-east-1
. If nothing is specified, you retrieve price lists for all
- * applicable Regions. The available RegionCode
list can be retrieved from
- * GetAttributeValues
- * API.
+ * applicable Regions. The available RegionCode
list can be retrieved from GetAttributeValues API.
*/
RegionCode?: string;
diff --git a/codegen/sdk-codegen/aws-models/pricing.json b/codegen/sdk-codegen/aws-models/pricing.json
index f0845990d1be0..ebc34b317a7f3 100644
--- a/codegen/sdk-codegen/aws-models/pricing.json
+++ b/codegen/sdk-codegen/aws-models/pricing.json
@@ -33,7 +33,7 @@
"name": "pricing"
},
"aws.protocols#awsJson1_1": {},
- "smithy.api#documentation": "The Amazon Web Services Price List API is a centralized and convenient way to programmatically\n query Amazon Web Services for services, products, and pricing information. The Amazon Web Services Price List uses standardized product attributes such as Location
,\n Storage Class
, and Operating System
, and provides prices at\n the SKU level. You can use the Amazon Web Services Price List to do the following:
\n \n \n Build cost control and scenario planning tools
\n \n \n Reconcile billing data
\n \n \n Forecast future spend for budgeting purposes
\n \n \n Provide cost benefit analysis that compare your internal workloads with Amazon Web Services
\n \n \n Use GetServices
without a service code to retrieve the service codes for\n all Amazon Web Services, then GetServices
with a service code to\n retrieve the attribute names for that service. After you have the service code and\n attribute names, you can use GetAttributeValues
to see what values are\n available for an attribute. With the service code and an attribute name and value, you can\n use GetProducts
to find specific products that you're interested in, such as\n an AmazonEC2
instance, with a Provisioned IOPS
\n volumeType
.
\n You can use the following endpoints for the Amazon Web Services Price List API:
\n ",
+ "smithy.api#documentation": "The Amazon Web Services Price List API is a centralized and convenient way to programmatically\n query Amazon Web Services for services, products, and pricing information. The Amazon Web Services Price List uses standardized product attributes such as Location
,\n Storage Class
, and Operating System
, and provides prices at\n the SKU level. You can use the Amazon Web Services Price List to do the following:
\n \n \n Build cost control and scenario planning tools
\n \n \n Reconcile billing data
\n \n \n Forecast future spend for budgeting purposes
\n \n \n Provide cost benefit analysis that compare your internal workloads with Amazon Web Services
\n \n \n Use GetServices
without a service code to retrieve the service codes for\n all Amazon Web Services, then GetServices
with a service code to\n retrieve the attribute names for that service. After you have the service code and\n attribute names, you can use GetAttributeValues
to see what values are\n available for an attribute. With the service code and an attribute name and value, you can\n use GetProducts
to find specific products that you're interested in, such as\n an AmazonEC2
instance, with a Provisioned IOPS
\n volumeType
.
\n For more information, see Using the\n Amazon Web Services Price List API in the Billing User\n Guide .
",
"smithy.api#title": "AWS Price List Service",
"smithy.rules#endpointRuleSet": {
"version": "1.0",
@@ -1042,7 +1042,7 @@
}
],
"traits": {
- "smithy.api#documentation": "\n \n This feature is in preview release and is subject to change. Your use of Amazon Web Services Price List API is subject to the Beta Service Participation terms of the Amazon Web Services Service Terms (Section 1.10). \n \n
\n This returns the URL that you can retrieve your Price List file from. This URL is based on\n the PriceListArn
and FileFormat
that you retrieve from the \n ListPriceLists
\n response.
"
+ "smithy.api#documentation": "\n \n This feature is in preview release and is subject to change. Your use of Amazon Web Services Price List API is subject to the Beta Service Participation terms of the Amazon Web Services Service Terms (Section 1.10). \n \n
\n This returns the URL that you can retrieve your Price List file from. This URL is based\n on the PriceListArn
and FileFormat
that you retrieve from the\n ListPriceLists response.
"
}
},
"com.amazonaws.pricing#GetPriceListFileUrlRequest": {
@@ -1051,14 +1051,14 @@
"PriceListArn": {
"target": "com.amazonaws.pricing#PriceListArn",
"traits": {
- "smithy.api#documentation": "The unique identifier that maps to where your Price List files are located.\n PriceListArn
can be obtained from the \n ListPriceLists
\n response.
",
+ "smithy.api#documentation": "The unique identifier that maps to where your Price List files are located.\n PriceListArn
can be obtained from the ListPriceLists response.
",
"smithy.api#required": {}
}
},
"FileFormat": {
"target": "com.amazonaws.pricing#FileFormat",
"traits": {
- "smithy.api#documentation": "The format that you want to retrieve your Price List files in. The\n FileFormat
can be obtained from the \n ListPriceLists
\n response.
",
+ "smithy.api#documentation": "The format that you want to retrieve your Price List files in. The\n FileFormat
can be obtained from the ListPriceLists response.
",
"smithy.api#required": {}
}
}
@@ -1250,7 +1250,7 @@
}
],
"traits": {
- "smithy.api#documentation": "\n \n This feature is in preview release and is subject to change. Your use of Amazon Web Services Price List API is subject to the Beta Service Participation terms of the Amazon Web Services Service Terms (Section 1.10). \n \n
\n This returns a list of Price List references that the requester if authorized to view, given a ServiceCode
, CurrencyCode
, and an EffectiveDate
.\n Use without a RegionCode
filter to list Price List references from all\n available Amazon Web Services Regions. Use with a RegionCode
filter to get the\n Price List reference that's specific to a specific Amazon Web Services Region. You can use\n the PriceListArn
from the response to get your preferred Price List files\n through the \n GetPriceListFileUrl
\n API.
",
+ "smithy.api#documentation": "\n \n This feature is in preview release and is subject to change. Your use of Amazon Web Services Price List API is subject to the Beta Service Participation terms of the Amazon Web Services Service Terms (Section 1.10). \n \n
\n This returns a list of Price List references that the requester if authorized to view,\n given a ServiceCode
, CurrencyCode
, and an\n EffectiveDate
. Use without a RegionCode
filter to list Price\n List references from all available Amazon Web Services Regions. Use with a\n RegionCode
filter to get the Price List reference that's specific to a\n specific Amazon Web Services Region. You can use the PriceListArn
from the\n response to get your preferred Price List files through the GetPriceListFileUrl API.
",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
@@ -1265,7 +1265,7 @@
"ServiceCode": {
"target": "com.amazonaws.pricing#ServiceCode",
"traits": {
- "smithy.api#documentation": "The service code or the Savings Plan service code for the attributes that\n you want to retrieve. For example, to get the list of applicable Amazon EC2 price lists, use\n AmazonEC2
. For a full list of service codes containing On-Demand and\n Reserved Instance (RI) pricing, use the \n DescribeServices
\n API.
\n To retrieve the Compute Savings Plan price lists, use ComputeSavingsPlans
. To retrieve Machine Learning Savings Plans price lists, use MachineLearningSavingsPlans
.\n
",
+ "smithy.api#documentation": "The service code or the Savings Plan service code for the attributes that\n you want to retrieve. For example, to get the list of applicable Amazon EC2 price\n lists, use AmazonEC2
. For a full list of service codes containing On-Demand\n and Reserved Instance (RI) pricing, use the DescribeServices API.
\n To retrieve the Reserved Instance and Compute Savings Plan price lists,\n use ComputeSavingsPlans
.
\n To retrieve Machine Learning Savings Plans price lists, use\n MachineLearningSavingsPlans
.
",
"smithy.api#required": {}
}
},
@@ -1279,7 +1279,7 @@
"RegionCode": {
"target": "com.amazonaws.pricing#RegionCode",
"traits": {
- "smithy.api#documentation": "This is used to filter the Price List by Amazon Web Services Region. For example, to get\n the price list only for the US East (N. Virginia)
Region, use\n us-east-1
. If nothing is specified, you retrieve price lists for all\n applicable Regions. The available RegionCode
list can be retrieved from \n GetAttributeValues
\n API.
"
+ "smithy.api#documentation": "This is used to filter the Price List by Amazon Web Services Region. For example, to get\n the price list only for the US East (N. Virginia)
Region, use\n us-east-1
. If nothing is specified, you retrieve price lists for all\n applicable Regions. The available RegionCode
list can be retrieved from GetAttributeValues API.
"
}
},
"CurrencyCode": {
@@ -1462,4 +1462,4 @@
"type": "string"
}
}
-}
\ No newline at end of file
+}
From 4ce1e296e2ef4433d5463aa424028c4787ffc2ba Mon Sep 17 00:00:00 2001
From: awstools
Date: Thu, 12 Oct 2023 18:24:09 +0000
Subject: [PATCH 28/35] feat(client-textract): This release adds 9 new APIs for
adapter and adapter version management, 3 new APIs for tagging, and updates
AnalyzeDocument and StartDocumentAnalysis API parameters for using adapters.
---
clients/client-textract/README.md | 110 +-
clients/client-textract/package.json | 4 +-
clients/client-textract/src/Textract.ts | 226 +++
clients/client-textract/src/TextractClient.ts | 52 +-
.../src/commands/AnalyzeDocumentCommand.ts | 11 +
.../src/commands/CreateAdapterCommand.ts | 200 ++
.../commands/CreateAdapterVersionCommand.ts | 222 +++
.../src/commands/DeleteAdapterCommand.ts | 173 ++
.../commands/DeleteAdapterVersionCommand.ts | 177 ++
.../src/commands/GetAdapterCommand.ts | 183 ++
.../src/commands/GetAdapterVersionCommand.ts | 214 +++
.../commands/ListAdapterVersionsCommand.ts | 190 ++
.../src/commands/ListAdaptersCommand.ts | 182 ++
.../commands/ListTagsForResourceCommand.ts | 176 ++
.../commands/StartDocumentAnalysisCommand.ts | 11 +
.../src/commands/TagResourceCommand.ts | 176 ++
.../src/commands/UntagResourceCommand.ts | 173 ++
.../src/commands/UpdateAdapterCommand.ts | 186 ++
clients/client-textract/src/commands/index.ts | 12 +
clients/client-textract/src/index.ts | 1 +
.../client-textract/src/models/models_0.ts | 1232 ++++++++++--
.../src/pagination/Interfaces.ts | 11 +
.../ListAdapterVersionsPaginator.ts | 50 +
.../src/pagination/ListAdaptersPaginator.ts | 50 +
.../client-textract/src/pagination/index.ts | 4 +
.../src/protocols/Aws_json1_1.ts | 1694 +++++++++++++++--
codegen/sdk-codegen/aws-models/textract.json | 1640 +++++++++++++++-
27 files changed, 7006 insertions(+), 354 deletions(-)
create mode 100644 clients/client-textract/src/commands/CreateAdapterCommand.ts
create mode 100644 clients/client-textract/src/commands/CreateAdapterVersionCommand.ts
create mode 100644 clients/client-textract/src/commands/DeleteAdapterCommand.ts
create mode 100644 clients/client-textract/src/commands/DeleteAdapterVersionCommand.ts
create mode 100644 clients/client-textract/src/commands/GetAdapterCommand.ts
create mode 100644 clients/client-textract/src/commands/GetAdapterVersionCommand.ts
create mode 100644 clients/client-textract/src/commands/ListAdapterVersionsCommand.ts
create mode 100644 clients/client-textract/src/commands/ListAdaptersCommand.ts
create mode 100644 clients/client-textract/src/commands/ListTagsForResourceCommand.ts
create mode 100644 clients/client-textract/src/commands/TagResourceCommand.ts
create mode 100644 clients/client-textract/src/commands/UntagResourceCommand.ts
create mode 100644 clients/client-textract/src/commands/UpdateAdapterCommand.ts
create mode 100644 clients/client-textract/src/pagination/Interfaces.ts
create mode 100644 clients/client-textract/src/pagination/ListAdapterVersionsPaginator.ts
create mode 100644 clients/client-textract/src/pagination/ListAdaptersPaginator.ts
create mode 100644 clients/client-textract/src/pagination/index.ts
diff --git a/clients/client-textract/README.md b/clients/client-textract/README.md
index de68e1fc22d50..682e8dca63c0a 100644
--- a/clients/client-textract/README.md
+++ b/clients/client-textract/README.md
@@ -25,16 +25,16 @@ using your favorite package manager:
The AWS SDK is modulized by clients and commands.
To send a request, you only need to import the `TextractClient` and
-the commands you need, for example `GetDocumentAnalysisCommand`:
+the commands you need, for example `ListAdaptersCommand`:
```js
// ES5 example
-const { TextractClient, GetDocumentAnalysisCommand } = require("@aws-sdk/client-textract");
+const { TextractClient, ListAdaptersCommand } = require("@aws-sdk/client-textract");
```
```ts
// ES6+ example
-import { TextractClient, GetDocumentAnalysisCommand } from "@aws-sdk/client-textract";
+import { TextractClient, ListAdaptersCommand } from "@aws-sdk/client-textract";
```
### Usage
@@ -53,7 +53,7 @@ const client = new TextractClient({ region: "REGION" });
const params = {
/** input parameters */
};
-const command = new GetDocumentAnalysisCommand(params);
+const command = new ListAdaptersCommand(params);
```
#### Async/await
@@ -132,7 +132,7 @@ const client = new AWS.Textract({ region: "REGION" });
// async/await.
try {
- const data = await client.getDocumentAnalysis(params);
+ const data = await client.listAdapters(params);
// process data.
} catch (error) {
// error handling.
@@ -140,7 +140,7 @@ try {
// Promises.
client
- .getDocumentAnalysis(params)
+ .listAdapters(params)
.then((data) => {
// process data.
})
@@ -149,7 +149,7 @@ client
});
// callbacks.
-client.getDocumentAnalysis(params, (err, data) => {
+client.listAdapters(params, (err, data) => {
// process err and data.
});
```
@@ -228,6 +228,38 @@ AnalyzeID
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/classes/analyzeidcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/interfaces/analyzeidcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/interfaces/analyzeidcommandoutput.html)
+
+
+
+CreateAdapter
+
+
+[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/classes/createadaptercommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/interfaces/createadaptercommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/interfaces/createadaptercommandoutput.html)
+
+
+
+
+CreateAdapterVersion
+
+
+[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/classes/createadapterversioncommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/interfaces/createadapterversioncommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/interfaces/createadapterversioncommandoutput.html)
+
+
+
+
+DeleteAdapter
+
+
+[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/classes/deleteadaptercommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/interfaces/deleteadaptercommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/interfaces/deleteadaptercommandoutput.html)
+
+
+
+
+DeleteAdapterVersion
+
+
+[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/classes/deleteadapterversioncommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/interfaces/deleteadapterversioncommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/interfaces/deleteadapterversioncommandoutput.html)
+
@@ -236,6 +268,22 @@ DetectDocumentText
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/classes/detectdocumenttextcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/interfaces/detectdocumenttextcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/interfaces/detectdocumenttextcommandoutput.html)
+
+
+
+GetAdapter
+
+
+[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/classes/getadaptercommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/interfaces/getadaptercommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/interfaces/getadaptercommandoutput.html)
+
+
+
+
+GetAdapterVersion
+
+
+[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/classes/getadapterversioncommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/interfaces/getadapterversioncommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/interfaces/getadapterversioncommandoutput.html)
+
@@ -276,6 +324,30 @@ GetLendingAnalysisSummary
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/classes/getlendinganalysissummarycommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/interfaces/getlendinganalysissummarycommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/interfaces/getlendinganalysissummarycommandoutput.html)
+
+
+
+ListAdapters
+
+
+[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/classes/listadapterscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/interfaces/listadapterscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/interfaces/listadapterscommandoutput.html)
+
+
+
+
+ListAdapterVersions
+
+
+[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/classes/listadapterversionscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/interfaces/listadapterversionscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/interfaces/listadapterversionscommandoutput.html)
+
+
+
+
+ListTagsForResource
+
+
+[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/classes/listtagsforresourcecommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/interfaces/listtagsforresourcecommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/interfaces/listtagsforresourcecommandoutput.html)
+
@@ -309,3 +381,27 @@ StartLendingAnalysis
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/classes/startlendinganalysiscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/interfaces/startlendinganalysiscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/interfaces/startlendinganalysiscommandoutput.html)
+
+
+TagResource
+
+
+[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/classes/tagresourcecommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/interfaces/tagresourcecommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/interfaces/tagresourcecommandoutput.html)
+
+
+
+
+UntagResource
+
+
+[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/classes/untagresourcecommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/interfaces/untagresourcecommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/interfaces/untagresourcecommandoutput.html)
+
+
+
+
+UpdateAdapter
+
+
+[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/classes/updateadaptercommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/interfaces/updateadaptercommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-textract/interfaces/updateadaptercommandoutput.html)
+
+
diff --git a/clients/client-textract/package.json b/clients/client-textract/package.json
index f6e3ec0001f79..a9b9060f94745 100644
--- a/clients/client-textract/package.json
+++ b/clients/client-textract/package.json
@@ -55,12 +55,14 @@
"@smithy/util-defaults-mode-node": "^2.0.19",
"@smithy/util-retry": "^2.0.4",
"@smithy/util-utf8": "^2.0.0",
- "tslib": "^2.5.0"
+ "tslib": "^2.5.0",
+ "uuid": "^8.3.2"
},
"devDependencies": {
"@smithy/service-client-documentation-generator": "^2.0.0",
"@tsconfig/node14": "1.0.3",
"@types/node": "^14.14.31",
+ "@types/uuid": "^8.3.0",
"concurrently": "7.0.0",
"downlevel-dts": "0.10.1",
"rimraf": "3.0.2",
diff --git a/clients/client-textract/src/Textract.ts b/clients/client-textract/src/Textract.ts
index 4f1c9ff20183f..b7649587c1b87 100644
--- a/clients/client-textract/src/Textract.ts
+++ b/clients/client-textract/src/Textract.ts
@@ -13,11 +13,37 @@ import {
AnalyzeExpenseCommandOutput,
} from "./commands/AnalyzeExpenseCommand";
import { AnalyzeIDCommand, AnalyzeIDCommandInput, AnalyzeIDCommandOutput } from "./commands/AnalyzeIDCommand";
+import {
+ CreateAdapterCommand,
+ CreateAdapterCommandInput,
+ CreateAdapterCommandOutput,
+} from "./commands/CreateAdapterCommand";
+import {
+ CreateAdapterVersionCommand,
+ CreateAdapterVersionCommandInput,
+ CreateAdapterVersionCommandOutput,
+} from "./commands/CreateAdapterVersionCommand";
+import {
+ DeleteAdapterCommand,
+ DeleteAdapterCommandInput,
+ DeleteAdapterCommandOutput,
+} from "./commands/DeleteAdapterCommand";
+import {
+ DeleteAdapterVersionCommand,
+ DeleteAdapterVersionCommandInput,
+ DeleteAdapterVersionCommandOutput,
+} from "./commands/DeleteAdapterVersionCommand";
import {
DetectDocumentTextCommand,
DetectDocumentTextCommandInput,
DetectDocumentTextCommandOutput,
} from "./commands/DetectDocumentTextCommand";
+import { GetAdapterCommand, GetAdapterCommandInput, GetAdapterCommandOutput } from "./commands/GetAdapterCommand";
+import {
+ GetAdapterVersionCommand,
+ GetAdapterVersionCommandInput,
+ GetAdapterVersionCommandOutput,
+} from "./commands/GetAdapterVersionCommand";
import {
GetDocumentAnalysisCommand,
GetDocumentAnalysisCommandInput,
@@ -43,6 +69,21 @@ import {
GetLendingAnalysisSummaryCommandInput,
GetLendingAnalysisSummaryCommandOutput,
} from "./commands/GetLendingAnalysisSummaryCommand";
+import {
+ ListAdaptersCommand,
+ ListAdaptersCommandInput,
+ ListAdaptersCommandOutput,
+} from "./commands/ListAdaptersCommand";
+import {
+ ListAdapterVersionsCommand,
+ ListAdapterVersionsCommandInput,
+ ListAdapterVersionsCommandOutput,
+} from "./commands/ListAdapterVersionsCommand";
+import {
+ ListTagsForResourceCommand,
+ ListTagsForResourceCommandInput,
+ ListTagsForResourceCommandOutput,
+} from "./commands/ListTagsForResourceCommand";
import {
StartDocumentAnalysisCommand,
StartDocumentAnalysisCommandInput,
@@ -63,22 +104,45 @@ import {
StartLendingAnalysisCommandInput,
StartLendingAnalysisCommandOutput,
} from "./commands/StartLendingAnalysisCommand";
+import { TagResourceCommand, TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
+import {
+ UntagResourceCommand,
+ UntagResourceCommandInput,
+ UntagResourceCommandOutput,
+} from "./commands/UntagResourceCommand";
+import {
+ UpdateAdapterCommand,
+ UpdateAdapterCommandInput,
+ UpdateAdapterCommandOutput,
+} from "./commands/UpdateAdapterCommand";
import { TextractClient, TextractClientConfig } from "./TextractClient";
const commands = {
AnalyzeDocumentCommand,
AnalyzeExpenseCommand,
AnalyzeIDCommand,
+ CreateAdapterCommand,
+ CreateAdapterVersionCommand,
+ DeleteAdapterCommand,
+ DeleteAdapterVersionCommand,
DetectDocumentTextCommand,
+ GetAdapterCommand,
+ GetAdapterVersionCommand,
GetDocumentAnalysisCommand,
GetDocumentTextDetectionCommand,
GetExpenseAnalysisCommand,
GetLendingAnalysisCommand,
GetLendingAnalysisSummaryCommand,
+ ListAdaptersCommand,
+ ListAdapterVersionsCommand,
+ ListTagsForResourceCommand,
StartDocumentAnalysisCommand,
StartDocumentTextDetectionCommand,
StartExpenseAnalysisCommand,
StartLendingAnalysisCommand,
+ TagResourceCommand,
+ UntagResourceCommand,
+ UpdateAdapterCommand,
};
export interface Textract {
@@ -121,6 +185,62 @@ export interface Textract {
cb: (err: any, data?: AnalyzeIDCommandOutput) => void
): void;
+ /**
+ * @see {@link CreateAdapterCommand}
+ */
+ createAdapter(args: CreateAdapterCommandInput, options?: __HttpHandlerOptions): Promise;
+ createAdapter(args: CreateAdapterCommandInput, cb: (err: any, data?: CreateAdapterCommandOutput) => void): void;
+ createAdapter(
+ args: CreateAdapterCommandInput,
+ options: __HttpHandlerOptions,
+ cb: (err: any, data?: CreateAdapterCommandOutput) => void
+ ): void;
+
+ /**
+ * @see {@link CreateAdapterVersionCommand}
+ */
+ createAdapterVersion(
+ args: CreateAdapterVersionCommandInput,
+ options?: __HttpHandlerOptions
+ ): Promise;
+ createAdapterVersion(
+ args: CreateAdapterVersionCommandInput,
+ cb: (err: any, data?: CreateAdapterVersionCommandOutput) => void
+ ): void;
+ createAdapterVersion(
+ args: CreateAdapterVersionCommandInput,
+ options: __HttpHandlerOptions,
+ cb: (err: any, data?: CreateAdapterVersionCommandOutput) => void
+ ): void;
+
+ /**
+ * @see {@link DeleteAdapterCommand}
+ */
+ deleteAdapter(args: DeleteAdapterCommandInput, options?: __HttpHandlerOptions): Promise;
+ deleteAdapter(args: DeleteAdapterCommandInput, cb: (err: any, data?: DeleteAdapterCommandOutput) => void): void;
+ deleteAdapter(
+ args: DeleteAdapterCommandInput,
+ options: __HttpHandlerOptions,
+ cb: (err: any, data?: DeleteAdapterCommandOutput) => void
+ ): void;
+
+ /**
+ * @see {@link DeleteAdapterVersionCommand}
+ */
+ deleteAdapterVersion(
+ args: DeleteAdapterVersionCommandInput,
+ options?: __HttpHandlerOptions
+ ): Promise;
+ deleteAdapterVersion(
+ args: DeleteAdapterVersionCommandInput,
+ cb: (err: any, data?: DeleteAdapterVersionCommandOutput) => void
+ ): void;
+ deleteAdapterVersion(
+ args: DeleteAdapterVersionCommandInput,
+ options: __HttpHandlerOptions,
+ cb: (err: any, data?: DeleteAdapterVersionCommandOutput) => void
+ ): void;
+
/**
* @see {@link DetectDocumentTextCommand}
*/
@@ -138,6 +258,34 @@ export interface Textract {
cb: (err: any, data?: DetectDocumentTextCommandOutput) => void
): void;
+ /**
+ * @see {@link GetAdapterCommand}
+ */
+ getAdapter(args: GetAdapterCommandInput, options?: __HttpHandlerOptions): Promise;
+ getAdapter(args: GetAdapterCommandInput, cb: (err: any, data?: GetAdapterCommandOutput) => void): void;
+ getAdapter(
+ args: GetAdapterCommandInput,
+ options: __HttpHandlerOptions,
+ cb: (err: any, data?: GetAdapterCommandOutput) => void
+ ): void;
+
+ /**
+ * @see {@link GetAdapterVersionCommand}
+ */
+ getAdapterVersion(
+ args: GetAdapterVersionCommandInput,
+ options?: __HttpHandlerOptions
+ ): Promise;
+ getAdapterVersion(
+ args: GetAdapterVersionCommandInput,
+ cb: (err: any, data?: GetAdapterVersionCommandOutput) => void
+ ): void;
+ getAdapterVersion(
+ args: GetAdapterVersionCommandInput,
+ options: __HttpHandlerOptions,
+ cb: (err: any, data?: GetAdapterVersionCommandOutput) => void
+ ): void;
+
/**
* @see {@link GetDocumentAnalysisCommand}
*/
@@ -223,6 +371,51 @@ export interface Textract {
cb: (err: any, data?: GetLendingAnalysisSummaryCommandOutput) => void
): void;
+ /**
+ * @see {@link ListAdaptersCommand}
+ */
+ listAdapters(args: ListAdaptersCommandInput, options?: __HttpHandlerOptions): Promise;
+ listAdapters(args: ListAdaptersCommandInput, cb: (err: any, data?: ListAdaptersCommandOutput) => void): void;
+ listAdapters(
+ args: ListAdaptersCommandInput,
+ options: __HttpHandlerOptions,
+ cb: (err: any, data?: ListAdaptersCommandOutput) => void
+ ): void;
+
+ /**
+ * @see {@link ListAdapterVersionsCommand}
+ */
+ listAdapterVersions(
+ args: ListAdapterVersionsCommandInput,
+ options?: __HttpHandlerOptions
+ ): Promise;
+ listAdapterVersions(
+ args: ListAdapterVersionsCommandInput,
+ cb: (err: any, data?: ListAdapterVersionsCommandOutput) => void
+ ): void;
+ listAdapterVersions(
+ args: ListAdapterVersionsCommandInput,
+ options: __HttpHandlerOptions,
+ cb: (err: any, data?: ListAdapterVersionsCommandOutput) => void
+ ): void;
+
+ /**
+ * @see {@link ListTagsForResourceCommand}
+ */
+ listTagsForResource(
+ args: ListTagsForResourceCommandInput,
+ options?: __HttpHandlerOptions
+ ): Promise;
+ listTagsForResource(
+ args: ListTagsForResourceCommandInput,
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
+ ): void;
+ listTagsForResource(
+ args: ListTagsForResourceCommandInput,
+ options: __HttpHandlerOptions,
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
+ ): void;
+
/**
* @see {@link StartDocumentAnalysisCommand}
*/
@@ -290,6 +483,39 @@ export interface Textract {
options: __HttpHandlerOptions,
cb: (err: any, data?: StartLendingAnalysisCommandOutput) => void
): void;
+
+ /**
+ * @see {@link TagResourceCommand}
+ */
+ tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise;
+ tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
+ tagResource(
+ args: TagResourceCommandInput,
+ options: __HttpHandlerOptions,
+ cb: (err: any, data?: TagResourceCommandOutput) => void
+ ): void;
+
+ /**
+ * @see {@link UntagResourceCommand}
+ */
+ untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise;
+ untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
+ untagResource(
+ args: UntagResourceCommandInput,
+ options: __HttpHandlerOptions,
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
+ ): void;
+
+ /**
+ * @see {@link UpdateAdapterCommand}
+ */
+ updateAdapter(args: UpdateAdapterCommandInput, options?: __HttpHandlerOptions): Promise;
+ updateAdapter(args: UpdateAdapterCommandInput, cb: (err: any, data?: UpdateAdapterCommandOutput) => void): void;
+ updateAdapter(
+ args: UpdateAdapterCommandInput,
+ options: __HttpHandlerOptions,
+ cb: (err: any, data?: UpdateAdapterCommandOutput) => void
+ ): void;
}
/**
diff --git a/clients/client-textract/src/TextractClient.ts b/clients/client-textract/src/TextractClient.ts
index cdd69f49b18e0..e8840156431f1 100644
--- a/clients/client-textract/src/TextractClient.ts
+++ b/clients/client-textract/src/TextractClient.ts
@@ -53,7 +53,19 @@ import {
import { AnalyzeDocumentCommandInput, AnalyzeDocumentCommandOutput } from "./commands/AnalyzeDocumentCommand";
import { AnalyzeExpenseCommandInput, AnalyzeExpenseCommandOutput } from "./commands/AnalyzeExpenseCommand";
import { AnalyzeIDCommandInput, AnalyzeIDCommandOutput } from "./commands/AnalyzeIDCommand";
+import { CreateAdapterCommandInput, CreateAdapterCommandOutput } from "./commands/CreateAdapterCommand";
+import {
+ CreateAdapterVersionCommandInput,
+ CreateAdapterVersionCommandOutput,
+} from "./commands/CreateAdapterVersionCommand";
+import { DeleteAdapterCommandInput, DeleteAdapterCommandOutput } from "./commands/DeleteAdapterCommand";
+import {
+ DeleteAdapterVersionCommandInput,
+ DeleteAdapterVersionCommandOutput,
+} from "./commands/DeleteAdapterVersionCommand";
import { DetectDocumentTextCommandInput, DetectDocumentTextCommandOutput } from "./commands/DetectDocumentTextCommand";
+import { GetAdapterCommandInput, GetAdapterCommandOutput } from "./commands/GetAdapterCommand";
+import { GetAdapterVersionCommandInput, GetAdapterVersionCommandOutput } from "./commands/GetAdapterVersionCommand";
import {
GetDocumentAnalysisCommandInput,
GetDocumentAnalysisCommandOutput,
@@ -68,6 +80,15 @@ import {
GetLendingAnalysisSummaryCommandInput,
GetLendingAnalysisSummaryCommandOutput,
} from "./commands/GetLendingAnalysisSummaryCommand";
+import { ListAdaptersCommandInput, ListAdaptersCommandOutput } from "./commands/ListAdaptersCommand";
+import {
+ ListAdapterVersionsCommandInput,
+ ListAdapterVersionsCommandOutput,
+} from "./commands/ListAdapterVersionsCommand";
+import {
+ ListTagsForResourceCommandInput,
+ ListTagsForResourceCommandOutput,
+} from "./commands/ListTagsForResourceCommand";
import {
StartDocumentAnalysisCommandInput,
StartDocumentAnalysisCommandOutput,
@@ -84,6 +105,9 @@ import {
StartLendingAnalysisCommandInput,
StartLendingAnalysisCommandOutput,
} from "./commands/StartLendingAnalysisCommand";
+import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
+import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
+import { UpdateAdapterCommandInput, UpdateAdapterCommandOutput } from "./commands/UpdateAdapterCommand";
import {
ClientInputEndpointParameters,
ClientResolvedEndpointParameters,
@@ -102,16 +126,28 @@ export type ServiceInputTypes =
| AnalyzeDocumentCommandInput
| AnalyzeExpenseCommandInput
| AnalyzeIDCommandInput
+ | CreateAdapterCommandInput
+ | CreateAdapterVersionCommandInput
+ | DeleteAdapterCommandInput
+ | DeleteAdapterVersionCommandInput
| DetectDocumentTextCommandInput
+ | GetAdapterCommandInput
+ | GetAdapterVersionCommandInput
| GetDocumentAnalysisCommandInput
| GetDocumentTextDetectionCommandInput
| GetExpenseAnalysisCommandInput
| GetLendingAnalysisCommandInput
| GetLendingAnalysisSummaryCommandInput
+ | ListAdapterVersionsCommandInput
+ | ListAdaptersCommandInput
+ | ListTagsForResourceCommandInput
| StartDocumentAnalysisCommandInput
| StartDocumentTextDetectionCommandInput
| StartExpenseAnalysisCommandInput
- | StartLendingAnalysisCommandInput;
+ | StartLendingAnalysisCommandInput
+ | TagResourceCommandInput
+ | UntagResourceCommandInput
+ | UpdateAdapterCommandInput;
/**
* @public
@@ -120,16 +156,28 @@ export type ServiceOutputTypes =
| AnalyzeDocumentCommandOutput
| AnalyzeExpenseCommandOutput
| AnalyzeIDCommandOutput
+ | CreateAdapterCommandOutput
+ | CreateAdapterVersionCommandOutput
+ | DeleteAdapterCommandOutput
+ | DeleteAdapterVersionCommandOutput
| DetectDocumentTextCommandOutput
+ | GetAdapterCommandOutput
+ | GetAdapterVersionCommandOutput
| GetDocumentAnalysisCommandOutput
| GetDocumentTextDetectionCommandOutput
| GetExpenseAnalysisCommandOutput
| GetLendingAnalysisCommandOutput
| GetLendingAnalysisSummaryCommandOutput
+ | ListAdapterVersionsCommandOutput
+ | ListAdaptersCommandOutput
+ | ListTagsForResourceCommandOutput
| StartDocumentAnalysisCommandOutput
| StartDocumentTextDetectionCommandOutput
| StartExpenseAnalysisCommandOutput
- | StartLendingAnalysisCommandOutput;
+ | StartLendingAnalysisCommandOutput
+ | TagResourceCommandOutput
+ | UntagResourceCommandOutput
+ | UpdateAdapterCommandOutput;
/**
* @public
diff --git a/clients/client-textract/src/commands/AnalyzeDocumentCommand.ts b/clients/client-textract/src/commands/AnalyzeDocumentCommand.ts
index f197ca7c02b8f..5bd995134af6b 100644
--- a/clients/client-textract/src/commands/AnalyzeDocumentCommand.ts
+++ b/clients/client-textract/src/commands/AnalyzeDocumentCommand.ts
@@ -122,6 +122,17 @@ export interface AnalyzeDocumentCommandOutput extends AnalyzeDocumentResponse, _
* },
* ],
* },
+ * AdaptersConfig: { // AdaptersConfig
+ * Adapters: [ // Adapters // required
+ * { // Adapter
+ * AdapterId: "STRING_VALUE", // required
+ * Pages: [ // AdapterPages
+ * "STRING_VALUE",
+ * ],
+ * Version: "STRING_VALUE", // required
+ * },
+ * ],
+ * },
* };
* const command = new AnalyzeDocumentCommand(input);
* const response = await client.send(command);
diff --git a/clients/client-textract/src/commands/CreateAdapterCommand.ts b/clients/client-textract/src/commands/CreateAdapterCommand.ts
new file mode 100644
index 0000000000000..56dc568ddb0c8
--- /dev/null
+++ b/clients/client-textract/src/commands/CreateAdapterCommand.ts
@@ -0,0 +1,200 @@
+// smithy-typescript generated code
+import { EndpointParameterInstructions, getEndpointPlugin } from "@smithy/middleware-endpoint";
+import { getSerdePlugin } from "@smithy/middleware-serde";
+import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
+import { Command as $Command } from "@smithy/smithy-client";
+import {
+ FinalizeHandlerArguments,
+ Handler,
+ HandlerExecutionContext,
+ HttpHandlerOptions as __HttpHandlerOptions,
+ MetadataBearer as __MetadataBearer,
+ MiddlewareStack,
+ SerdeContext as __SerdeContext,
+ SMITHY_CONTEXT_KEY,
+} from "@smithy/types";
+
+import { CreateAdapterRequest, CreateAdapterResponse } from "../models/models_0";
+import { de_CreateAdapterCommand, se_CreateAdapterCommand } from "../protocols/Aws_json1_1";
+import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient";
+
+/**
+ * @public
+ */
+export { __MetadataBearer, $Command };
+/**
+ * @public
+ *
+ * The input for {@link CreateAdapterCommand}.
+ */
+export interface CreateAdapterCommandInput extends CreateAdapterRequest {}
+/**
+ * @public
+ *
+ * The output of {@link CreateAdapterCommand}.
+ */
+export interface CreateAdapterCommandOutput extends CreateAdapterResponse, __MetadataBearer {}
+
+/**
+ * @public
+ * Creates an adapter, which can be fine-tuned for enhanced performance on user provided
+ * documents. Takes an AdapterName and FeatureType. Currently the only supported feature type
+ * is QUERIES
. You can also provide a Description, Tags, and a
+ * ClientRequestToken. You can choose whether or not the adapter should be AutoUpdated with
+ * the AutoUpdate argument. By default, AutoUpdate is set to DISABLED.
+ * @example
+ * Use a bare-bones client and the command you need to make an API call.
+ * ```javascript
+ * import { TextractClient, CreateAdapterCommand } from "@aws-sdk/client-textract"; // ES Modules import
+ * // const { TextractClient, CreateAdapterCommand } = require("@aws-sdk/client-textract"); // CommonJS import
+ * const client = new TextractClient(config);
+ * const input = { // CreateAdapterRequest
+ * AdapterName: "STRING_VALUE", // required
+ * ClientRequestToken: "STRING_VALUE",
+ * Description: "STRING_VALUE",
+ * FeatureTypes: [ // FeatureTypes // required
+ * "TABLES" || "FORMS" || "QUERIES" || "SIGNATURES" || "LAYOUT",
+ * ],
+ * AutoUpdate: "ENABLED" || "DISABLED",
+ * Tags: { // TagMap
+ * "": "STRING_VALUE",
+ * },
+ * };
+ * const command = new CreateAdapterCommand(input);
+ * const response = await client.send(command);
+ * // { // CreateAdapterResponse
+ * // AdapterId: "STRING_VALUE",
+ * // };
+ *
+ * ```
+ *
+ * @param CreateAdapterCommandInput - {@link CreateAdapterCommandInput}
+ * @returns {@link CreateAdapterCommandOutput}
+ * @see {@link CreateAdapterCommandInput} for command's `input` shape.
+ * @see {@link CreateAdapterCommandOutput} for command's `response` shape.
+ * @see {@link TextractClientResolvedConfig | config} for TextractClient's `config` shape.
+ *
+ * @throws {@link AccessDeniedException} (client fault)
+ * You aren't authorized to perform the action. Use the Amazon Resource Name (ARN)
+ * of an authorized user or IAM role to perform the operation.
+ *
+ * @throws {@link ConflictException} (client fault)
+ * Updating or deleting a resource can cause an inconsistent state.
+ *
+ * @throws {@link IdempotentParameterMismatchException} (client fault)
+ * A ClientRequestToken
input parameter was reused with an operation, but at
+ * least one of the other input parameters is different from the previous call to the
+ * operation.
+ *
+ * @throws {@link InternalServerError} (server fault)
+ * Amazon Textract experienced a service issue. Try your call again.
+ *
+ * @throws {@link InvalidParameterException} (client fault)
+ * An input parameter violated a constraint. For example, in synchronous operations,
+ * an InvalidParameterException
exception occurs
+ * when neither of the S3Object
or Bytes
values are supplied in the Document
+ * request parameter.
+ * Validate your parameter before calling the API operation again.
+ *
+ * @throws {@link LimitExceededException} (client fault)
+ * An Amazon Textract service limit was exceeded. For example, if you start too many
+ * asynchronous jobs concurrently, calls to start operations
+ * (StartDocumentTextDetection
, for example) raise a LimitExceededException
+ * exception (HTTP status code: 400) until the number of concurrently running jobs is below
+ * the Amazon Textract service limit.
+ *
+ * @throws {@link ProvisionedThroughputExceededException} (client fault)
+ * The number of requests exceeded your throughput limit. If you want to increase this limit,
+ * contact Amazon Textract.
+ *
+ * @throws {@link ServiceQuotaExceededException} (client fault)
+ * Returned when a request cannot be completed as it would exceed a maximum service quota.
+ *
+ * @throws {@link ThrottlingException} (server fault)
+ * Amazon Textract is temporarily unable to process the request. Try your call again.
+ *
+ * @throws {@link ValidationException} (client fault)
+ * Indicates that a request was not valid. Check request for proper formatting.
+ *
+ * @throws {@link TextractServiceException}
+ * Base exception class for all service exceptions from Textract service.
+ *
+ */
+export class CreateAdapterCommand extends $Command<
+ CreateAdapterCommandInput,
+ CreateAdapterCommandOutput,
+ TextractClientResolvedConfig
+> {
+ // Start section: command_properties
+ // End section: command_properties
+
+ public static getEndpointParameterInstructions(): EndpointParameterInstructions {
+ return {
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
+ Endpoint: { type: "builtInParams", name: "endpoint" },
+ Region: { type: "builtInParams", name: "region" },
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
+ };
+ }
+
+ /**
+ * @public
+ */
+ constructor(readonly input: CreateAdapterCommandInput) {
+ // Start section: command_constructor
+ super();
+ // End section: command_constructor
+ }
+
+ /**
+ * @internal
+ */
+ resolveMiddleware(
+ clientStack: MiddlewareStack,
+ configuration: TextractClientResolvedConfig,
+ options?: __HttpHandlerOptions
+ ): Handler {
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
+ this.middlewareStack.use(getEndpointPlugin(configuration, CreateAdapterCommand.getEndpointParameterInstructions()));
+
+ const stack = clientStack.concat(this.middlewareStack);
+
+ const { logger } = configuration;
+ const clientName = "TextractClient";
+ const commandName = "CreateAdapterCommand";
+ const handlerExecutionContext: HandlerExecutionContext = {
+ logger,
+ clientName,
+ commandName,
+ inputFilterSensitiveLog: (_: any) => _,
+ outputFilterSensitiveLog: (_: any) => _,
+ [SMITHY_CONTEXT_KEY]: {
+ service: "Textract",
+ operation: "CreateAdapter",
+ },
+ };
+ const { requestHandler } = configuration;
+ return stack.resolve(
+ (request: FinalizeHandlerArguments) =>
+ requestHandler.handle(request.request as __HttpRequest, options || {}),
+ handlerExecutionContext
+ );
+ }
+
+ /**
+ * @internal
+ */
+ private serialize(input: CreateAdapterCommandInput, context: __SerdeContext): Promise<__HttpRequest> {
+ return se_CreateAdapterCommand(input, context);
+ }
+
+ /**
+ * @internal
+ */
+ private deserialize(output: __HttpResponse, context: __SerdeContext): Promise {
+ return de_CreateAdapterCommand(output, context);
+ }
+
+ // Start section: command_body_extra
+ // End section: command_body_extra
+}
diff --git a/clients/client-textract/src/commands/CreateAdapterVersionCommand.ts b/clients/client-textract/src/commands/CreateAdapterVersionCommand.ts
new file mode 100644
index 0000000000000..1c063a5e622f8
--- /dev/null
+++ b/clients/client-textract/src/commands/CreateAdapterVersionCommand.ts
@@ -0,0 +1,222 @@
+// smithy-typescript generated code
+import { EndpointParameterInstructions, getEndpointPlugin } from "@smithy/middleware-endpoint";
+import { getSerdePlugin } from "@smithy/middleware-serde";
+import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
+import { Command as $Command } from "@smithy/smithy-client";
+import {
+ FinalizeHandlerArguments,
+ Handler,
+ HandlerExecutionContext,
+ HttpHandlerOptions as __HttpHandlerOptions,
+ MetadataBearer as __MetadataBearer,
+ MiddlewareStack,
+ SerdeContext as __SerdeContext,
+ SMITHY_CONTEXT_KEY,
+} from "@smithy/types";
+
+import { CreateAdapterVersionRequest, CreateAdapterVersionResponse } from "../models/models_0";
+import { de_CreateAdapterVersionCommand, se_CreateAdapterVersionCommand } from "../protocols/Aws_json1_1";
+import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient";
+
+/**
+ * @public
+ */
+export { __MetadataBearer, $Command };
+/**
+ * @public
+ *
+ * The input for {@link CreateAdapterVersionCommand}.
+ */
+export interface CreateAdapterVersionCommandInput extends CreateAdapterVersionRequest {}
+/**
+ * @public
+ *
+ * The output of {@link CreateAdapterVersionCommand}.
+ */
+export interface CreateAdapterVersionCommandOutput extends CreateAdapterVersionResponse, __MetadataBearer {}
+
+/**
+ * @public
+ * Creates a new version of an adapter. Operates on a provided AdapterId and a specified
+ * dataset provided via the DatasetConfig argument. Requires that you
+ * specify an Amazon S3 bucket with the OutputConfig argument. You can provide an optional KMSKeyId,
+ * an optional ClientRequestToken, and optional tags.
+ * @example
+ * Use a bare-bones client and the command you need to make an API call.
+ * ```javascript
+ * import { TextractClient, CreateAdapterVersionCommand } from "@aws-sdk/client-textract"; // ES Modules import
+ * // const { TextractClient, CreateAdapterVersionCommand } = require("@aws-sdk/client-textract"); // CommonJS import
+ * const client = new TextractClient(config);
+ * const input = { // CreateAdapterVersionRequest
+ * AdapterId: "STRING_VALUE", // required
+ * ClientRequestToken: "STRING_VALUE",
+ * DatasetConfig: { // AdapterVersionDatasetConfig
+ * ManifestS3Object: { // S3Object
+ * Bucket: "STRING_VALUE",
+ * Name: "STRING_VALUE",
+ * Version: "STRING_VALUE",
+ * },
+ * },
+ * KMSKeyId: "STRING_VALUE",
+ * OutputConfig: { // OutputConfig
+ * S3Bucket: "STRING_VALUE", // required
+ * S3Prefix: "STRING_VALUE",
+ * },
+ * Tags: { // TagMap
+ * "": "STRING_VALUE",
+ * },
+ * };
+ * const command = new CreateAdapterVersionCommand(input);
+ * const response = await client.send(command);
+ * // { // CreateAdapterVersionResponse
+ * // AdapterId: "STRING_VALUE",
+ * // AdapterVersion: "STRING_VALUE",
+ * // };
+ *
+ * ```
+ *
+ * @param CreateAdapterVersionCommandInput - {@link CreateAdapterVersionCommandInput}
+ * @returns {@link CreateAdapterVersionCommandOutput}
+ * @see {@link CreateAdapterVersionCommandInput} for command's `input` shape.
+ * @see {@link CreateAdapterVersionCommandOutput} for command's `response` shape.
+ * @see {@link TextractClientResolvedConfig | config} for TextractClient's `config` shape.
+ *
+ * @throws {@link AccessDeniedException} (client fault)
+ * You aren't authorized to perform the action. Use the Amazon Resource Name (ARN)
+ * of an authorized user or IAM role to perform the operation.
+ *
+ * @throws {@link ConflictException} (client fault)
+ * Updating or deleting a resource can cause an inconsistent state.
+ *
+ * @throws {@link IdempotentParameterMismatchException} (client fault)
+ * A ClientRequestToken
input parameter was reused with an operation, but at
+ * least one of the other input parameters is different from the previous call to the
+ * operation.
+ *
+ * @throws {@link InternalServerError} (server fault)
+ * Amazon Textract experienced a service issue. Try your call again.
+ *
+ * @throws {@link InvalidKMSKeyException} (client fault)
+ * Indicates you do not have decrypt permissions with the KMS key entered, or the KMS key
+ * was entered incorrectly.
+ *
+ * @throws {@link InvalidParameterException} (client fault)
+ * An input parameter violated a constraint. For example, in synchronous operations,
+ * an InvalidParameterException
exception occurs
+ * when neither of the S3Object
or Bytes
values are supplied in the Document
+ * request parameter.
+ * Validate your parameter before calling the API operation again.
+ *
+ * @throws {@link InvalidS3ObjectException} (client fault)
+ * Amazon Textract is unable to access the S3 object that's specified in the request.
+ * for more information, Configure Access to Amazon S3
+ * For troubleshooting information, see Troubleshooting Amazon S3
+ *
+ *
+ * @throws {@link LimitExceededException} (client fault)
+ * An Amazon Textract service limit was exceeded. For example, if you start too many
+ * asynchronous jobs concurrently, calls to start operations
+ * (StartDocumentTextDetection
, for example) raise a LimitExceededException
+ * exception (HTTP status code: 400) until the number of concurrently running jobs is below
+ * the Amazon Textract service limit.
+ *
+ * @throws {@link ProvisionedThroughputExceededException} (client fault)
+ * The number of requests exceeded your throughput limit. If you want to increase this limit,
+ * contact Amazon Textract.
+ *
+ * @throws {@link ResourceNotFoundException} (client fault)
+ * Returned when an operation tried to access a nonexistent resource.
+ *
+ * @throws {@link ServiceQuotaExceededException} (client fault)
+ * Returned when a request cannot be completed as it would exceed a maximum service quota.
+ *
+ * @throws {@link ThrottlingException} (server fault)
+ * Amazon Textract is temporarily unable to process the request. Try your call again.
+ *
+ * @throws {@link ValidationException} (client fault)
+ * Indicates that a request was not valid. Check request for proper formatting.
+ *
+ * @throws {@link TextractServiceException}
+ * Base exception class for all service exceptions from Textract service.
+ *
+ */
+export class CreateAdapterVersionCommand extends $Command<
+ CreateAdapterVersionCommandInput,
+ CreateAdapterVersionCommandOutput,
+ TextractClientResolvedConfig
+> {
+ // Start section: command_properties
+ // End section: command_properties
+
+ public static getEndpointParameterInstructions(): EndpointParameterInstructions {
+ return {
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
+ Endpoint: { type: "builtInParams", name: "endpoint" },
+ Region: { type: "builtInParams", name: "region" },
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
+ };
+ }
+
+ /**
+ * @public
+ */
+ constructor(readonly input: CreateAdapterVersionCommandInput) {
+ // Start section: command_constructor
+ super();
+ // End section: command_constructor
+ }
+
+ /**
+ * @internal
+ */
+ resolveMiddleware(
+ clientStack: MiddlewareStack,
+ configuration: TextractClientResolvedConfig,
+ options?: __HttpHandlerOptions
+ ): Handler {
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
+ this.middlewareStack.use(
+ getEndpointPlugin(configuration, CreateAdapterVersionCommand.getEndpointParameterInstructions())
+ );
+
+ const stack = clientStack.concat(this.middlewareStack);
+
+ const { logger } = configuration;
+ const clientName = "TextractClient";
+ const commandName = "CreateAdapterVersionCommand";
+ const handlerExecutionContext: HandlerExecutionContext = {
+ logger,
+ clientName,
+ commandName,
+ inputFilterSensitiveLog: (_: any) => _,
+ outputFilterSensitiveLog: (_: any) => _,
+ [SMITHY_CONTEXT_KEY]: {
+ service: "Textract",
+ operation: "CreateAdapterVersion",
+ },
+ };
+ const { requestHandler } = configuration;
+ return stack.resolve(
+ (request: FinalizeHandlerArguments) =>
+ requestHandler.handle(request.request as __HttpRequest, options || {}),
+ handlerExecutionContext
+ );
+ }
+
+ /**
+ * @internal
+ */
+ private serialize(input: CreateAdapterVersionCommandInput, context: __SerdeContext): Promise<__HttpRequest> {
+ return se_CreateAdapterVersionCommand(input, context);
+ }
+
+ /**
+ * @internal
+ */
+ private deserialize(output: __HttpResponse, context: __SerdeContext): Promise {
+ return de_CreateAdapterVersionCommand(output, context);
+ }
+
+ // Start section: command_body_extra
+ // End section: command_body_extra
+}
diff --git a/clients/client-textract/src/commands/DeleteAdapterCommand.ts b/clients/client-textract/src/commands/DeleteAdapterCommand.ts
new file mode 100644
index 0000000000000..212ea055f8194
--- /dev/null
+++ b/clients/client-textract/src/commands/DeleteAdapterCommand.ts
@@ -0,0 +1,173 @@
+// smithy-typescript generated code
+import { EndpointParameterInstructions, getEndpointPlugin } from "@smithy/middleware-endpoint";
+import { getSerdePlugin } from "@smithy/middleware-serde";
+import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
+import { Command as $Command } from "@smithy/smithy-client";
+import {
+ FinalizeHandlerArguments,
+ Handler,
+ HandlerExecutionContext,
+ HttpHandlerOptions as __HttpHandlerOptions,
+ MetadataBearer as __MetadataBearer,
+ MiddlewareStack,
+ SerdeContext as __SerdeContext,
+ SMITHY_CONTEXT_KEY,
+} from "@smithy/types";
+
+import { DeleteAdapterRequest, DeleteAdapterResponse } from "../models/models_0";
+import { de_DeleteAdapterCommand, se_DeleteAdapterCommand } from "../protocols/Aws_json1_1";
+import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient";
+
+/**
+ * @public
+ */
+export { __MetadataBearer, $Command };
+/**
+ * @public
+ *
+ * The input for {@link DeleteAdapterCommand}.
+ */
+export interface DeleteAdapterCommandInput extends DeleteAdapterRequest {}
+/**
+ * @public
+ *
+ * The output of {@link DeleteAdapterCommand}.
+ */
+export interface DeleteAdapterCommandOutput extends DeleteAdapterResponse, __MetadataBearer {}
+
+/**
+ * @public
+ * Deletes an Amazon Textract adapter. Takes an AdapterId and deletes the adapter specified by the ID.
+ * @example
+ * Use a bare-bones client and the command you need to make an API call.
+ * ```javascript
+ * import { TextractClient, DeleteAdapterCommand } from "@aws-sdk/client-textract"; // ES Modules import
+ * // const { TextractClient, DeleteAdapterCommand } = require("@aws-sdk/client-textract"); // CommonJS import
+ * const client = new TextractClient(config);
+ * const input = { // DeleteAdapterRequest
+ * AdapterId: "STRING_VALUE", // required
+ * };
+ * const command = new DeleteAdapterCommand(input);
+ * const response = await client.send(command);
+ * // {};
+ *
+ * ```
+ *
+ * @param DeleteAdapterCommandInput - {@link DeleteAdapterCommandInput}
+ * @returns {@link DeleteAdapterCommandOutput}
+ * @see {@link DeleteAdapterCommandInput} for command's `input` shape.
+ * @see {@link DeleteAdapterCommandOutput} for command's `response` shape.
+ * @see {@link TextractClientResolvedConfig | config} for TextractClient's `config` shape.
+ *
+ * @throws {@link AccessDeniedException} (client fault)
+ * You aren't authorized to perform the action. Use the Amazon Resource Name (ARN)
+ * of an authorized user or IAM role to perform the operation.
+ *
+ * @throws {@link ConflictException} (client fault)
+ * Updating or deleting a resource can cause an inconsistent state.
+ *
+ * @throws {@link InternalServerError} (server fault)
+ * Amazon Textract experienced a service issue. Try your call again.
+ *
+ * @throws {@link InvalidParameterException} (client fault)
+ * An input parameter violated a constraint. For example, in synchronous operations,
+ * an InvalidParameterException
exception occurs
+ * when neither of the S3Object
or Bytes
values are supplied in the Document
+ * request parameter.
+ * Validate your parameter before calling the API operation again.
+ *
+ * @throws {@link ProvisionedThroughputExceededException} (client fault)
+ * The number of requests exceeded your throughput limit. If you want to increase this limit,
+ * contact Amazon Textract.
+ *
+ * @throws {@link ResourceNotFoundException} (client fault)
+ * Returned when an operation tried to access a nonexistent resource.
+ *
+ * @throws {@link ThrottlingException} (server fault)
+ * Amazon Textract is temporarily unable to process the request. Try your call again.
+ *
+ * @throws {@link ValidationException} (client fault)
+ * Indicates that a request was not valid. Check request for proper formatting.
+ *
+ * @throws {@link TextractServiceException}
+ * Base exception class for all service exceptions from Textract service.
+ *
+ */
+export class DeleteAdapterCommand extends $Command<
+ DeleteAdapterCommandInput,
+ DeleteAdapterCommandOutput,
+ TextractClientResolvedConfig
+> {
+ // Start section: command_properties
+ // End section: command_properties
+
+ public static getEndpointParameterInstructions(): EndpointParameterInstructions {
+ return {
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
+ Endpoint: { type: "builtInParams", name: "endpoint" },
+ Region: { type: "builtInParams", name: "region" },
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
+ };
+ }
+
+ /**
+ * @public
+ */
+ constructor(readonly input: DeleteAdapterCommandInput) {
+ // Start section: command_constructor
+ super();
+ // End section: command_constructor
+ }
+
+ /**
+ * @internal
+ */
+ resolveMiddleware(
+ clientStack: MiddlewareStack,
+ configuration: TextractClientResolvedConfig,
+ options?: __HttpHandlerOptions
+ ): Handler {
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
+ this.middlewareStack.use(getEndpointPlugin(configuration, DeleteAdapterCommand.getEndpointParameterInstructions()));
+
+ const stack = clientStack.concat(this.middlewareStack);
+
+ const { logger } = configuration;
+ const clientName = "TextractClient";
+ const commandName = "DeleteAdapterCommand";
+ const handlerExecutionContext: HandlerExecutionContext = {
+ logger,
+ clientName,
+ commandName,
+ inputFilterSensitiveLog: (_: any) => _,
+ outputFilterSensitiveLog: (_: any) => _,
+ [SMITHY_CONTEXT_KEY]: {
+ service: "Textract",
+ operation: "DeleteAdapter",
+ },
+ };
+ const { requestHandler } = configuration;
+ return stack.resolve(
+ (request: FinalizeHandlerArguments) =>
+ requestHandler.handle(request.request as __HttpRequest, options || {}),
+ handlerExecutionContext
+ );
+ }
+
+ /**
+ * @internal
+ */
+ private serialize(input: DeleteAdapterCommandInput, context: __SerdeContext): Promise<__HttpRequest> {
+ return se_DeleteAdapterCommand(input, context);
+ }
+
+ /**
+ * @internal
+ */
+ private deserialize(output: __HttpResponse, context: __SerdeContext): Promise {
+ return de_DeleteAdapterCommand(output, context);
+ }
+
+ // Start section: command_body_extra
+ // End section: command_body_extra
+}
diff --git a/clients/client-textract/src/commands/DeleteAdapterVersionCommand.ts b/clients/client-textract/src/commands/DeleteAdapterVersionCommand.ts
new file mode 100644
index 0000000000000..c69c2dceb7090
--- /dev/null
+++ b/clients/client-textract/src/commands/DeleteAdapterVersionCommand.ts
@@ -0,0 +1,177 @@
+// smithy-typescript generated code
+import { EndpointParameterInstructions, getEndpointPlugin } from "@smithy/middleware-endpoint";
+import { getSerdePlugin } from "@smithy/middleware-serde";
+import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
+import { Command as $Command } from "@smithy/smithy-client";
+import {
+ FinalizeHandlerArguments,
+ Handler,
+ HandlerExecutionContext,
+ HttpHandlerOptions as __HttpHandlerOptions,
+ MetadataBearer as __MetadataBearer,
+ MiddlewareStack,
+ SerdeContext as __SerdeContext,
+ SMITHY_CONTEXT_KEY,
+} from "@smithy/types";
+
+import { DeleteAdapterVersionRequest, DeleteAdapterVersionResponse } from "../models/models_0";
+import { de_DeleteAdapterVersionCommand, se_DeleteAdapterVersionCommand } from "../protocols/Aws_json1_1";
+import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient";
+
+/**
+ * @public
+ */
+export { __MetadataBearer, $Command };
+/**
+ * @public
+ *
+ * The input for {@link DeleteAdapterVersionCommand}.
+ */
+export interface DeleteAdapterVersionCommandInput extends DeleteAdapterVersionRequest {}
+/**
+ * @public
+ *
+ * The output of {@link DeleteAdapterVersionCommand}.
+ */
+export interface DeleteAdapterVersionCommandOutput extends DeleteAdapterVersionResponse, __MetadataBearer {}
+
+/**
+ * @public
+ * Deletes an Amazon Textract adapter version. Requires that you specify both an AdapterId and a
+ * AdapterVersion. Deletes the adapter version specified by the AdapterId and the AdapterVersion.
+ * @example
+ * Use a bare-bones client and the command you need to make an API call.
+ * ```javascript
+ * import { TextractClient, DeleteAdapterVersionCommand } from "@aws-sdk/client-textract"; // ES Modules import
+ * // const { TextractClient, DeleteAdapterVersionCommand } = require("@aws-sdk/client-textract"); // CommonJS import
+ * const client = new TextractClient(config);
+ * const input = { // DeleteAdapterVersionRequest
+ * AdapterId: "STRING_VALUE", // required
+ * AdapterVersion: "STRING_VALUE", // required
+ * };
+ * const command = new DeleteAdapterVersionCommand(input);
+ * const response = await client.send(command);
+ * // {};
+ *
+ * ```
+ *
+ * @param DeleteAdapterVersionCommandInput - {@link DeleteAdapterVersionCommandInput}
+ * @returns {@link DeleteAdapterVersionCommandOutput}
+ * @see {@link DeleteAdapterVersionCommandInput} for command's `input` shape.
+ * @see {@link DeleteAdapterVersionCommandOutput} for command's `response` shape.
+ * @see {@link TextractClientResolvedConfig | config} for TextractClient's `config` shape.
+ *
+ * @throws {@link AccessDeniedException} (client fault)
+ * You aren't authorized to perform the action. Use the Amazon Resource Name (ARN)
+ * of an authorized user or IAM role to perform the operation.
+ *
+ * @throws {@link ConflictException} (client fault)
+ * Updating or deleting a resource can cause an inconsistent state.
+ *
+ * @throws {@link InternalServerError} (server fault)
+ * Amazon Textract experienced a service issue. Try your call again.
+ *
+ * @throws {@link InvalidParameterException} (client fault)
+ * An input parameter violated a constraint. For example, in synchronous operations,
+ * an InvalidParameterException
exception occurs
+ * when neither of the S3Object
or Bytes
values are supplied in the Document
+ * request parameter.
+ * Validate your parameter before calling the API operation again.
+ *
+ * @throws {@link ProvisionedThroughputExceededException} (client fault)
+ * The number of requests exceeded your throughput limit. If you want to increase this limit,
+ * contact Amazon Textract.
+ *
+ * @throws {@link ResourceNotFoundException} (client fault)
+ * Returned when an operation tried to access a nonexistent resource.
+ *
+ * @throws {@link ThrottlingException} (server fault)
+ * Amazon Textract is temporarily unable to process the request. Try your call again.
+ *
+ * @throws {@link ValidationException} (client fault)
+ * Indicates that a request was not valid. Check request for proper formatting.
+ *
+ * @throws {@link TextractServiceException}
+ * Base exception class for all service exceptions from Textract service.
+ *
+ */
+export class DeleteAdapterVersionCommand extends $Command<
+ DeleteAdapterVersionCommandInput,
+ DeleteAdapterVersionCommandOutput,
+ TextractClientResolvedConfig
+> {
+ // Start section: command_properties
+ // End section: command_properties
+
+ public static getEndpointParameterInstructions(): EndpointParameterInstructions {
+ return {
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
+ Endpoint: { type: "builtInParams", name: "endpoint" },
+ Region: { type: "builtInParams", name: "region" },
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
+ };
+ }
+
+ /**
+ * @public
+ */
+ constructor(readonly input: DeleteAdapterVersionCommandInput) {
+ // Start section: command_constructor
+ super();
+ // End section: command_constructor
+ }
+
+ /**
+ * @internal
+ */
+ resolveMiddleware(
+ clientStack: MiddlewareStack,
+ configuration: TextractClientResolvedConfig,
+ options?: __HttpHandlerOptions
+ ): Handler {
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
+ this.middlewareStack.use(
+ getEndpointPlugin(configuration, DeleteAdapterVersionCommand.getEndpointParameterInstructions())
+ );
+
+ const stack = clientStack.concat(this.middlewareStack);
+
+ const { logger } = configuration;
+ const clientName = "TextractClient";
+ const commandName = "DeleteAdapterVersionCommand";
+ const handlerExecutionContext: HandlerExecutionContext = {
+ logger,
+ clientName,
+ commandName,
+ inputFilterSensitiveLog: (_: any) => _,
+ outputFilterSensitiveLog: (_: any) => _,
+ [SMITHY_CONTEXT_KEY]: {
+ service: "Textract",
+ operation: "DeleteAdapterVersion",
+ },
+ };
+ const { requestHandler } = configuration;
+ return stack.resolve(
+ (request: FinalizeHandlerArguments) =>
+ requestHandler.handle(request.request as __HttpRequest, options || {}),
+ handlerExecutionContext
+ );
+ }
+
+ /**
+ * @internal
+ */
+ private serialize(input: DeleteAdapterVersionCommandInput, context: __SerdeContext): Promise<__HttpRequest> {
+ return se_DeleteAdapterVersionCommand(input, context);
+ }
+
+ /**
+ * @internal
+ */
+ private deserialize(output: __HttpResponse, context: __SerdeContext): Promise {
+ return de_DeleteAdapterVersionCommand(output, context);
+ }
+
+ // Start section: command_body_extra
+ // End section: command_body_extra
+}
diff --git a/clients/client-textract/src/commands/GetAdapterCommand.ts b/clients/client-textract/src/commands/GetAdapterCommand.ts
new file mode 100644
index 0000000000000..bbbfc825b3b5f
--- /dev/null
+++ b/clients/client-textract/src/commands/GetAdapterCommand.ts
@@ -0,0 +1,183 @@
+// smithy-typescript generated code
+import { EndpointParameterInstructions, getEndpointPlugin } from "@smithy/middleware-endpoint";
+import { getSerdePlugin } from "@smithy/middleware-serde";
+import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
+import { Command as $Command } from "@smithy/smithy-client";
+import {
+ FinalizeHandlerArguments,
+ Handler,
+ HandlerExecutionContext,
+ HttpHandlerOptions as __HttpHandlerOptions,
+ MetadataBearer as __MetadataBearer,
+ MiddlewareStack,
+ SerdeContext as __SerdeContext,
+ SMITHY_CONTEXT_KEY,
+} from "@smithy/types";
+
+import { GetAdapterRequest, GetAdapterResponse } from "../models/models_0";
+import { de_GetAdapterCommand, se_GetAdapterCommand } from "../protocols/Aws_json1_1";
+import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient";
+
+/**
+ * @public
+ */
+export { __MetadataBearer, $Command };
+/**
+ * @public
+ *
+ * The input for {@link GetAdapterCommand}.
+ */
+export interface GetAdapterCommandInput extends GetAdapterRequest {}
+/**
+ * @public
+ *
+ * The output of {@link GetAdapterCommand}.
+ */
+export interface GetAdapterCommandOutput extends GetAdapterResponse, __MetadataBearer {}
+
+/**
+ * @public
+ * Gets configuration information for an adapter specified by an AdapterId, returning information on AdapterName, Description,
+ * CreationTime, AutoUpdate status, and FeatureTypes.
+ * @example
+ * Use a bare-bones client and the command you need to make an API call.
+ * ```javascript
+ * import { TextractClient, GetAdapterCommand } from "@aws-sdk/client-textract"; // ES Modules import
+ * // const { TextractClient, GetAdapterCommand } = require("@aws-sdk/client-textract"); // CommonJS import
+ * const client = new TextractClient(config);
+ * const input = { // GetAdapterRequest
+ * AdapterId: "STRING_VALUE", // required
+ * };
+ * const command = new GetAdapterCommand(input);
+ * const response = await client.send(command);
+ * // { // GetAdapterResponse
+ * // AdapterId: "STRING_VALUE",
+ * // AdapterName: "STRING_VALUE",
+ * // CreationTime: new Date("TIMESTAMP"),
+ * // Description: "STRING_VALUE",
+ * // FeatureTypes: [ // FeatureTypes
+ * // "TABLES" || "FORMS" || "QUERIES" || "SIGNATURES" || "LAYOUT",
+ * // ],
+ * // AutoUpdate: "ENABLED" || "DISABLED",
+ * // Tags: { // TagMap
+ * // "": "STRING_VALUE",
+ * // },
+ * // };
+ *
+ * ```
+ *
+ * @param GetAdapterCommandInput - {@link GetAdapterCommandInput}
+ * @returns {@link GetAdapterCommandOutput}
+ * @see {@link GetAdapterCommandInput} for command's `input` shape.
+ * @see {@link GetAdapterCommandOutput} for command's `response` shape.
+ * @see {@link TextractClientResolvedConfig | config} for TextractClient's `config` shape.
+ *
+ * @throws {@link AccessDeniedException} (client fault)
+ * You aren't authorized to perform the action. Use the Amazon Resource Name (ARN)
+ * of an authorized user or IAM role to perform the operation.
+ *
+ * @throws {@link InternalServerError} (server fault)
+ * Amazon Textract experienced a service issue. Try your call again.
+ *
+ * @throws {@link InvalidParameterException} (client fault)
+ * An input parameter violated a constraint. For example, in synchronous operations,
+ * an InvalidParameterException
exception occurs
+ * when neither of the S3Object
or Bytes
values are supplied in the Document
+ * request parameter.
+ * Validate your parameter before calling the API operation again.
+ *
+ * @throws {@link ProvisionedThroughputExceededException} (client fault)
+ * The number of requests exceeded your throughput limit. If you want to increase this limit,
+ * contact Amazon Textract.
+ *
+ * @throws {@link ResourceNotFoundException} (client fault)
+ * Returned when an operation tried to access a nonexistent resource.
+ *
+ * @throws {@link ThrottlingException} (server fault)
+ * Amazon Textract is temporarily unable to process the request. Try your call again.
+ *
+ * @throws {@link ValidationException} (client fault)
+ * Indicates that a request was not valid. Check request for proper formatting.
+ *
+ * @throws {@link TextractServiceException}
+ * Base exception class for all service exceptions from Textract service.
+ *
+ */
+export class GetAdapterCommand extends $Command<
+ GetAdapterCommandInput,
+ GetAdapterCommandOutput,
+ TextractClientResolvedConfig
+> {
+ // Start section: command_properties
+ // End section: command_properties
+
+ public static getEndpointParameterInstructions(): EndpointParameterInstructions {
+ return {
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
+ Endpoint: { type: "builtInParams", name: "endpoint" },
+ Region: { type: "builtInParams", name: "region" },
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
+ };
+ }
+
+ /**
+ * @public
+ */
+ constructor(readonly input: GetAdapterCommandInput) {
+ // Start section: command_constructor
+ super();
+ // End section: command_constructor
+ }
+
+ /**
+ * @internal
+ */
+ resolveMiddleware(
+ clientStack: MiddlewareStack,
+ configuration: TextractClientResolvedConfig,
+ options?: __HttpHandlerOptions
+ ): Handler {
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
+ this.middlewareStack.use(getEndpointPlugin(configuration, GetAdapterCommand.getEndpointParameterInstructions()));
+
+ const stack = clientStack.concat(this.middlewareStack);
+
+ const { logger } = configuration;
+ const clientName = "TextractClient";
+ const commandName = "GetAdapterCommand";
+ const handlerExecutionContext: HandlerExecutionContext = {
+ logger,
+ clientName,
+ commandName,
+ inputFilterSensitiveLog: (_: any) => _,
+ outputFilterSensitiveLog: (_: any) => _,
+ [SMITHY_CONTEXT_KEY]: {
+ service: "Textract",
+ operation: "GetAdapter",
+ },
+ };
+ const { requestHandler } = configuration;
+ return stack.resolve(
+ (request: FinalizeHandlerArguments) =>
+ requestHandler.handle(request.request as __HttpRequest, options || {}),
+ handlerExecutionContext
+ );
+ }
+
+ /**
+ * @internal
+ */
+ private serialize(input: GetAdapterCommandInput, context: __SerdeContext): Promise<__HttpRequest> {
+ return se_GetAdapterCommand(input, context);
+ }
+
+ /**
+ * @internal
+ */
+ private deserialize(output: __HttpResponse, context: __SerdeContext): Promise {
+ return de_GetAdapterCommand(output, context);
+ }
+
+ // Start section: command_body_extra
+ // End section: command_body_extra
+}
diff --git a/clients/client-textract/src/commands/GetAdapterVersionCommand.ts b/clients/client-textract/src/commands/GetAdapterVersionCommand.ts
new file mode 100644
index 0000000000000..6c5d3e35169ac
--- /dev/null
+++ b/clients/client-textract/src/commands/GetAdapterVersionCommand.ts
@@ -0,0 +1,214 @@
+// smithy-typescript generated code
+import { EndpointParameterInstructions, getEndpointPlugin } from "@smithy/middleware-endpoint";
+import { getSerdePlugin } from "@smithy/middleware-serde";
+import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
+import { Command as $Command } from "@smithy/smithy-client";
+import {
+ FinalizeHandlerArguments,
+ Handler,
+ HandlerExecutionContext,
+ HttpHandlerOptions as __HttpHandlerOptions,
+ MetadataBearer as __MetadataBearer,
+ MiddlewareStack,
+ SerdeContext as __SerdeContext,
+ SMITHY_CONTEXT_KEY,
+} from "@smithy/types";
+
+import { GetAdapterVersionRequest, GetAdapterVersionResponse } from "../models/models_0";
+import { de_GetAdapterVersionCommand, se_GetAdapterVersionCommand } from "../protocols/Aws_json1_1";
+import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient";
+
+/**
+ * @public
+ */
+export { __MetadataBearer, $Command };
+/**
+ * @public
+ *
+ * The input for {@link GetAdapterVersionCommand}.
+ */
+export interface GetAdapterVersionCommandInput extends GetAdapterVersionRequest {}
+/**
+ * @public
+ *
+ * The output of {@link GetAdapterVersionCommand}.
+ */
+export interface GetAdapterVersionCommandOutput extends GetAdapterVersionResponse, __MetadataBearer {}
+
+/**
+ * @public
+ * Gets configuration information for the specified adapter version, including:
+ * AdapterId, AdapterVersion, FeatureTypes, Status, StatusMessage, DatasetConfig,
+ * KMSKeyId, OutputConfig, Tags and EvaluationMetrics.
+ * @example
+ * Use a bare-bones client and the command you need to make an API call.
+ * ```javascript
+ * import { TextractClient, GetAdapterVersionCommand } from "@aws-sdk/client-textract"; // ES Modules import
+ * // const { TextractClient, GetAdapterVersionCommand } = require("@aws-sdk/client-textract"); // CommonJS import
+ * const client = new TextractClient(config);
+ * const input = { // GetAdapterVersionRequest
+ * AdapterId: "STRING_VALUE", // required
+ * AdapterVersion: "STRING_VALUE", // required
+ * };
+ * const command = new GetAdapterVersionCommand(input);
+ * const response = await client.send(command);
+ * // { // GetAdapterVersionResponse
+ * // AdapterId: "STRING_VALUE",
+ * // AdapterVersion: "STRING_VALUE",
+ * // CreationTime: new Date("TIMESTAMP"),
+ * // FeatureTypes: [ // FeatureTypes
+ * // "TABLES" || "FORMS" || "QUERIES" || "SIGNATURES" || "LAYOUT",
+ * // ],
+ * // Status: "ACTIVE" || "AT_RISK" || "DEPRECATED" || "CREATION_ERROR" || "CREATION_IN_PROGRESS",
+ * // StatusMessage: "STRING_VALUE",
+ * // DatasetConfig: { // AdapterVersionDatasetConfig
+ * // ManifestS3Object: { // S3Object
+ * // Bucket: "STRING_VALUE",
+ * // Name: "STRING_VALUE",
+ * // Version: "STRING_VALUE",
+ * // },
+ * // },
+ * // KMSKeyId: "STRING_VALUE",
+ * // OutputConfig: { // OutputConfig
+ * // S3Bucket: "STRING_VALUE", // required
+ * // S3Prefix: "STRING_VALUE",
+ * // },
+ * // EvaluationMetrics: [ // AdapterVersionEvaluationMetrics
+ * // { // AdapterVersionEvaluationMetric
+ * // Baseline: { // EvaluationMetric
+ * // F1Score: Number("float"),
+ * // Precision: Number("float"),
+ * // Recall: Number("float"),
+ * // },
+ * // AdapterVersion: {
+ * // F1Score: Number("float"),
+ * // Precision: Number("float"),
+ * // Recall: Number("float"),
+ * // },
+ * // FeatureType: "TABLES" || "FORMS" || "QUERIES" || "SIGNATURES" || "LAYOUT",
+ * // },
+ * // ],
+ * // Tags: { // TagMap
+ * // "": "STRING_VALUE",
+ * // },
+ * // };
+ *
+ * ```
+ *
+ * @param GetAdapterVersionCommandInput - {@link GetAdapterVersionCommandInput}
+ * @returns {@link GetAdapterVersionCommandOutput}
+ * @see {@link GetAdapterVersionCommandInput} for command's `input` shape.
+ * @see {@link GetAdapterVersionCommandOutput} for command's `response` shape.
+ * @see {@link TextractClientResolvedConfig | config} for TextractClient's `config` shape.
+ *
+ * @throws {@link AccessDeniedException} (client fault)
+ * You aren't authorized to perform the action. Use the Amazon Resource Name (ARN)
+ * of an authorized user or IAM role to perform the operation.
+ *
+ * @throws {@link InternalServerError} (server fault)
+ * Amazon Textract experienced a service issue. Try your call again.
+ *
+ * @throws {@link InvalidParameterException} (client fault)
+ * An input parameter violated a constraint. For example, in synchronous operations,
+ * an InvalidParameterException
exception occurs
+ * when neither of the S3Object
or Bytes
values are supplied in the Document
+ * request parameter.
+ * Validate your parameter before calling the API operation again.
+ *
+ * @throws {@link ProvisionedThroughputExceededException} (client fault)
+ * The number of requests exceeded your throughput limit. If you want to increase this limit,
+ * contact Amazon Textract.
+ *
+ * @throws {@link ResourceNotFoundException} (client fault)
+ * Returned when an operation tried to access a nonexistent resource.
+ *
+ * @throws {@link ThrottlingException} (server fault)
+ * Amazon Textract is temporarily unable to process the request. Try your call again.
+ *
+ * @throws {@link ValidationException} (client fault)
+ * Indicates that a request was not valid. Check request for proper formatting.
+ *
+ * @throws {@link TextractServiceException}
+ * Base exception class for all service exceptions from Textract service.
+ *
+ */
+export class GetAdapterVersionCommand extends $Command<
+ GetAdapterVersionCommandInput,
+ GetAdapterVersionCommandOutput,
+ TextractClientResolvedConfig
+> {
+ // Start section: command_properties
+ // End section: command_properties
+
+ public static getEndpointParameterInstructions(): EndpointParameterInstructions {
+ return {
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
+ Endpoint: { type: "builtInParams", name: "endpoint" },
+ Region: { type: "builtInParams", name: "region" },
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
+ };
+ }
+
+ /**
+ * @public
+ */
+ constructor(readonly input: GetAdapterVersionCommandInput) {
+ // Start section: command_constructor
+ super();
+ // End section: command_constructor
+ }
+
+ /**
+ * @internal
+ */
+ resolveMiddleware(
+ clientStack: MiddlewareStack,
+ configuration: TextractClientResolvedConfig,
+ options?: __HttpHandlerOptions
+ ): Handler {
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
+ this.middlewareStack.use(
+ getEndpointPlugin(configuration, GetAdapterVersionCommand.getEndpointParameterInstructions())
+ );
+
+ const stack = clientStack.concat(this.middlewareStack);
+
+ const { logger } = configuration;
+ const clientName = "TextractClient";
+ const commandName = "GetAdapterVersionCommand";
+ const handlerExecutionContext: HandlerExecutionContext = {
+ logger,
+ clientName,
+ commandName,
+ inputFilterSensitiveLog: (_: any) => _,
+ outputFilterSensitiveLog: (_: any) => _,
+ [SMITHY_CONTEXT_KEY]: {
+ service: "Textract",
+ operation: "GetAdapterVersion",
+ },
+ };
+ const { requestHandler } = configuration;
+ return stack.resolve(
+ (request: FinalizeHandlerArguments) =>
+ requestHandler.handle(request.request as __HttpRequest, options || {}),
+ handlerExecutionContext
+ );
+ }
+
+ /**
+ * @internal
+ */
+ private serialize(input: GetAdapterVersionCommandInput, context: __SerdeContext): Promise<__HttpRequest> {
+ return se_GetAdapterVersionCommand(input, context);
+ }
+
+ /**
+ * @internal
+ */
+ private deserialize(output: __HttpResponse, context: __SerdeContext): Promise {
+ return de_GetAdapterVersionCommand(output, context);
+ }
+
+ // Start section: command_body_extra
+ // End section: command_body_extra
+}
diff --git a/clients/client-textract/src/commands/ListAdapterVersionsCommand.ts b/clients/client-textract/src/commands/ListAdapterVersionsCommand.ts
new file mode 100644
index 0000000000000..ce4d36476a86d
--- /dev/null
+++ b/clients/client-textract/src/commands/ListAdapterVersionsCommand.ts
@@ -0,0 +1,190 @@
+// smithy-typescript generated code
+import { EndpointParameterInstructions, getEndpointPlugin } from "@smithy/middleware-endpoint";
+import { getSerdePlugin } from "@smithy/middleware-serde";
+import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
+import { Command as $Command } from "@smithy/smithy-client";
+import {
+ FinalizeHandlerArguments,
+ Handler,
+ HandlerExecutionContext,
+ HttpHandlerOptions as __HttpHandlerOptions,
+ MetadataBearer as __MetadataBearer,
+ MiddlewareStack,
+ SerdeContext as __SerdeContext,
+ SMITHY_CONTEXT_KEY,
+} from "@smithy/types";
+
+import { ListAdapterVersionsRequest, ListAdapterVersionsResponse } from "../models/models_0";
+import { de_ListAdapterVersionsCommand, se_ListAdapterVersionsCommand } from "../protocols/Aws_json1_1";
+import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient";
+
+/**
+ * @public
+ */
+export { __MetadataBearer, $Command };
+/**
+ * @public
+ *
+ * The input for {@link ListAdapterVersionsCommand}.
+ */
+export interface ListAdapterVersionsCommandInput extends ListAdapterVersionsRequest {}
+/**
+ * @public
+ *
+ * The output of {@link ListAdapterVersionsCommand}.
+ */
+export interface ListAdapterVersionsCommandOutput extends ListAdapterVersionsResponse, __MetadataBearer {}
+
+/**
+ * @public
+ * List all version of an adapter that meet the specified filtration criteria.
+ * @example
+ * Use a bare-bones client and the command you need to make an API call.
+ * ```javascript
+ * import { TextractClient, ListAdapterVersionsCommand } from "@aws-sdk/client-textract"; // ES Modules import
+ * // const { TextractClient, ListAdapterVersionsCommand } = require("@aws-sdk/client-textract"); // CommonJS import
+ * const client = new TextractClient(config);
+ * const input = { // ListAdapterVersionsRequest
+ * AdapterId: "STRING_VALUE",
+ * AfterCreationTime: new Date("TIMESTAMP"),
+ * BeforeCreationTime: new Date("TIMESTAMP"),
+ * MaxResults: Number("int"),
+ * NextToken: "STRING_VALUE",
+ * };
+ * const command = new ListAdapterVersionsCommand(input);
+ * const response = await client.send(command);
+ * // { // ListAdapterVersionsResponse
+ * // AdapterVersions: [ // AdapterVersionList
+ * // { // AdapterVersionOverview
+ * // AdapterId: "STRING_VALUE",
+ * // AdapterVersion: "STRING_VALUE",
+ * // CreationTime: new Date("TIMESTAMP"),
+ * // FeatureTypes: [ // FeatureTypes
+ * // "TABLES" || "FORMS" || "QUERIES" || "SIGNATURES" || "LAYOUT",
+ * // ],
+ * // Status: "ACTIVE" || "AT_RISK" || "DEPRECATED" || "CREATION_ERROR" || "CREATION_IN_PROGRESS",
+ * // StatusMessage: "STRING_VALUE",
+ * // },
+ * // ],
+ * // NextToken: "STRING_VALUE",
+ * // };
+ *
+ * ```
+ *
+ * @param ListAdapterVersionsCommandInput - {@link ListAdapterVersionsCommandInput}
+ * @returns {@link ListAdapterVersionsCommandOutput}
+ * @see {@link ListAdapterVersionsCommandInput} for command's `input` shape.
+ * @see {@link ListAdapterVersionsCommandOutput} for command's `response` shape.
+ * @see {@link TextractClientResolvedConfig | config} for TextractClient's `config` shape.
+ *
+ * @throws {@link AccessDeniedException} (client fault)
+ * You aren't authorized to perform the action. Use the Amazon Resource Name (ARN)
+ * of an authorized user or IAM role to perform the operation.
+ *
+ * @throws {@link InternalServerError} (server fault)
+ * Amazon Textract experienced a service issue. Try your call again.
+ *
+ * @throws {@link InvalidParameterException} (client fault)
+ * An input parameter violated a constraint. For example, in synchronous operations,
+ * an InvalidParameterException
exception occurs
+ * when neither of the S3Object
or Bytes
values are supplied in the Document
+ * request parameter.
+ * Validate your parameter before calling the API operation again.
+ *
+ * @throws {@link ProvisionedThroughputExceededException} (client fault)
+ * The number of requests exceeded your throughput limit. If you want to increase this limit,
+ * contact Amazon Textract.
+ *
+ * @throws {@link ResourceNotFoundException} (client fault)
+ * Returned when an operation tried to access a nonexistent resource.
+ *
+ * @throws {@link ThrottlingException} (server fault)
+ * Amazon Textract is temporarily unable to process the request. Try your call again.
+ *
+ * @throws {@link ValidationException} (client fault)
+ * Indicates that a request was not valid. Check request for proper formatting.
+ *
+ * @throws {@link TextractServiceException}
+ * Base exception class for all service exceptions from Textract service.
+ *
+ */
+export class ListAdapterVersionsCommand extends $Command<
+ ListAdapterVersionsCommandInput,
+ ListAdapterVersionsCommandOutput,
+ TextractClientResolvedConfig
+> {
+ // Start section: command_properties
+ // End section: command_properties
+
+ public static getEndpointParameterInstructions(): EndpointParameterInstructions {
+ return {
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
+ Endpoint: { type: "builtInParams", name: "endpoint" },
+ Region: { type: "builtInParams", name: "region" },
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
+ };
+ }
+
+ /**
+ * @public
+ */
+ constructor(readonly input: ListAdapterVersionsCommandInput) {
+ // Start section: command_constructor
+ super();
+ // End section: command_constructor
+ }
+
+ /**
+ * @internal
+ */
+ resolveMiddleware(
+ clientStack: MiddlewareStack,
+ configuration: TextractClientResolvedConfig,
+ options?: __HttpHandlerOptions
+ ): Handler {
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
+ this.middlewareStack.use(
+ getEndpointPlugin(configuration, ListAdapterVersionsCommand.getEndpointParameterInstructions())
+ );
+
+ const stack = clientStack.concat(this.middlewareStack);
+
+ const { logger } = configuration;
+ const clientName = "TextractClient";
+ const commandName = "ListAdapterVersionsCommand";
+ const handlerExecutionContext: HandlerExecutionContext = {
+ logger,
+ clientName,
+ commandName,
+ inputFilterSensitiveLog: (_: any) => _,
+ outputFilterSensitiveLog: (_: any) => _,
+ [SMITHY_CONTEXT_KEY]: {
+ service: "Textract",
+ operation: "ListAdapterVersions",
+ },
+ };
+ const { requestHandler } = configuration;
+ return stack.resolve(
+ (request: FinalizeHandlerArguments) =>
+ requestHandler.handle(request.request as __HttpRequest, options || {}),
+ handlerExecutionContext
+ );
+ }
+
+ /**
+ * @internal
+ */
+ private serialize(input: ListAdapterVersionsCommandInput, context: __SerdeContext): Promise<__HttpRequest> {
+ return se_ListAdapterVersionsCommand(input, context);
+ }
+
+ /**
+ * @internal
+ */
+ private deserialize(output: __HttpResponse, context: __SerdeContext): Promise {
+ return de_ListAdapterVersionsCommand(output, context);
+ }
+
+ // Start section: command_body_extra
+ // End section: command_body_extra
+}
diff --git a/clients/client-textract/src/commands/ListAdaptersCommand.ts b/clients/client-textract/src/commands/ListAdaptersCommand.ts
new file mode 100644
index 0000000000000..16853a5f868a2
--- /dev/null
+++ b/clients/client-textract/src/commands/ListAdaptersCommand.ts
@@ -0,0 +1,182 @@
+// smithy-typescript generated code
+import { EndpointParameterInstructions, getEndpointPlugin } from "@smithy/middleware-endpoint";
+import { getSerdePlugin } from "@smithy/middleware-serde";
+import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
+import { Command as $Command } from "@smithy/smithy-client";
+import {
+ FinalizeHandlerArguments,
+ Handler,
+ HandlerExecutionContext,
+ HttpHandlerOptions as __HttpHandlerOptions,
+ MetadataBearer as __MetadataBearer,
+ MiddlewareStack,
+ SerdeContext as __SerdeContext,
+ SMITHY_CONTEXT_KEY,
+} from "@smithy/types";
+
+import { ListAdaptersRequest, ListAdaptersResponse } from "../models/models_0";
+import { de_ListAdaptersCommand, se_ListAdaptersCommand } from "../protocols/Aws_json1_1";
+import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient";
+
+/**
+ * @public
+ */
+export { __MetadataBearer, $Command };
+/**
+ * @public
+ *
+ * The input for {@link ListAdaptersCommand}.
+ */
+export interface ListAdaptersCommandInput extends ListAdaptersRequest {}
+/**
+ * @public
+ *
+ * The output of {@link ListAdaptersCommand}.
+ */
+export interface ListAdaptersCommandOutput extends ListAdaptersResponse, __MetadataBearer {}
+
+/**
+ * @public
+ * Lists all adapters that match the specified filtration criteria.
+ * @example
+ * Use a bare-bones client and the command you need to make an API call.
+ * ```javascript
+ * import { TextractClient, ListAdaptersCommand } from "@aws-sdk/client-textract"; // ES Modules import
+ * // const { TextractClient, ListAdaptersCommand } = require("@aws-sdk/client-textract"); // CommonJS import
+ * const client = new TextractClient(config);
+ * const input = { // ListAdaptersRequest
+ * AfterCreationTime: new Date("TIMESTAMP"),
+ * BeforeCreationTime: new Date("TIMESTAMP"),
+ * MaxResults: Number("int"),
+ * NextToken: "STRING_VALUE",
+ * };
+ * const command = new ListAdaptersCommand(input);
+ * const response = await client.send(command);
+ * // { // ListAdaptersResponse
+ * // Adapters: [ // AdapterList
+ * // { // AdapterOverview
+ * // AdapterId: "STRING_VALUE",
+ * // AdapterName: "STRING_VALUE",
+ * // CreationTime: new Date("TIMESTAMP"),
+ * // FeatureTypes: [ // FeatureTypes
+ * // "TABLES" || "FORMS" || "QUERIES" || "SIGNATURES" || "LAYOUT",
+ * // ],
+ * // },
+ * // ],
+ * // NextToken: "STRING_VALUE",
+ * // };
+ *
+ * ```
+ *
+ * @param ListAdaptersCommandInput - {@link ListAdaptersCommandInput}
+ * @returns {@link ListAdaptersCommandOutput}
+ * @see {@link ListAdaptersCommandInput} for command's `input` shape.
+ * @see {@link ListAdaptersCommandOutput} for command's `response` shape.
+ * @see {@link TextractClientResolvedConfig | config} for TextractClient's `config` shape.
+ *
+ * @throws {@link AccessDeniedException} (client fault)
+ * You aren't authorized to perform the action. Use the Amazon Resource Name (ARN)
+ * of an authorized user or IAM role to perform the operation.
+ *
+ * @throws {@link InternalServerError} (server fault)
+ * Amazon Textract experienced a service issue. Try your call again.
+ *
+ * @throws {@link InvalidParameterException} (client fault)
+ * An input parameter violated a constraint. For example, in synchronous operations,
+ * an InvalidParameterException
exception occurs
+ * when neither of the S3Object
or Bytes
values are supplied in the Document
+ * request parameter.
+ * Validate your parameter before calling the API operation again.
+ *
+ * @throws {@link ProvisionedThroughputExceededException} (client fault)
+ * The number of requests exceeded your throughput limit. If you want to increase this limit,
+ * contact Amazon Textract.
+ *
+ * @throws {@link ThrottlingException} (server fault)
+ * Amazon Textract is temporarily unable to process the request. Try your call again.
+ *
+ * @throws {@link ValidationException} (client fault)
+ * Indicates that a request was not valid. Check request for proper formatting.
+ *
+ * @throws {@link TextractServiceException}
+ * Base exception class for all service exceptions from Textract service.
+ *
+ */
+export class ListAdaptersCommand extends $Command<
+ ListAdaptersCommandInput,
+ ListAdaptersCommandOutput,
+ TextractClientResolvedConfig
+> {
+ // Start section: command_properties
+ // End section: command_properties
+
+ public static getEndpointParameterInstructions(): EndpointParameterInstructions {
+ return {
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
+ Endpoint: { type: "builtInParams", name: "endpoint" },
+ Region: { type: "builtInParams", name: "region" },
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
+ };
+ }
+
+ /**
+ * @public
+ */
+ constructor(readonly input: ListAdaptersCommandInput) {
+ // Start section: command_constructor
+ super();
+ // End section: command_constructor
+ }
+
+ /**
+ * @internal
+ */
+ resolveMiddleware(
+ clientStack: MiddlewareStack,
+ configuration: TextractClientResolvedConfig,
+ options?: __HttpHandlerOptions
+ ): Handler {
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
+ this.middlewareStack.use(getEndpointPlugin(configuration, ListAdaptersCommand.getEndpointParameterInstructions()));
+
+ const stack = clientStack.concat(this.middlewareStack);
+
+ const { logger } = configuration;
+ const clientName = "TextractClient";
+ const commandName = "ListAdaptersCommand";
+ const handlerExecutionContext: HandlerExecutionContext = {
+ logger,
+ clientName,
+ commandName,
+ inputFilterSensitiveLog: (_: any) => _,
+ outputFilterSensitiveLog: (_: any) => _,
+ [SMITHY_CONTEXT_KEY]: {
+ service: "Textract",
+ operation: "ListAdapters",
+ },
+ };
+ const { requestHandler } = configuration;
+ return stack.resolve(
+ (request: FinalizeHandlerArguments) =>
+ requestHandler.handle(request.request as __HttpRequest, options || {}),
+ handlerExecutionContext
+ );
+ }
+
+ /**
+ * @internal
+ */
+ private serialize(input: ListAdaptersCommandInput, context: __SerdeContext): Promise<__HttpRequest> {
+ return se_ListAdaptersCommand(input, context);
+ }
+
+ /**
+ * @internal
+ */
+ private deserialize(output: __HttpResponse, context: __SerdeContext): Promise {
+ return de_ListAdaptersCommand(output, context);
+ }
+
+ // Start section: command_body_extra
+ // End section: command_body_extra
+}
diff --git a/clients/client-textract/src/commands/ListTagsForResourceCommand.ts b/clients/client-textract/src/commands/ListTagsForResourceCommand.ts
new file mode 100644
index 0000000000000..81fc857b90f83
--- /dev/null
+++ b/clients/client-textract/src/commands/ListTagsForResourceCommand.ts
@@ -0,0 +1,176 @@
+// smithy-typescript generated code
+import { EndpointParameterInstructions, getEndpointPlugin } from "@smithy/middleware-endpoint";
+import { getSerdePlugin } from "@smithy/middleware-serde";
+import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
+import { Command as $Command } from "@smithy/smithy-client";
+import {
+ FinalizeHandlerArguments,
+ Handler,
+ HandlerExecutionContext,
+ HttpHandlerOptions as __HttpHandlerOptions,
+ MetadataBearer as __MetadataBearer,
+ MiddlewareStack,
+ SerdeContext as __SerdeContext,
+ SMITHY_CONTEXT_KEY,
+} from "@smithy/types";
+
+import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
+import { de_ListTagsForResourceCommand, se_ListTagsForResourceCommand } from "../protocols/Aws_json1_1";
+import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient";
+
+/**
+ * @public
+ */
+export { __MetadataBearer, $Command };
+/**
+ * @public
+ *
+ * The input for {@link ListTagsForResourceCommand}.
+ */
+export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {}
+/**
+ * @public
+ *
+ * The output of {@link ListTagsForResourceCommand}.
+ */
+export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {}
+
+/**
+ * @public
+ * Lists all tags for an Amazon Textract resource.
+ * @example
+ * Use a bare-bones client and the command you need to make an API call.
+ * ```javascript
+ * import { TextractClient, ListTagsForResourceCommand } from "@aws-sdk/client-textract"; // ES Modules import
+ * // const { TextractClient, ListTagsForResourceCommand } = require("@aws-sdk/client-textract"); // CommonJS import
+ * const client = new TextractClient(config);
+ * const input = { // ListTagsForResourceRequest
+ * ResourceARN: "STRING_VALUE", // required
+ * };
+ * const command = new ListTagsForResourceCommand(input);
+ * const response = await client.send(command);
+ * // { // ListTagsForResourceResponse
+ * // Tags: { // TagMap
+ * // "": "STRING_VALUE",
+ * // },
+ * // };
+ *
+ * ```
+ *
+ * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
+ * @returns {@link ListTagsForResourceCommandOutput}
+ * @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
+ * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
+ * @see {@link TextractClientResolvedConfig | config} for TextractClient's `config` shape.
+ *
+ * @throws {@link AccessDeniedException} (client fault)
+ * You aren't authorized to perform the action. Use the Amazon Resource Name (ARN)
+ * of an authorized user or IAM role to perform the operation.
+ *
+ * @throws {@link InternalServerError} (server fault)
+ * Amazon Textract experienced a service issue. Try your call again.
+ *
+ * @throws {@link InvalidParameterException} (client fault)
+ * An input parameter violated a constraint. For example, in synchronous operations,
+ * an InvalidParameterException
exception occurs
+ * when neither of the S3Object
or Bytes
values are supplied in the Document
+ * request parameter.
+ * Validate your parameter before calling the API operation again.
+ *
+ * @throws {@link ProvisionedThroughputExceededException} (client fault)
+ * The number of requests exceeded your throughput limit. If you want to increase this limit,
+ * contact Amazon Textract.
+ *
+ * @throws {@link ResourceNotFoundException} (client fault)
+ * Returned when an operation tried to access a nonexistent resource.
+ *
+ * @throws {@link ThrottlingException} (server fault)
+ * Amazon Textract is temporarily unable to process the request. Try your call again.
+ *
+ * @throws {@link ValidationException} (client fault)
+ * Indicates that a request was not valid. Check request for proper formatting.
+ *
+ * @throws {@link TextractServiceException}
+ * Base exception class for all service exceptions from Textract service.
+ *
+ */
+export class ListTagsForResourceCommand extends $Command<
+ ListTagsForResourceCommandInput,
+ ListTagsForResourceCommandOutput,
+ TextractClientResolvedConfig
+> {
+ // Start section: command_properties
+ // End section: command_properties
+
+ public static getEndpointParameterInstructions(): EndpointParameterInstructions {
+ return {
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
+ Endpoint: { type: "builtInParams", name: "endpoint" },
+ Region: { type: "builtInParams", name: "region" },
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
+ };
+ }
+
+ /**
+ * @public
+ */
+ constructor(readonly input: ListTagsForResourceCommandInput) {
+ // Start section: command_constructor
+ super();
+ // End section: command_constructor
+ }
+
+ /**
+ * @internal
+ */
+ resolveMiddleware(
+ clientStack: MiddlewareStack,
+ configuration: TextractClientResolvedConfig,
+ options?: __HttpHandlerOptions
+ ): Handler {
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
+ this.middlewareStack.use(
+ getEndpointPlugin(configuration, ListTagsForResourceCommand.getEndpointParameterInstructions())
+ );
+
+ const stack = clientStack.concat(this.middlewareStack);
+
+ const { logger } = configuration;
+ const clientName = "TextractClient";
+ const commandName = "ListTagsForResourceCommand";
+ const handlerExecutionContext: HandlerExecutionContext = {
+ logger,
+ clientName,
+ commandName,
+ inputFilterSensitiveLog: (_: any) => _,
+ outputFilterSensitiveLog: (_: any) => _,
+ [SMITHY_CONTEXT_KEY]: {
+ service: "Textract",
+ operation: "ListTagsForResource",
+ },
+ };
+ const { requestHandler } = configuration;
+ return stack.resolve(
+ (request: FinalizeHandlerArguments) =>
+ requestHandler.handle(request.request as __HttpRequest, options || {}),
+ handlerExecutionContext
+ );
+ }
+
+ /**
+ * @internal
+ */
+ private serialize(input: ListTagsForResourceCommandInput, context: __SerdeContext): Promise<__HttpRequest> {
+ return se_ListTagsForResourceCommand(input, context);
+ }
+
+ /**
+ * @internal
+ */
+ private deserialize(output: __HttpResponse, context: __SerdeContext): Promise {
+ return de_ListTagsForResourceCommand(output, context);
+ }
+
+ // Start section: command_body_extra
+ // End section: command_body_extra
+}
diff --git a/clients/client-textract/src/commands/StartDocumentAnalysisCommand.ts b/clients/client-textract/src/commands/StartDocumentAnalysisCommand.ts
index 77b5832691c4e..704e411065a27 100644
--- a/clients/client-textract/src/commands/StartDocumentAnalysisCommand.ts
+++ b/clients/client-textract/src/commands/StartDocumentAnalysisCommand.ts
@@ -93,6 +93,17 @@ export interface StartDocumentAnalysisCommandOutput extends StartDocumentAnalysi
* },
* ],
* },
+ * AdaptersConfig: { // AdaptersConfig
+ * Adapters: [ // Adapters // required
+ * { // Adapter
+ * AdapterId: "STRING_VALUE", // required
+ * Pages: [ // AdapterPages
+ * "STRING_VALUE",
+ * ],
+ * Version: "STRING_VALUE", // required
+ * },
+ * ],
+ * },
* };
* const command = new StartDocumentAnalysisCommand(input);
* const response = await client.send(command);
diff --git a/clients/client-textract/src/commands/TagResourceCommand.ts b/clients/client-textract/src/commands/TagResourceCommand.ts
new file mode 100644
index 0000000000000..a06b67e4493b5
--- /dev/null
+++ b/clients/client-textract/src/commands/TagResourceCommand.ts
@@ -0,0 +1,176 @@
+// smithy-typescript generated code
+import { EndpointParameterInstructions, getEndpointPlugin } from "@smithy/middleware-endpoint";
+import { getSerdePlugin } from "@smithy/middleware-serde";
+import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
+import { Command as $Command } from "@smithy/smithy-client";
+import {
+ FinalizeHandlerArguments,
+ Handler,
+ HandlerExecutionContext,
+ HttpHandlerOptions as __HttpHandlerOptions,
+ MetadataBearer as __MetadataBearer,
+ MiddlewareStack,
+ SerdeContext as __SerdeContext,
+ SMITHY_CONTEXT_KEY,
+} from "@smithy/types";
+
+import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
+import { de_TagResourceCommand, se_TagResourceCommand } from "../protocols/Aws_json1_1";
+import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient";
+
+/**
+ * @public
+ */
+export { __MetadataBearer, $Command };
+/**
+ * @public
+ *
+ * The input for {@link TagResourceCommand}.
+ */
+export interface TagResourceCommandInput extends TagResourceRequest {}
+/**
+ * @public
+ *
+ * The output of {@link TagResourceCommand}.
+ */
+export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {}
+
+/**
+ * @public
+ * Adds one or more tags to the specified resource.
+ * @example
+ * Use a bare-bones client and the command you need to make an API call.
+ * ```javascript
+ * import { TextractClient, TagResourceCommand } from "@aws-sdk/client-textract"; // ES Modules import
+ * // const { TextractClient, TagResourceCommand } = require("@aws-sdk/client-textract"); // CommonJS import
+ * const client = new TextractClient(config);
+ * const input = { // TagResourceRequest
+ * ResourceARN: "STRING_VALUE", // required
+ * Tags: { // TagMap // required
+ * "": "STRING_VALUE",
+ * },
+ * };
+ * const command = new TagResourceCommand(input);
+ * const response = await client.send(command);
+ * // {};
+ *
+ * ```
+ *
+ * @param TagResourceCommandInput - {@link TagResourceCommandInput}
+ * @returns {@link TagResourceCommandOutput}
+ * @see {@link TagResourceCommandInput} for command's `input` shape.
+ * @see {@link TagResourceCommandOutput} for command's `response` shape.
+ * @see {@link TextractClientResolvedConfig | config} for TextractClient's `config` shape.
+ *
+ * @throws {@link AccessDeniedException} (client fault)
+ * You aren't authorized to perform the action. Use the Amazon Resource Name (ARN)
+ * of an authorized user or IAM role to perform the operation.
+ *
+ * @throws {@link InternalServerError} (server fault)
+ * Amazon Textract experienced a service issue. Try your call again.
+ *
+ * @throws {@link InvalidParameterException} (client fault)
+ * An input parameter violated a constraint. For example, in synchronous operations,
+ * an InvalidParameterException
exception occurs
+ * when neither of the S3Object
or Bytes
values are supplied in the Document
+ * request parameter.
+ * Validate your parameter before calling the API operation again.
+ *
+ * @throws {@link ProvisionedThroughputExceededException} (client fault)
+ * The number of requests exceeded your throughput limit. If you want to increase this limit,
+ * contact Amazon Textract.
+ *
+ * @throws {@link ResourceNotFoundException} (client fault)
+ * Returned when an operation tried to access a nonexistent resource.
+ *
+ * @throws {@link ServiceQuotaExceededException} (client fault)
+ * Returned when a request cannot be completed as it would exceed a maximum service quota.
+ *
+ * @throws {@link ThrottlingException} (server fault)
+ * Amazon Textract is temporarily unable to process the request. Try your call again.
+ *
+ * @throws {@link ValidationException} (client fault)
+ * Indicates that a request was not valid. Check request for proper formatting.
+ *
+ * @throws {@link TextractServiceException}
+ * Base exception class for all service exceptions from Textract service.
+ *
+ */
+export class TagResourceCommand extends $Command<
+ TagResourceCommandInput,
+ TagResourceCommandOutput,
+ TextractClientResolvedConfig
+> {
+ // Start section: command_properties
+ // End section: command_properties
+
+ public static getEndpointParameterInstructions(): EndpointParameterInstructions {
+ return {
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
+ Endpoint: { type: "builtInParams", name: "endpoint" },
+ Region: { type: "builtInParams", name: "region" },
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
+ };
+ }
+
+ /**
+ * @public
+ */
+ constructor(readonly input: TagResourceCommandInput) {
+ // Start section: command_constructor
+ super();
+ // End section: command_constructor
+ }
+
+ /**
+ * @internal
+ */
+ resolveMiddleware(
+ clientStack: MiddlewareStack,
+ configuration: TextractClientResolvedConfig,
+ options?: __HttpHandlerOptions
+ ): Handler {
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
+ this.middlewareStack.use(getEndpointPlugin(configuration, TagResourceCommand.getEndpointParameterInstructions()));
+
+ const stack = clientStack.concat(this.middlewareStack);
+
+ const { logger } = configuration;
+ const clientName = "TextractClient";
+ const commandName = "TagResourceCommand";
+ const handlerExecutionContext: HandlerExecutionContext = {
+ logger,
+ clientName,
+ commandName,
+ inputFilterSensitiveLog: (_: any) => _,
+ outputFilterSensitiveLog: (_: any) => _,
+ [SMITHY_CONTEXT_KEY]: {
+ service: "Textract",
+ operation: "TagResource",
+ },
+ };
+ const { requestHandler } = configuration;
+ return stack.resolve(
+ (request: FinalizeHandlerArguments) =>
+ requestHandler.handle(request.request as __HttpRequest, options || {}),
+ handlerExecutionContext
+ );
+ }
+
+ /**
+ * @internal
+ */
+ private serialize(input: TagResourceCommandInput, context: __SerdeContext): Promise<__HttpRequest> {
+ return se_TagResourceCommand(input, context);
+ }
+
+ /**
+ * @internal
+ */
+ private deserialize(output: __HttpResponse, context: __SerdeContext): Promise {
+ return de_TagResourceCommand(output, context);
+ }
+
+ // Start section: command_body_extra
+ // End section: command_body_extra
+}
diff --git a/clients/client-textract/src/commands/UntagResourceCommand.ts b/clients/client-textract/src/commands/UntagResourceCommand.ts
new file mode 100644
index 0000000000000..47eda9fb7d317
--- /dev/null
+++ b/clients/client-textract/src/commands/UntagResourceCommand.ts
@@ -0,0 +1,173 @@
+// smithy-typescript generated code
+import { EndpointParameterInstructions, getEndpointPlugin } from "@smithy/middleware-endpoint";
+import { getSerdePlugin } from "@smithy/middleware-serde";
+import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
+import { Command as $Command } from "@smithy/smithy-client";
+import {
+ FinalizeHandlerArguments,
+ Handler,
+ HandlerExecutionContext,
+ HttpHandlerOptions as __HttpHandlerOptions,
+ MetadataBearer as __MetadataBearer,
+ MiddlewareStack,
+ SerdeContext as __SerdeContext,
+ SMITHY_CONTEXT_KEY,
+} from "@smithy/types";
+
+import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
+import { de_UntagResourceCommand, se_UntagResourceCommand } from "../protocols/Aws_json1_1";
+import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient";
+
+/**
+ * @public
+ */
+export { __MetadataBearer, $Command };
+/**
+ * @public
+ *
+ * The input for {@link UntagResourceCommand}.
+ */
+export interface UntagResourceCommandInput extends UntagResourceRequest {}
+/**
+ * @public
+ *
+ * The output of {@link UntagResourceCommand}.
+ */
+export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {}
+
+/**
+ * @public
+ * Removes any tags with the specified keys from the specified resource.
+ * @example
+ * Use a bare-bones client and the command you need to make an API call.
+ * ```javascript
+ * import { TextractClient, UntagResourceCommand } from "@aws-sdk/client-textract"; // ES Modules import
+ * // const { TextractClient, UntagResourceCommand } = require("@aws-sdk/client-textract"); // CommonJS import
+ * const client = new TextractClient(config);
+ * const input = { // UntagResourceRequest
+ * ResourceARN: "STRING_VALUE", // required
+ * TagKeys: [ // TagKeyList // required
+ * "STRING_VALUE",
+ * ],
+ * };
+ * const command = new UntagResourceCommand(input);
+ * const response = await client.send(command);
+ * // {};
+ *
+ * ```
+ *
+ * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
+ * @returns {@link UntagResourceCommandOutput}
+ * @see {@link UntagResourceCommandInput} for command's `input` shape.
+ * @see {@link UntagResourceCommandOutput} for command's `response` shape.
+ * @see {@link TextractClientResolvedConfig | config} for TextractClient's `config` shape.
+ *
+ * @throws {@link AccessDeniedException} (client fault)
+ * You aren't authorized to perform the action. Use the Amazon Resource Name (ARN)
+ * of an authorized user or IAM role to perform the operation.
+ *
+ * @throws {@link InternalServerError} (server fault)
+ * Amazon Textract experienced a service issue. Try your call again.
+ *
+ * @throws {@link InvalidParameterException} (client fault)
+ * An input parameter violated a constraint. For example, in synchronous operations,
+ * an InvalidParameterException
exception occurs
+ * when neither of the S3Object
or Bytes
values are supplied in the Document
+ * request parameter.
+ * Validate your parameter before calling the API operation again.
+ *
+ * @throws {@link ProvisionedThroughputExceededException} (client fault)
+ * The number of requests exceeded your throughput limit. If you want to increase this limit,
+ * contact Amazon Textract.
+ *
+ * @throws {@link ResourceNotFoundException} (client fault)
+ * Returned when an operation tried to access a nonexistent resource.
+ *
+ * @throws {@link ThrottlingException} (server fault)
+ * Amazon Textract is temporarily unable to process the request. Try your call again.
+ *
+ * @throws {@link ValidationException} (client fault)
+ * Indicates that a request was not valid. Check request for proper formatting.
+ *
+ * @throws {@link TextractServiceException}
+ * Base exception class for all service exceptions from Textract service.
+ *
+ */
+export class UntagResourceCommand extends $Command<
+ UntagResourceCommandInput,
+ UntagResourceCommandOutput,
+ TextractClientResolvedConfig
+> {
+ // Start section: command_properties
+ // End section: command_properties
+
+ public static getEndpointParameterInstructions(): EndpointParameterInstructions {
+ return {
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
+ Endpoint: { type: "builtInParams", name: "endpoint" },
+ Region: { type: "builtInParams", name: "region" },
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
+ };
+ }
+
+ /**
+ * @public
+ */
+ constructor(readonly input: UntagResourceCommandInput) {
+ // Start section: command_constructor
+ super();
+ // End section: command_constructor
+ }
+
+ /**
+ * @internal
+ */
+ resolveMiddleware(
+ clientStack: MiddlewareStack,
+ configuration: TextractClientResolvedConfig,
+ options?: __HttpHandlerOptions
+ ): Handler {
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
+ this.middlewareStack.use(getEndpointPlugin(configuration, UntagResourceCommand.getEndpointParameterInstructions()));
+
+ const stack = clientStack.concat(this.middlewareStack);
+
+ const { logger } = configuration;
+ const clientName = "TextractClient";
+ const commandName = "UntagResourceCommand";
+ const handlerExecutionContext: HandlerExecutionContext = {
+ logger,
+ clientName,
+ commandName,
+ inputFilterSensitiveLog: (_: any) => _,
+ outputFilterSensitiveLog: (_: any) => _,
+ [SMITHY_CONTEXT_KEY]: {
+ service: "Textract",
+ operation: "UntagResource",
+ },
+ };
+ const { requestHandler } = configuration;
+ return stack.resolve(
+ (request: FinalizeHandlerArguments) =>
+ requestHandler.handle(request.request as __HttpRequest, options || {}),
+ handlerExecutionContext
+ );
+ }
+
+ /**
+ * @internal
+ */
+ private serialize(input: UntagResourceCommandInput, context: __SerdeContext): Promise<__HttpRequest> {
+ return se_UntagResourceCommand(input, context);
+ }
+
+ /**
+ * @internal
+ */
+ private deserialize(output: __HttpResponse, context: __SerdeContext): Promise {
+ return de_UntagResourceCommand(output, context);
+ }
+
+ // Start section: command_body_extra
+ // End section: command_body_extra
+}
diff --git a/clients/client-textract/src/commands/UpdateAdapterCommand.ts b/clients/client-textract/src/commands/UpdateAdapterCommand.ts
new file mode 100644
index 0000000000000..224b844591479
--- /dev/null
+++ b/clients/client-textract/src/commands/UpdateAdapterCommand.ts
@@ -0,0 +1,186 @@
+// smithy-typescript generated code
+import { EndpointParameterInstructions, getEndpointPlugin } from "@smithy/middleware-endpoint";
+import { getSerdePlugin } from "@smithy/middleware-serde";
+import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
+import { Command as $Command } from "@smithy/smithy-client";
+import {
+ FinalizeHandlerArguments,
+ Handler,
+ HandlerExecutionContext,
+ HttpHandlerOptions as __HttpHandlerOptions,
+ MetadataBearer as __MetadataBearer,
+ MiddlewareStack,
+ SerdeContext as __SerdeContext,
+ SMITHY_CONTEXT_KEY,
+} from "@smithy/types";
+
+import { UpdateAdapterRequest, UpdateAdapterResponse } from "../models/models_0";
+import { de_UpdateAdapterCommand, se_UpdateAdapterCommand } from "../protocols/Aws_json1_1";
+import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient";
+
+/**
+ * @public
+ */
+export { __MetadataBearer, $Command };
+/**
+ * @public
+ *
+ * The input for {@link UpdateAdapterCommand}.
+ */
+export interface UpdateAdapterCommandInput extends UpdateAdapterRequest {}
+/**
+ * @public
+ *
+ * The output of {@link UpdateAdapterCommand}.
+ */
+export interface UpdateAdapterCommandOutput extends UpdateAdapterResponse, __MetadataBearer {}
+
+/**
+ * @public
+ * Update the configuration for an adapter. FeatureTypes configurations cannot be updated.
+ * At least one new parameter must be specified as an argument.
+ * @example
+ * Use a bare-bones client and the command you need to make an API call.
+ * ```javascript
+ * import { TextractClient, UpdateAdapterCommand } from "@aws-sdk/client-textract"; // ES Modules import
+ * // const { TextractClient, UpdateAdapterCommand } = require("@aws-sdk/client-textract"); // CommonJS import
+ * const client = new TextractClient(config);
+ * const input = { // UpdateAdapterRequest
+ * AdapterId: "STRING_VALUE", // required
+ * Description: "STRING_VALUE",
+ * AdapterName: "STRING_VALUE",
+ * AutoUpdate: "ENABLED" || "DISABLED",
+ * };
+ * const command = new UpdateAdapterCommand(input);
+ * const response = await client.send(command);
+ * // { // UpdateAdapterResponse
+ * // AdapterId: "STRING_VALUE",
+ * // AdapterName: "STRING_VALUE",
+ * // CreationTime: new Date("TIMESTAMP"),
+ * // Description: "STRING_VALUE",
+ * // FeatureTypes: [ // FeatureTypes
+ * // "TABLES" || "FORMS" || "QUERIES" || "SIGNATURES" || "LAYOUT",
+ * // ],
+ * // AutoUpdate: "ENABLED" || "DISABLED",
+ * // };
+ *
+ * ```
+ *
+ * @param UpdateAdapterCommandInput - {@link UpdateAdapterCommandInput}
+ * @returns {@link UpdateAdapterCommandOutput}
+ * @see {@link UpdateAdapterCommandInput} for command's `input` shape.
+ * @see {@link UpdateAdapterCommandOutput} for command's `response` shape.
+ * @see {@link TextractClientResolvedConfig | config} for TextractClient's `config` shape.
+ *
+ * @throws {@link AccessDeniedException} (client fault)
+ * You aren't authorized to perform the action. Use the Amazon Resource Name (ARN)
+ * of an authorized user or IAM role to perform the operation.
+ *
+ * @throws {@link ConflictException} (client fault)
+ * Updating or deleting a resource can cause an inconsistent state.
+ *
+ * @throws {@link InternalServerError} (server fault)
+ * Amazon Textract experienced a service issue. Try your call again.
+ *
+ * @throws {@link InvalidParameterException} (client fault)
+ * An input parameter violated a constraint. For example, in synchronous operations,
+ * an InvalidParameterException
exception occurs
+ * when neither of the S3Object
or Bytes
values are supplied in the Document
+ * request parameter.
+ * Validate your parameter before calling the API operation again.
+ *
+ * @throws {@link ProvisionedThroughputExceededException} (client fault)
+ * The number of requests exceeded your throughput limit. If you want to increase this limit,
+ * contact Amazon Textract.
+ *
+ * @throws {@link ResourceNotFoundException} (client fault)
+ * Returned when an operation tried to access a nonexistent resource.
+ *
+ * @throws {@link ThrottlingException} (server fault)
+ * Amazon Textract is temporarily unable to process the request. Try your call again.
+ *
+ * @throws {@link ValidationException} (client fault)
+ * Indicates that a request was not valid. Check request for proper formatting.
+ *
+ * @throws {@link TextractServiceException}
+ * Base exception class for all service exceptions from Textract service.
+ *
+ */
+export class UpdateAdapterCommand extends $Command<
+ UpdateAdapterCommandInput,
+ UpdateAdapterCommandOutput,
+ TextractClientResolvedConfig
+> {
+ // Start section: command_properties
+ // End section: command_properties
+
+ public static getEndpointParameterInstructions(): EndpointParameterInstructions {
+ return {
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
+ Endpoint: { type: "builtInParams", name: "endpoint" },
+ Region: { type: "builtInParams", name: "region" },
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
+ };
+ }
+
+ /**
+ * @public
+ */
+ constructor(readonly input: UpdateAdapterCommandInput) {
+ // Start section: command_constructor
+ super();
+ // End section: command_constructor
+ }
+
+ /**
+ * @internal
+ */
+ resolveMiddleware(
+ clientStack: MiddlewareStack,
+ configuration: TextractClientResolvedConfig,
+ options?: __HttpHandlerOptions
+ ): Handler {
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
+ this.middlewareStack.use(getEndpointPlugin(configuration, UpdateAdapterCommand.getEndpointParameterInstructions()));
+
+ const stack = clientStack.concat(this.middlewareStack);
+
+ const { logger } = configuration;
+ const clientName = "TextractClient";
+ const commandName = "UpdateAdapterCommand";
+ const handlerExecutionContext: HandlerExecutionContext = {
+ logger,
+ clientName,
+ commandName,
+ inputFilterSensitiveLog: (_: any) => _,
+ outputFilterSensitiveLog: (_: any) => _,
+ [SMITHY_CONTEXT_KEY]: {
+ service: "Textract",
+ operation: "UpdateAdapter",
+ },
+ };
+ const { requestHandler } = configuration;
+ return stack.resolve(
+ (request: FinalizeHandlerArguments) =>
+ requestHandler.handle(request.request as __HttpRequest, options || {}),
+ handlerExecutionContext
+ );
+ }
+
+ /**
+ * @internal
+ */
+ private serialize(input: UpdateAdapterCommandInput, context: __SerdeContext): Promise<__HttpRequest> {
+ return se_UpdateAdapterCommand(input, context);
+ }
+
+ /**
+ * @internal
+ */
+ private deserialize(output: __HttpResponse, context: __SerdeContext): Promise {
+ return de_UpdateAdapterCommand(output, context);
+ }
+
+ // Start section: command_body_extra
+ // End section: command_body_extra
+}
diff --git a/clients/client-textract/src/commands/index.ts b/clients/client-textract/src/commands/index.ts
index cedd6b88794f7..1f002117dce37 100644
--- a/clients/client-textract/src/commands/index.ts
+++ b/clients/client-textract/src/commands/index.ts
@@ -2,13 +2,25 @@
export * from "./AnalyzeDocumentCommand";
export * from "./AnalyzeExpenseCommand";
export * from "./AnalyzeIDCommand";
+export * from "./CreateAdapterCommand";
+export * from "./CreateAdapterVersionCommand";
+export * from "./DeleteAdapterCommand";
+export * from "./DeleteAdapterVersionCommand";
export * from "./DetectDocumentTextCommand";
+export * from "./GetAdapterCommand";
+export * from "./GetAdapterVersionCommand";
export * from "./GetDocumentAnalysisCommand";
export * from "./GetDocumentTextDetectionCommand";
export * from "./GetExpenseAnalysisCommand";
export * from "./GetLendingAnalysisCommand";
export * from "./GetLendingAnalysisSummaryCommand";
+export * from "./ListAdapterVersionsCommand";
+export * from "./ListAdaptersCommand";
+export * from "./ListTagsForResourceCommand";
export * from "./StartDocumentAnalysisCommand";
export * from "./StartDocumentTextDetectionCommand";
export * from "./StartExpenseAnalysisCommand";
export * from "./StartLendingAnalysisCommand";
+export * from "./TagResourceCommand";
+export * from "./UntagResourceCommand";
+export * from "./UpdateAdapterCommand";
diff --git a/clients/client-textract/src/index.ts b/clients/client-textract/src/index.ts
index b9d69685ccf60..6a9bba0af9ecf 100644
--- a/clients/client-textract/src/index.ts
+++ b/clients/client-textract/src/index.ts
@@ -11,6 +11,7 @@ export * from "./TextractClient";
export * from "./Textract";
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
export * from "./commands";
+export * from "./pagination";
export * from "./models";
export { TextractServiceException } from "./models/TextractServiceException";
diff --git a/clients/client-textract/src/models/models_0.ts b/clients/client-textract/src/models/models_0.ts
index 3c8100e453fc9..38f219c4b076a 100644
--- a/clients/client-textract/src/models/models_0.ts
+++ b/clients/client-textract/src/models/models_0.ts
@@ -31,6 +31,111 @@ export class AccessDeniedException extends __BaseException {
}
}
+/**
+ * @public
+ * An adapter selected for use when analyzing documents. Contains an adapter ID and a version number.
+ * Contains information on pages selected for analysis when analyzing documents asychronously.
+ */
+export interface Adapter {
+ /**
+ * @public
+ * A unique identifier for the adapter resource.
+ */
+ AdapterId: string | undefined;
+
+ /**
+ * @public
+ * Pages is a parameter that the user inputs to specify which pages to apply an adapter to. The following is a
+ * list of rules for using this parameter.
+ *
+ *
+ * If a page is not specified, it is set to ["1"]
by default.
+ *
+ *
+ * The following characters are allowed in the parameter's string:
+ * 0 1 2 3 4 5 6 7 8 9 - *
. No whitespace is allowed.
+ *
+ *
+ * When using * to indicate all pages, it must be the only element in the list.
+ *
+ *
+ * You can use page intervals, such as ["1-3", "1-1", "4-*"]
. Where *
indicates last page of
+ * document.
+ *
+ *
+ * Specified pages must be greater than 0 and less than or equal to the number of pages in the document.
+ *
+ *
+ */
+ Pages?: string[];
+
+ /**
+ * @public
+ * A string that identifies the version of the adapter.
+ */
+ Version: string | undefined;
+}
+
+/**
+ * @public
+ * @enum
+ */
+export const FeatureType = {
+ FORMS: "FORMS",
+ LAYOUT: "LAYOUT",
+ QUERIES: "QUERIES",
+ SIGNATURES: "SIGNATURES",
+ TABLES: "TABLES",
+} as const;
+
+/**
+ * @public
+ */
+export type FeatureType = (typeof FeatureType)[keyof typeof FeatureType];
+
+/**
+ * @public
+ * Contains information on the adapter, including the adapter ID, Name, Creation time, and feature types.
+ */
+export interface AdapterOverview {
+ /**
+ * @public
+ * A unique identifier for the adapter resource.
+ */
+ AdapterId?: string;
+
+ /**
+ * @public
+ * A string naming the adapter resource.
+ */
+ AdapterName?: string;
+
+ /**
+ * @public
+ * The date and time that the adapter was created.
+ */
+ CreationTime?: Date;
+
+ /**
+ * @public
+ * The feature types that the adapter is operating on.
+ */
+ FeatureTypes?: (FeatureType | string)[];
+}
+
+/**
+ * @public
+ * Contains information about adapters used when analyzing a document,
+ * with each adapter specified using an AdapterId and version
+ */
+export interface AdaptersConfig {
+ /**
+ * @public
+ * A list of adapters to be used when analyzing the specified document.
+ */
+ Adapters: Adapter[] | undefined;
+}
+
/**
* @public
* The S3 bucket name and file name that identifies the document.
@@ -63,6 +168,133 @@ export interface S3Object {
Version?: string;
}
+/**
+ * @public
+ * The dataset configuration options for a given version of an adapter.
+ * Can include an Amazon S3 bucket if specified.
+ */
+export interface AdapterVersionDatasetConfig {
+ /**
+ * @public
+ * The S3 bucket name and file name that identifies the document.
+ * The AWS Region for the S3 bucket that contains the document must match the Region that
+ * you use for Amazon Textract operations.
+ * For Amazon Textract to process a file in an S3 bucket, the user must have
+ * permission to access the S3 bucket and file.
+ *
+ *
+ */
+ ManifestS3Object?: S3Object;
+}
+
+/**
+ * @public
+ * The evaluation metrics (F1 score, Precision, and Recall) for an adapter version.
+ */
+export interface EvaluationMetric {
+ /**
+ * @public
+ * The F1 score for an adapter version.
+ */
+ F1Score?: number;
+
+ /**
+ * @public
+ * The Precision score for an adapter version.
+ */
+ Precision?: number;
+
+ /**
+ * @public
+ * The Recall score for an adapter version.
+ */
+ Recall?: number;
+}
+
+/**
+ * @public
+ * Contains information on the metrics used to evalute the peformance of a given adapter version. Includes data for
+ * baseline model performance and individual adapter version perfromance.
+ */
+export interface AdapterVersionEvaluationMetric {
+ /**
+ * @public
+ * The F1 score, precision, and recall metrics for the baseline model.
+ */
+ Baseline?: EvaluationMetric;
+
+ /**
+ * @public
+ * The F1 score, precision, and recall metrics for the baseline model.
+ */
+ AdapterVersion?: EvaluationMetric;
+
+ /**
+ * @public
+ * Indicates the feature type being analyzed by a given adapter version.
+ */
+ FeatureType?: FeatureType | string;
+}
+
+/**
+ * @public
+ * @enum
+ */
+export const AdapterVersionStatus = {
+ ACTIVE: "ACTIVE",
+ AT_RISK: "AT_RISK",
+ CREATION_ERROR: "CREATION_ERROR",
+ CREATION_IN_PROGRESS: "CREATION_IN_PROGRESS",
+ DEPRECATED: "DEPRECATED",
+} as const;
+
+/**
+ * @public
+ */
+export type AdapterVersionStatus = (typeof AdapterVersionStatus)[keyof typeof AdapterVersionStatus];
+
+/**
+ * @public
+ * Summary info for an adapter version. Contains information on the AdapterId, AdapterVersion, CreationTime, FeatureTypes, and Status.
+ */
+export interface AdapterVersionOverview {
+ /**
+ * @public
+ * A unique identifier for the adapter associated with a given adapter version.
+ */
+ AdapterId?: string;
+
+ /**
+ * @public
+ * An identified for a given adapter version.
+ */
+ AdapterVersion?: string;
+
+ /**
+ * @public
+ * The date and time that a given adapter version was created.
+ */
+ CreationTime?: Date;
+
+ /**
+ * @public
+ * The feature types that the adapter version is operating on.
+ */
+ FeatureTypes?: (FeatureType | string)[];
+
+ /**
+ * @public
+ * Contains information on the status of a given adapter version.
+ */
+ Status?: AdapterVersionStatus | string;
+
+ /**
+ * @public
+ * A message explaining the status of a given adapter vesion.
+ */
+ StatusMessage?: string;
+}
+
/**
* @public
* The input document, either as bytes or as an S3 object.
@@ -100,23 +332,6 @@ export interface Document {
S3Object?: S3Object;
}
-/**
- * @public
- * @enum
- */
-export const FeatureType = {
- FORMS: "FORMS",
- LAYOUT: "LAYOUT",
- QUERIES: "QUERIES",
- SIGNATURES: "SIGNATURES",
- TABLES: "TABLES",
-} as const;
-
-/**
- * @public
- */
-export type FeatureType = (typeof FeatureType)[keyof typeof FeatureType];
-
/**
* @public
* @enum
@@ -246,10 +461,7 @@ export interface AnalyzeDocumentRequest {
* A list of the types of analysis to perform. Add TABLES to the list to return information
* about the tables that are detected in the input document. Add FORMS to return detected form
* data. Add SIGNATURES to return the locations of detected signatures. Add LAYOUT to the list
- * to return information about the layout of the document. To perform both forms
- * and table analysis, add TABLES and FORMS to FeatureTypes
. To detect signatures
- * within the document and within form data and table data, add SIGNATURES to either TABLES or
- * FORMS. All lines and words detected in the document are included in the response (including
+ * to return information about the layout of the document. All lines and words detected in the document are included in the response (including
* text that isn't related to the value of FeatureTypes
).
*/
FeatureTypes: (FeatureType | string)[] | undefined;
@@ -266,6 +478,12 @@ export interface AnalyzeDocumentRequest {
* Contains Queries and the alias for those Queries, as determined by the input.
*/
QueriesConfig?: QueriesConfig;
+
+ /**
+ * @public
+ * Specifies the adapter to be used when analyzing a document.
+ */
+ AdaptersConfig?: AdaptersConfig;
}
/**
@@ -640,6 +858,49 @@ export interface Block {
* response. Also contains location and confidence score.
*
*
+ * The following BlockTypes are only returned for Amazon Textract Layout.
+ *
+ *
+ *
+ * LAYOUT_TITLE
- The main title of the document.
+ *
+ *
+ *
+ * LAYOUT_HEADER
- Text located in the top margin of the document.
+ *
+ *
+ *
+ * LAYOUT_FOOTER
- Text located in the bottom margin of the document.
+ *
+ *
+ *
+ * LAYOUT_SECTION_HEADER
- The titles of sections within a document.
+ *
+ *
+ *
+ * LAYOUT_PAGE_NUMBER
- The page number of the documents.
+ *
+ *
+ *
+ * LAYOUT_LIST
- Any information grouped together in list form.
+ *
+ *
+ *
+ * LAYOUT_FIGURE
- Indicates the location of an image in a document.
+ *
+ *
+ *
+ * LAYOUT_TABLE
- Indicates the location of a table in the document.
+ *
+ *
+ *
+ * LAYOUT_KEY_VALUE
- Indicates the location of form key-values in a document.
+ *
+ *
+ *
+ * LAYOUT_TEXT
- Text that is present typically as a part of paragraphs in documents.
+ *
+ *
*/
BlockType?: BlockType | string;
@@ -1523,46 +1784,441 @@ export interface AnalyzeIDResponse {
/**
* @public
+ * @enum
*/
-export interface DetectDocumentTextRequest {
+export const AutoUpdate = {
+ DISABLED: "DISABLED",
+ ENABLED: "ENABLED",
+} as const;
+
+/**
+ * @public
+ */
+export type AutoUpdate = (typeof AutoUpdate)[keyof typeof AutoUpdate];
+
+/**
+ * @public
+ * Updating or deleting a resource can cause an inconsistent state.
+ */
+export class ConflictException extends __BaseException {
+ readonly name: "ConflictException" = "ConflictException";
+ readonly $fault: "client" = "client";
+ Message?: string;
+ Code?: string;
/**
- * @public
- * The input document as base64-encoded bytes or an Amazon S3 object. If you use the AWS CLI
- * to call Amazon Textract operations, you can't pass image bytes. The document must be an image
- * in JPEG or PNG format.
- * If you're using an AWS SDK to call Amazon Textract, you might not need to base64-encode
- * image bytes that are passed using the Bytes
field.
+ * @internal
*/
- Document: Document | undefined;
+ constructor(opts: __ExceptionOptionType) {
+ super({
+ name: "ConflictException",
+ $fault: "client",
+ ...opts,
+ });
+ Object.setPrototypeOf(this, ConflictException.prototype);
+ this.Message = opts.Message;
+ this.Code = opts.Code;
+ }
}
/**
* @public
*/
-export interface DetectDocumentTextResponse {
+export interface CreateAdapterRequest {
/**
* @public
- * Metadata about the document. It contains the number of pages that are detected in the
- * document.
+ * The name to be assigned to the adapter being created.
*/
- DocumentMetadata?: DocumentMetadata;
+ AdapterName: string | undefined;
/**
* @public
- * An array of Block
objects that contain the text that's detected in the
- * document.
+ * Idempotent token is used to recognize the request. If the same token is used with multiple
+ * CreateAdapter requests, the same session is returned.
+ * This token is employed to avoid unintentionally creating the same session multiple times.
*/
- Blocks?: Block[];
+ ClientRequestToken?: string;
/**
* @public
- *
+ * The description to be assigned to the adapter being created.
*/
- DetectDocumentTextModelVersion?: string;
-}
+ Description?: string;
-/**
- * @public
+ /**
+ * @public
+ * The type of feature that the adapter is being trained on. Currrenly, supported feature
+ * types are: QUERIES
+ *
+ */
+ FeatureTypes: (FeatureType | string)[] | undefined;
+
+ /**
+ * @public
+ * Controls whether or not the adapter should automatically update.
+ */
+ AutoUpdate?: AutoUpdate | string;
+
+ /**
+ * @public
+ * A list of tags to be added to the adapter.
+ */
+ Tags?: Record;
+}
+
+/**
+ * @public
+ */
+export interface CreateAdapterResponse {
+ /**
+ * @public
+ * A string containing the unique ID for the adapter that has been created.
+ */
+ AdapterId?: string;
+}
+
+/**
+ * @public
+ * A ClientRequestToken
input parameter was reused with an operation, but at
+ * least one of the other input parameters is different from the previous call to the
+ * operation.
+ */
+export class IdempotentParameterMismatchException extends __BaseException {
+ readonly name: "IdempotentParameterMismatchException" = "IdempotentParameterMismatchException";
+ readonly $fault: "client" = "client";
+ Message?: string;
+ Code?: string;
+ /**
+ * @internal
+ */
+ constructor(opts: __ExceptionOptionType) {
+ super({
+ name: "IdempotentParameterMismatchException",
+ $fault: "client",
+ ...opts,
+ });
+ Object.setPrototypeOf(this, IdempotentParameterMismatchException.prototype);
+ this.Message = opts.Message;
+ this.Code = opts.Code;
+ }
+}
+
+/**
+ * @public
+ * An Amazon Textract service limit was exceeded. For example, if you start too many
+ * asynchronous jobs concurrently, calls to start operations
+ * (StartDocumentTextDetection
, for example) raise a LimitExceededException
+ * exception (HTTP status code: 400) until the number of concurrently running jobs is below
+ * the Amazon Textract service limit.
+ */
+export class LimitExceededException extends __BaseException {
+ readonly name: "LimitExceededException" = "LimitExceededException";
+ readonly $fault: "client" = "client";
+ Message?: string;
+ Code?: string;
+ /**
+ * @internal
+ */
+ constructor(opts: __ExceptionOptionType) {
+ super({
+ name: "LimitExceededException",
+ $fault: "client",
+ ...opts,
+ });
+ Object.setPrototypeOf(this, LimitExceededException.prototype);
+ this.Message = opts.Message;
+ this.Code = opts.Code;
+ }
+}
+
+/**
+ * @public
+ * Returned when a request cannot be completed as it would exceed a maximum service quota.
+ */
+export class ServiceQuotaExceededException extends __BaseException {
+ readonly name: "ServiceQuotaExceededException" = "ServiceQuotaExceededException";
+ readonly $fault: "client" = "client";
+ Message?: string;
+ Code?: string;
+ /**
+ * @internal
+ */
+ constructor(opts: __ExceptionOptionType) {
+ super({
+ name: "ServiceQuotaExceededException",
+ $fault: "client",
+ ...opts,
+ });
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
+ this.Message = opts.Message;
+ this.Code = opts.Code;
+ }
+}
+
+/**
+ * @public
+ * Indicates that a request was not valid. Check request for proper formatting.
+ */
+export class ValidationException extends __BaseException {
+ readonly name: "ValidationException" = "ValidationException";
+ readonly $fault: "client" = "client";
+ Message?: string;
+ Code?: string;
+ /**
+ * @internal
+ */
+ constructor(opts: __ExceptionOptionType) {
+ super({
+ name: "ValidationException",
+ $fault: "client",
+ ...opts,
+ });
+ Object.setPrototypeOf(this, ValidationException.prototype);
+ this.Message = opts.Message;
+ this.Code = opts.Code;
+ }
+}
+
+/**
+ * @public
+ * Sets whether or not your output will go to a user created bucket. Used to set the name
+ * of the bucket, and the prefix on the output file.
+ *
+ * OutputConfig
is an optional parameter which lets you adjust where your
+ * output will be placed. By default, Amazon Textract will store the results internally and can
+ * only be accessed by the Get API operations. With OutputConfig
enabled, you can
+ * set the name of the bucket the output will be sent to the file prefix of the results where
+ * you can download your results. Additionally, you can set the KMSKeyID
+ * parameter to a customer master key (CMK) to encrypt your output. Without this parameter set
+ * Amazon Textract will encrypt server-side using the AWS managed CMK for Amazon S3.
+ * Decryption of Customer Content is necessary for processing of the documents by Amazon Textract. If your account
+ * is opted out under an AI services opt out policy then all unencrypted Customer Content is immediately and permanently deleted after
+ * the Customer Content has been processed by the service. No copy of of the output is retained by Amazon Textract. For information about how to opt out, see Managing AI services opt-out policy.
+ *
+ * For more information on data privacy,
+ * see the Data Privacy
+ * FAQ .
+ */
+export interface OutputConfig {
+ /**
+ * @public
+ * The name of the bucket your output will go to.
+ */
+ S3Bucket: string | undefined;
+
+ /**
+ * @public
+ * The prefix of the object key that the output will be saved to. When not enabled, the
+ * prefix will be “textract_output".
+ */
+ S3Prefix?: string;
+}
+
+/**
+ * @public
+ */
+export interface CreateAdapterVersionRequest {
+ /**
+ * @public
+ * A string containing a unique ID for the adapter that will receive a new version.
+ */
+ AdapterId: string | undefined;
+
+ /**
+ * @public
+ * Idempotent token is used to recognize the request. If the same token is used with multiple
+ * CreateAdapterVersion requests, the same session is returned.
+ * This token is employed to avoid unintentionally creating the same session multiple times.
+ */
+ ClientRequestToken?: string;
+
+ /**
+ * @public
+ * Specifies a dataset used to train a new adapter version. Takes a ManifestS3Object as the
+ * value.
+ */
+ DatasetConfig: AdapterVersionDatasetConfig | undefined;
+
+ /**
+ * @public
+ * The identifier for your AWS Key Management Service key (AWS KMS key). Used to encrypt your documents.
+ */
+ KMSKeyId?: string;
+
+ /**
+ * @public
+ * Sets whether or not your output will go to a user created bucket. Used to set the name
+ * of the bucket, and the prefix on the output file.
+ *
+ * OutputConfig
is an optional parameter which lets you adjust where your
+ * output will be placed. By default, Amazon Textract will store the results internally and can
+ * only be accessed by the Get API operations. With OutputConfig
enabled, you can
+ * set the name of the bucket the output will be sent to the file prefix of the results where
+ * you can download your results. Additionally, you can set the KMSKeyID
+ * parameter to a customer master key (CMK) to encrypt your output. Without this parameter set
+ * Amazon Textract will encrypt server-side using the AWS managed CMK for Amazon S3.
+ * Decryption of Customer Content is necessary for processing of the documents by Amazon Textract. If your account
+ * is opted out under an AI services opt out policy then all unencrypted Customer Content is immediately and permanently deleted after
+ * the Customer Content has been processed by the service. No copy of of the output is retained by Amazon Textract. For information about how to opt out, see Managing AI services opt-out policy.
+ *
+ * For more information on data privacy,
+ * see the Data Privacy
+ * FAQ .
+ */
+ OutputConfig: OutputConfig | undefined;
+
+ /**
+ * @public
+ * A set of tags (key-value pairs) that you want to attach to the adapter version.
+ */
+ Tags?: Record;
+}
+
+/**
+ * @public
+ */
+export interface CreateAdapterVersionResponse {
+ /**
+ * @public
+ * A string containing the unique ID for the adapter that has received a new version.
+ */
+ AdapterId?: string;
+
+ /**
+ * @public
+ * A string describing the new version of the adapter.
+ */
+ AdapterVersion?: string;
+}
+
+/**
+ * @public
+ * Indicates you do not have decrypt permissions with the KMS key entered, or the KMS key
+ * was entered incorrectly.
+ */
+export class InvalidKMSKeyException extends __BaseException {
+ readonly name: "InvalidKMSKeyException" = "InvalidKMSKeyException";
+ readonly $fault: "client" = "client";
+ Message?: string;
+ Code?: string;
+ /**
+ * @internal
+ */
+ constructor(opts: __ExceptionOptionType) {
+ super({
+ name: "InvalidKMSKeyException",
+ $fault: "client",
+ ...opts,
+ });
+ Object.setPrototypeOf(this, InvalidKMSKeyException.prototype);
+ this.Message = opts.Message;
+ this.Code = opts.Code;
+ }
+}
+
+/**
+ * @public
+ * Returned when an operation tried to access a nonexistent resource.
+ */
+export class ResourceNotFoundException extends __BaseException {
+ readonly name: "ResourceNotFoundException" = "ResourceNotFoundException";
+ readonly $fault: "client" = "client";
+ Message?: string;
+ Code?: string;
+ /**
+ * @internal
+ */
+ constructor(opts: __ExceptionOptionType) {
+ super({
+ name: "ResourceNotFoundException",
+ $fault: "client",
+ ...opts,
+ });
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
+ this.Message = opts.Message;
+ this.Code = opts.Code;
+ }
+}
+
+/**
+ * @public
+ */
+export interface DeleteAdapterRequest {
+ /**
+ * @public
+ * A string containing a unique ID for the adapter to be deleted.
+ */
+ AdapterId: string | undefined;
+}
+
+/**
+ * @public
+ */
+export interface DeleteAdapterResponse {}
+
+/**
+ * @public
+ */
+export interface DeleteAdapterVersionRequest {
+ /**
+ * @public
+ * A string containing a unique ID for the adapter version that will be deleted.
+ */
+ AdapterId: string | undefined;
+
+ /**
+ * @public
+ * Specifies the adapter version to be deleted.
+ */
+ AdapterVersion: string | undefined;
+}
+
+/**
+ * @public
+ */
+export interface DeleteAdapterVersionResponse {}
+
+/**
+ * @public
+ */
+export interface DetectDocumentTextRequest {
+ /**
+ * @public
+ * The input document as base64-encoded bytes or an Amazon S3 object. If you use the AWS CLI
+ * to call Amazon Textract operations, you can't pass image bytes. The document must be an image
+ * in JPEG or PNG format.
+ * If you're using an AWS SDK to call Amazon Textract, you might not need to base64-encode
+ * image bytes that are passed using the Bytes
field.
+ */
+ Document: Document | undefined;
+}
+
+/**
+ * @public
+ */
+export interface DetectDocumentTextResponse {
+ /**
+ * @public
+ * Metadata about the document. It contains the number of pages that are detected in the
+ * document.
+ */
+ DocumentMetadata?: DocumentMetadata;
+
+ /**
+ * @public
+ * An array of Block
objects that contain the text that's detected in the
+ * document.
+ */
+ Blocks?: Block[];
+
+ /**
+ * @public
+ *
+ */
+ DetectDocumentTextModelVersion?: string;
+}
+
+/**
+ * @public
* A structure that holds information regarding a detected signature on a page.
*/
export interface DetectedSignature {
@@ -1749,19 +2405,183 @@ export interface Extraction {
* @public
* Holds the structured data returned by AnalyzeDocument for lending documents.
*/
- LendingDocument?: LendingDocument;
+ LendingDocument?: LendingDocument;
+
+ /**
+ * @public
+ * The structure holding all the information returned by AnalyzeExpense
+ */
+ ExpenseDocument?: ExpenseDocument;
+
+ /**
+ * @public
+ * The structure that lists each document processed in an AnalyzeID operation.
+ */
+ IdentityDocument?: IdentityDocument;
+}
+
+/**
+ * @public
+ */
+export interface GetAdapterRequest {
+ /**
+ * @public
+ * A string containing a unique ID for the adapter.
+ */
+ AdapterId: string | undefined;
+}
+
+/**
+ * @public
+ */
+export interface GetAdapterResponse {
+ /**
+ * @public
+ * A string identifying the adapter that information has been retrieved for.
+ */
+ AdapterId?: string;
+
+ /**
+ * @public
+ * The name of the requested adapter.
+ */
+ AdapterName?: string;
+
+ /**
+ * @public
+ * The date and time the requested adapter was created at.
+ */
+ CreationTime?: Date;
+
+ /**
+ * @public
+ * The description for the requested adapter.
+ */
+ Description?: string;
+
+ /**
+ * @public
+ * List of the targeted feature types for the requested adapter.
+ */
+ FeatureTypes?: (FeatureType | string)[];
+
+ /**
+ * @public
+ * Binary value indicating if the adapter is being automatically updated or not.
+ */
+ AutoUpdate?: AutoUpdate | string;
+
+ /**
+ * @public
+ * A set of tags (key-value pairs) associated with the adapter that has been retrieved.
+ */
+ Tags?: Record;
+}
+
+/**
+ * @public
+ */
+export interface GetAdapterVersionRequest {
+ /**
+ * @public
+ * A string specifying a unique ID for the adapter version you want to retrieve information for.
+ */
+ AdapterId: string | undefined;
+
+ /**
+ * @public
+ * A string specifying the adapter version you want to retrieve information for.
+ */
+ AdapterVersion: string | undefined;
+}
+
+/**
+ * @public
+ */
+export interface GetAdapterVersionResponse {
+ /**
+ * @public
+ * A string containing a unique ID for the adapter version being retrieved.
+ */
+ AdapterId?: string;
+
+ /**
+ * @public
+ * A string containing the adapter version that has been retrieved.
+ */
+ AdapterVersion?: string;
+
+ /**
+ * @public
+ * The time that the adapter version was created.
+ */
+ CreationTime?: Date;
+
+ /**
+ * @public
+ * List of the targeted feature types for the requested adapter version.
+ */
+ FeatureTypes?: (FeatureType | string)[];
+
+ /**
+ * @public
+ * The status of the adapter version that has been requested.
+ */
+ Status?: AdapterVersionStatus | string;
+
+ /**
+ * @public
+ * A message that describes the status of the requested adapter version.
+ */
+ StatusMessage?: string;
+
+ /**
+ * @public
+ * Specifies a dataset used to train a new adapter version. Takes a ManifestS3Objec as the
+ * value.
+ */
+ DatasetConfig?: AdapterVersionDatasetConfig;
+
+ /**
+ * @public
+ * The identifier for your AWS Key Management Service key (AWS KMS key). Used to encrypt your documents.
+ */
+ KMSKeyId?: string;
+
+ /**
+ * @public
+ * Sets whether or not your output will go to a user created bucket. Used to set the name
+ * of the bucket, and the prefix on the output file.
+ *
+ * OutputConfig
is an optional parameter which lets you adjust where your
+ * output will be placed. By default, Amazon Textract will store the results internally and can
+ * only be accessed by the Get API operations. With OutputConfig
enabled, you can
+ * set the name of the bucket the output will be sent to the file prefix of the results where
+ * you can download your results. Additionally, you can set the KMSKeyID
+ * parameter to a customer master key (CMK) to encrypt your output. Without this parameter set
+ * Amazon Textract will encrypt server-side using the AWS managed CMK for Amazon S3.
+ * Decryption of Customer Content is necessary for processing of the documents by Amazon Textract. If your account
+ * is opted out under an AI services opt out policy then all unencrypted Customer Content is immediately and permanently deleted after
+ * the Customer Content has been processed by the service. No copy of of the output is retained by Amazon Textract. For information about how to opt out, see Managing AI services opt-out policy.
+ *
+ * For more information on data privacy,
+ * see the Data Privacy
+ * FAQ .
+ */
+ OutputConfig?: OutputConfig;
/**
* @public
- * The structure holding all the information returned by AnalyzeExpense
+ * The evaluation metrics (F1 score, Precision, and Recall) for the requested version,
+ * grouped by baseline metrics and adapter version.
*/
- ExpenseDocument?: ExpenseDocument;
+ EvaluationMetrics?: AdapterVersionEvaluationMetric[];
/**
* @public
- * The structure that lists each document processed in an AnalyzeID operation.
+ * A set of tags (key-value pairs) that are associated with the adapter version.
*/
- IdentityDocument?: IdentityDocument;
+ Tags?: Record;
}
/**
@@ -1902,31 +2722,6 @@ export class InvalidJobIdException extends __BaseException {
}
}
-/**
- * @public
- * Indicates you do not have decrypt permissions with the KMS key entered, or the KMS key
- * was entered incorrectly.
- */
-export class InvalidKMSKeyException extends __BaseException {
- readonly name: "InvalidKMSKeyException" = "InvalidKMSKeyException";
- readonly $fault: "client" = "client";
- Message?: string;
- Code?: string;
- /**
- * @internal
- */
- constructor(opts: __ExceptionOptionType) {
- super({
- name: "InvalidKMSKeyException",
- $fault: "client",
- ...opts,
- });
- Object.setPrototypeOf(this, InvalidKMSKeyException.prototype);
- this.Message = opts.Message;
- this.Code = opts.Code;
- }
-}
-
/**
* @public
*/
@@ -2298,110 +3093,145 @@ export interface GetLendingAnalysisSummaryResponse {
/**
* @public
- * A ClientRequestToken
input parameter was reused with an operation, but at
- * least one of the other input parameters is different from the previous call to the
- * operation.
*/
-export class IdempotentParameterMismatchException extends __BaseException {
- readonly name: "IdempotentParameterMismatchException" = "IdempotentParameterMismatchException";
- readonly $fault: "client" = "client";
- Message?: string;
- Code?: string;
+export interface ListAdaptersRequest {
/**
- * @internal
+ * @public
+ * Specifies the lower bound for the ListAdapters operation.
+ * Ensures ListAdapters returns only adapters created after the specified creation time.
*/
- constructor(opts: __ExceptionOptionType) {
- super({
- name: "IdempotentParameterMismatchException",
- $fault: "client",
- ...opts,
- });
- Object.setPrototypeOf(this, IdempotentParameterMismatchException.prototype);
- this.Message = opts.Message;
- this.Code = opts.Code;
- }
+ AfterCreationTime?: Date;
+
+ /**
+ * @public
+ * Specifies the upper bound for the ListAdapters operation.
+ * Ensures ListAdapters returns only adapters created before the specified creation time.
+ */
+ BeforeCreationTime?: Date;
+
+ /**
+ * @public
+ * The maximum number of results to return when listing adapters.
+ */
+ MaxResults?: number;
+
+ /**
+ * @public
+ * Identifies the next page of results to return when listing adapters.
+ */
+ NextToken?: string;
}
/**
* @public
- * An Amazon Textract service limit was exceeded. For example, if you start too many
- * asynchronous jobs concurrently, calls to start operations
- * (StartDocumentTextDetection
, for example) raise a LimitExceededException
- * exception (HTTP status code: 400) until the number of concurrently running jobs is below
- * the Amazon Textract service limit.
*/
-export class LimitExceededException extends __BaseException {
- readonly name: "LimitExceededException" = "LimitExceededException";
- readonly $fault: "client" = "client";
- Message?: string;
- Code?: string;
+export interface ListAdaptersResponse {
/**
- * @internal
+ * @public
+ * A list of adapters that matches the filtering criteria specified when calling ListAdapters.
*/
- constructor(opts: __ExceptionOptionType) {
- super({
- name: "LimitExceededException",
- $fault: "client",
- ...opts,
- });
- Object.setPrototypeOf(this, LimitExceededException.prototype);
- this.Message = opts.Message;
- this.Code = opts.Code;
- }
+ Adapters?: AdapterOverview[];
+
+ /**
+ * @public
+ * Identifies the next page of results to return when listing adapters.
+ */
+ NextToken?: string;
}
/**
* @public
- * The Amazon Simple Notification Service (Amazon SNS) topic to which Amazon Textract publishes the completion status of
- * an asynchronous document operation.
*/
-export interface NotificationChannel {
+export interface ListAdapterVersionsRequest {
/**
* @public
- * The Amazon SNS topic that Amazon Textract posts the completion status to.
+ * A string containing a unique ID for the adapter to match for when listing adapter versions.
*/
- SNSTopicArn: string | undefined;
+ AdapterId?: string;
/**
* @public
- * The Amazon Resource Name (ARN) of an IAM role that gives Amazon Textract publishing permissions to the Amazon SNS topic.
+ * Specifies the lower bound for the ListAdapterVersions operation.
+ * Ensures ListAdapterVersions returns only adapter versions created after the specified creation time.
*/
- RoleArn: string | undefined;
+ AfterCreationTime?: Date;
+
+ /**
+ * @public
+ * Specifies the upper bound for the ListAdapterVersions operation.
+ * Ensures ListAdapterVersions returns only adapter versions created after the specified creation time.
+ */
+ BeforeCreationTime?: Date;
+
+ /**
+ * @public
+ * The maximum number of results to return when listing adapter versions.
+ */
+ MaxResults?: number;
+
+ /**
+ * @public
+ * Identifies the next page of results to return when listing adapter versions.
+ */
+ NextToken?: string;
}
/**
* @public
- * Sets whether or not your output will go to a user created bucket. Used to set the name
- * of the bucket, and the prefix on the output file.
- *
- * OutputConfig
is an optional parameter which lets you adjust where your
- * output will be placed. By default, Amazon Textract will store the results internally and can
- * only be accessed by the Get API operations. With OutputConfig
enabled, you can
- * set the name of the bucket the output will be sent to the file prefix of the results where
- * you can download your results. Additionally, you can set the KMSKeyID
- * parameter to a customer master key (CMK) to encrypt your output. Without this parameter set
- * Amazon Textract will encrypt server-side using the AWS managed CMK for Amazon S3.
- * Decryption of Customer Content is necessary for processing of the documents by Amazon Textract. If your account
- * is opted out under an AI services opt out policy then all unencrypted Customer Content is immediately and permanently deleted after
- * the Customer Content has been processed by the service. No copy of of the output is retained by Amazon Textract. For information about how to opt out, see Managing AI services opt-out policy.
- *
- * For more information on data privacy,
- * see the Data Privacy
- * FAQ .
*/
-export interface OutputConfig {
+export interface ListAdapterVersionsResponse {
/**
* @public
- * The name of the bucket your output will go to.
+ * Adapter versions that match the filtering criteria specified when calling ListAdapters.
*/
- S3Bucket: string | undefined;
+ AdapterVersions?: AdapterVersionOverview[];
/**
* @public
- * The prefix of the object key that the output will be saved to. When not enabled, the
- * prefix will be “textract_output".
+ * Identifies the next page of results to return when listing adapter versions.
*/
- S3Prefix?: string;
+ NextToken?: string;
+}
+
+/**
+ * @public
+ */
+export interface ListTagsForResourceRequest {
+ /**
+ * @public
+ * The Amazon Resource Name (ARN) that specifies the resource to list tags for.
+ */
+ ResourceARN: string | undefined;
+}
+
+/**
+ * @public
+ */
+export interface ListTagsForResourceResponse {
+ /**
+ * @public
+ * A set of tags (key-value pairs) that are part of the requested resource.
+ */
+ Tags?: Record;
+}
+
+/**
+ * @public
+ * The Amazon Simple Notification Service (Amazon SNS) topic to which Amazon Textract publishes the completion status of
+ * an asynchronous document operation.
+ */
+export interface NotificationChannel {
+ /**
+ * @public
+ * The Amazon SNS topic that Amazon Textract posts the completion status to.
+ */
+ SNSTopicArn: string | undefined;
+
+ /**
+ * @public
+ * The Amazon Resource Name (ARN) of an IAM role that gives Amazon Textract publishing permissions to the Amazon SNS topic.
+ */
+ RoleArn: string | undefined;
}
/**
@@ -2473,6 +3303,12 @@ export interface StartDocumentAnalysisRequest {
*
*/
QueriesConfig?: QueriesConfig;
+
+ /**
+ * @public
+ * Specifies the adapter to be used when analyzing a document.
+ */
+ AdaptersConfig?: AdaptersConfig;
}
/**
@@ -2703,3 +3539,117 @@ export interface StartLendingAnalysisResponse {
*/
JobId?: string;
}
+
+/**
+ * @public
+ */
+export interface TagResourceRequest {
+ /**
+ * @public
+ * The Amazon Resource Name (ARN) that specifies the resource to be tagged.
+ */
+ ResourceARN: string | undefined;
+
+ /**
+ * @public
+ * A set of tags (key-value pairs) that you want to assign to the resource.
+ */
+ Tags: Record | undefined;
+}
+
+/**
+ * @public
+ */
+export interface TagResourceResponse {}
+
+/**
+ * @public
+ */
+export interface UntagResourceRequest {
+ /**
+ * @public
+ * The Amazon Resource Name (ARN) that specifies the resource to be untagged.
+ */
+ ResourceARN: string | undefined;
+
+ /**
+ * @public
+ * Specifies the tags to be removed from the resource specified by the ResourceARN.
+ */
+ TagKeys: string[] | undefined;
+}
+
+/**
+ * @public
+ */
+export interface UntagResourceResponse {}
+
+/**
+ * @public
+ */
+export interface UpdateAdapterRequest {
+ /**
+ * @public
+ * A string containing a unique ID for the adapter that will be updated.
+ */
+ AdapterId: string | undefined;
+
+ /**
+ * @public
+ * The new description to be applied to the adapter.
+ */
+ Description?: string;
+
+ /**
+ * @public
+ * The new name to be applied to the adapter.
+ */
+ AdapterName?: string;
+
+ /**
+ * @public
+ * The new auto-update status to be applied to the adapter.
+ */
+ AutoUpdate?: AutoUpdate | string;
+}
+
+/**
+ * @public
+ */
+export interface UpdateAdapterResponse {
+ /**
+ * @public
+ * A string containing a unique ID for the adapter that has been updated.
+ */
+ AdapterId?: string;
+
+ /**
+ * @public
+ * A string containing the name of the adapter that has been updated.
+ */
+ AdapterName?: string;
+
+ /**
+ * @public
+ * An object specifying the creation time of the the adapter that has been updated.
+ */
+ CreationTime?: Date;
+
+ /**
+ * @public
+ * A string containing the description of the adapter that has been updated.
+ */
+ Description?: string;
+
+ /**
+ * @public
+ * List of the targeted feature types for the updated adapter.
+ */
+ FeatureTypes?: (FeatureType | string)[];
+
+ /**
+ * @public
+ * The auto-update status of the adapter that has been updated.
+ */
+ AutoUpdate?: AutoUpdate | string;
+}
diff --git a/clients/client-textract/src/pagination/Interfaces.ts b/clients/client-textract/src/pagination/Interfaces.ts
new file mode 100644
index 0000000000000..c3a8ef294166e
--- /dev/null
+++ b/clients/client-textract/src/pagination/Interfaces.ts
@@ -0,0 +1,11 @@
+// smithy-typescript generated code
+import { PaginationConfiguration } from "@smithy/types";
+
+import { TextractClient } from "../TextractClient";
+
+/**
+ * @public
+ */
+export interface TextractPaginationConfiguration extends PaginationConfiguration {
+ client: TextractClient;
+}
diff --git a/clients/client-textract/src/pagination/ListAdapterVersionsPaginator.ts b/clients/client-textract/src/pagination/ListAdapterVersionsPaginator.ts
new file mode 100644
index 0000000000000..13190146a6ffe
--- /dev/null
+++ b/clients/client-textract/src/pagination/ListAdapterVersionsPaginator.ts
@@ -0,0 +1,50 @@
+// smithy-typescript generated code
+import { Paginator } from "@smithy/types";
+
+import {
+ ListAdapterVersionsCommand,
+ ListAdapterVersionsCommandInput,
+ ListAdapterVersionsCommandOutput,
+} from "../commands/ListAdapterVersionsCommand";
+import { TextractClient } from "../TextractClient";
+import { TextractPaginationConfiguration } from "./Interfaces";
+
+/**
+ * @internal
+ */
+const makePagedClientRequest = async (
+ client: TextractClient,
+ input: ListAdapterVersionsCommandInput,
+ ...args: any
+): Promise => {
+ // @ts-ignore
+ return await client.send(new ListAdapterVersionsCommand(input), ...args);
+};
+/**
+ * @public
+ */
+export async function* paginateListAdapterVersions(
+ config: TextractPaginationConfiguration,
+ input: ListAdapterVersionsCommandInput,
+ ...additionalArguments: any
+): Paginator {
+ // ToDo: replace with actual type instead of typeof input.NextToken
+ let token: typeof input.NextToken | undefined = config.startingToken || undefined;
+ let hasNext = true;
+ let page: ListAdapterVersionsCommandOutput;
+ while (hasNext) {
+ input.NextToken = token;
+ input["MaxResults"] = config.pageSize;
+ if (config.client instanceof TextractClient) {
+ page = await makePagedClientRequest(config.client, input, ...additionalArguments);
+ } else {
+ throw new Error("Invalid client, expected Textract | TextractClient");
+ }
+ yield page;
+ const prevToken = token;
+ token = page.NextToken;
+ hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
+ }
+ // @ts-ignore
+ return undefined;
+}
diff --git a/clients/client-textract/src/pagination/ListAdaptersPaginator.ts b/clients/client-textract/src/pagination/ListAdaptersPaginator.ts
new file mode 100644
index 0000000000000..a33f43c7aab89
--- /dev/null
+++ b/clients/client-textract/src/pagination/ListAdaptersPaginator.ts
@@ -0,0 +1,50 @@
+// smithy-typescript generated code
+import { Paginator } from "@smithy/types";
+
+import {
+ ListAdaptersCommand,
+ ListAdaptersCommandInput,
+ ListAdaptersCommandOutput,
+} from "../commands/ListAdaptersCommand";
+import { TextractClient } from "../TextractClient";
+import { TextractPaginationConfiguration } from "./Interfaces";
+
+/**
+ * @internal
+ */
+const makePagedClientRequest = async (
+ client: TextractClient,
+ input: ListAdaptersCommandInput,
+ ...args: any
+): Promise => {
+ // @ts-ignore
+ return await client.send(new ListAdaptersCommand(input), ...args);
+};
+/**
+ * @public
+ */
+export async function* paginateListAdapters(
+ config: TextractPaginationConfiguration,
+ input: ListAdaptersCommandInput,
+ ...additionalArguments: any
+): Paginator {
+ // ToDo: replace with actual type instead of typeof input.NextToken
+ let token: typeof input.NextToken | undefined = config.startingToken || undefined;
+ let hasNext = true;
+ let page: ListAdaptersCommandOutput;
+ while (hasNext) {
+ input.NextToken = token;
+ input["MaxResults"] = config.pageSize;
+ if (config.client instanceof TextractClient) {
+ page = await makePagedClientRequest(config.client, input, ...additionalArguments);
+ } else {
+ throw new Error("Invalid client, expected Textract | TextractClient");
+ }
+ yield page;
+ const prevToken = token;
+ token = page.NextToken;
+ hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
+ }
+ // @ts-ignore
+ return undefined;
+}
diff --git a/clients/client-textract/src/pagination/index.ts b/clients/client-textract/src/pagination/index.ts
new file mode 100644
index 0000000000000..46e29046ba3d0
--- /dev/null
+++ b/clients/client-textract/src/pagination/index.ts
@@ -0,0 +1,4 @@
+// smithy-typescript generated code
+export * from "./Interfaces";
+export * from "./ListAdapterVersionsPaginator";
+export * from "./ListAdaptersPaginator";
diff --git a/clients/client-textract/src/protocols/Aws_json1_1.ts b/clients/client-textract/src/protocols/Aws_json1_1.ts
index 8e42421f03d81..f5e8670384da4 100644
--- a/clients/client-textract/src/protocols/Aws_json1_1.ts
+++ b/clients/client-textract/src/protocols/Aws_json1_1.ts
@@ -5,9 +5,12 @@ import {
collectBody,
decorateServiceException as __decorateServiceException,
expectInt32 as __expectInt32,
+ expectNonNull as __expectNonNull,
+ expectNumber as __expectNumber,
expectString as __expectString,
LazyJsonString as __LazyJsonString,
limitedParseFloat32 as __limitedParseFloat32,
+ parseEpochTimestamp as __parseEpochTimestamp,
take,
withBaseException,
} from "@smithy/smithy-client";
@@ -17,11 +20,24 @@ import {
ResponseMetadata as __ResponseMetadata,
SerdeContext as __SerdeContext,
} from "@smithy/types";
+import { v4 as generateIdempotencyToken } from "uuid";
import { AnalyzeDocumentCommandInput, AnalyzeDocumentCommandOutput } from "../commands/AnalyzeDocumentCommand";
import { AnalyzeExpenseCommandInput, AnalyzeExpenseCommandOutput } from "../commands/AnalyzeExpenseCommand";
import { AnalyzeIDCommandInput, AnalyzeIDCommandOutput } from "../commands/AnalyzeIDCommand";
+import { CreateAdapterCommandInput, CreateAdapterCommandOutput } from "../commands/CreateAdapterCommand";
+import {
+ CreateAdapterVersionCommandInput,
+ CreateAdapterVersionCommandOutput,
+} from "../commands/CreateAdapterVersionCommand";
+import { DeleteAdapterCommandInput, DeleteAdapterCommandOutput } from "../commands/DeleteAdapterCommand";
+import {
+ DeleteAdapterVersionCommandInput,
+ DeleteAdapterVersionCommandOutput,
+} from "../commands/DeleteAdapterVersionCommand";
import { DetectDocumentTextCommandInput, DetectDocumentTextCommandOutput } from "../commands/DetectDocumentTextCommand";
+import { GetAdapterCommandInput, GetAdapterCommandOutput } from "../commands/GetAdapterCommand";
+import { GetAdapterVersionCommandInput, GetAdapterVersionCommandOutput } from "../commands/GetAdapterVersionCommand";
import {
GetDocumentAnalysisCommandInput,
GetDocumentAnalysisCommandOutput,
@@ -36,6 +52,15 @@ import {
GetLendingAnalysisSummaryCommandInput,
GetLendingAnalysisSummaryCommandOutput,
} from "../commands/GetLendingAnalysisSummaryCommand";
+import { ListAdaptersCommandInput, ListAdaptersCommandOutput } from "../commands/ListAdaptersCommand";
+import {
+ ListAdapterVersionsCommandInput,
+ ListAdapterVersionsCommandOutput,
+} from "../commands/ListAdapterVersionsCommand";
+import {
+ ListTagsForResourceCommandInput,
+ ListTagsForResourceCommandOutput,
+} from "../commands/ListTagsForResourceCommand";
import {
StartDocumentAnalysisCommandInput,
StartDocumentAnalysisCommandOutput,
@@ -52,8 +77,17 @@ import {
StartLendingAnalysisCommandInput,
StartLendingAnalysisCommandOutput,
} from "../commands/StartLendingAnalysisCommand";
+import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
+import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
+import { UpdateAdapterCommandInput, UpdateAdapterCommandOutput } from "../commands/UpdateAdapterCommand";
import {
AccessDeniedException,
+ Adapter,
+ AdapterOverview,
+ AdaptersConfig,
+ AdapterVersionDatasetConfig,
+ AdapterVersionEvaluationMetric,
+ AdapterVersionOverview,
AnalyzeDocumentRequest,
AnalyzeDocumentResponse,
AnalyzeExpenseRequest,
@@ -64,12 +98,18 @@ import {
BadDocumentException,
Block,
BoundingBox,
+ ConflictException,
ContentClassifier,
+ CreateAdapterRequest,
+ CreateAdapterVersionRequest,
+ DeleteAdapterRequest,
+ DeleteAdapterVersionRequest,
DetectDocumentTextRequest,
DetectDocumentTextResponse,
Document,
DocumentLocation,
DocumentTooLargeException,
+ EvaluationMetric,
ExpenseCurrency,
ExpenseDetection,
ExpenseDocument,
@@ -78,6 +118,10 @@ import {
Extraction,
FeatureType,
Geometry,
+ GetAdapterRequest,
+ GetAdapterResponse,
+ GetAdapterVersionRequest,
+ GetAdapterVersionResponse,
GetDocumentAnalysisRequest,
GetDocumentAnalysisResponse,
GetDocumentTextDetectionRequest,
@@ -106,6 +150,11 @@ import {
LimitExceededException,
LineItemFields,
LineItemGroup,
+ ListAdaptersRequest,
+ ListAdaptersResponse,
+ ListAdapterVersionsRequest,
+ ListAdapterVersionsResponse,
+ ListTagsForResourceRequest,
NotificationChannel,
OutputConfig,
PageClassification,
@@ -114,14 +163,21 @@ import {
ProvisionedThroughputExceededException,
QueriesConfig,
Query,
+ ResourceNotFoundException,
S3Object,
+ ServiceQuotaExceededException,
SignatureDetection,
StartDocumentAnalysisRequest,
StartDocumentTextDetectionRequest,
StartExpenseAnalysisRequest,
StartLendingAnalysisRequest,
+ TagResourceRequest,
ThrottlingException,
UnsupportedDocumentException,
+ UntagResourceRequest,
+ UpdateAdapterRequest,
+ UpdateAdapterResponse,
+ ValidationException,
} from "../models/models_0";
import { TextractServiceException as __BaseException } from "../models/TextractServiceException";
@@ -164,6 +220,58 @@ export const se_AnalyzeIDCommand = async (
return buildHttpRpcRequest(context, headers, "/", undefined, body);
};
+/**
+ * serializeAws_json1_1CreateAdapterCommand
+ */
+export const se_CreateAdapterCommand = async (
+ input: CreateAdapterCommandInput,
+ context: __SerdeContext
+): Promise<__HttpRequest> => {
+ const headers: __HeaderBag = sharedHeaders("CreateAdapter");
+ let body: any;
+ body = JSON.stringify(se_CreateAdapterRequest(input, context));
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
+};
+
+/**
+ * serializeAws_json1_1CreateAdapterVersionCommand
+ */
+export const se_CreateAdapterVersionCommand = async (
+ input: CreateAdapterVersionCommandInput,
+ context: __SerdeContext
+): Promise<__HttpRequest> => {
+ const headers: __HeaderBag = sharedHeaders("CreateAdapterVersion");
+ let body: any;
+ body = JSON.stringify(se_CreateAdapterVersionRequest(input, context));
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
+};
+
+/**
+ * serializeAws_json1_1DeleteAdapterCommand
+ */
+export const se_DeleteAdapterCommand = async (
+ input: DeleteAdapterCommandInput,
+ context: __SerdeContext
+): Promise<__HttpRequest> => {
+ const headers: __HeaderBag = sharedHeaders("DeleteAdapter");
+ let body: any;
+ body = JSON.stringify(_json(input));
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
+};
+
+/**
+ * serializeAws_json1_1DeleteAdapterVersionCommand
+ */
+export const se_DeleteAdapterVersionCommand = async (
+ input: DeleteAdapterVersionCommandInput,
+ context: __SerdeContext
+): Promise<__HttpRequest> => {
+ const headers: __HeaderBag = sharedHeaders("DeleteAdapterVersion");
+ let body: any;
+ body = JSON.stringify(_json(input));
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
+};
+
/**
* serializeAws_json1_1DetectDocumentTextCommand
*/
@@ -177,6 +285,32 @@ export const se_DetectDocumentTextCommand = async (
return buildHttpRpcRequest(context, headers, "/", undefined, body);
};
+/**
+ * serializeAws_json1_1GetAdapterCommand
+ */
+export const se_GetAdapterCommand = async (
+ input: GetAdapterCommandInput,
+ context: __SerdeContext
+): Promise<__HttpRequest> => {
+ const headers: __HeaderBag = sharedHeaders("GetAdapter");
+ let body: any;
+ body = JSON.stringify(_json(input));
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
+};
+
+/**
+ * serializeAws_json1_1GetAdapterVersionCommand
+ */
+export const se_GetAdapterVersionCommand = async (
+ input: GetAdapterVersionCommandInput,
+ context: __SerdeContext
+): Promise<__HttpRequest> => {
+ const headers: __HeaderBag = sharedHeaders("GetAdapterVersion");
+ let body: any;
+ body = JSON.stringify(_json(input));
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
+};
+
/**
* serializeAws_json1_1GetDocumentAnalysisCommand
*/
@@ -242,6 +376,45 @@ export const se_GetLendingAnalysisSummaryCommand = async (
return buildHttpRpcRequest(context, headers, "/", undefined, body);
};
+/**
+ * serializeAws_json1_1ListAdaptersCommand
+ */
+export const se_ListAdaptersCommand = async (
+ input: ListAdaptersCommandInput,
+ context: __SerdeContext
+): Promise<__HttpRequest> => {
+ const headers: __HeaderBag = sharedHeaders("ListAdapters");
+ let body: any;
+ body = JSON.stringify(se_ListAdaptersRequest(input, context));
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
+};
+
+/**
+ * serializeAws_json1_1ListAdapterVersionsCommand
+ */
+export const se_ListAdapterVersionsCommand = async (
+ input: ListAdapterVersionsCommandInput,
+ context: __SerdeContext
+): Promise<__HttpRequest> => {
+ const headers: __HeaderBag = sharedHeaders("ListAdapterVersions");
+ let body: any;
+ body = JSON.stringify(se_ListAdapterVersionsRequest(input, context));
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
+};
+
+/**
+ * serializeAws_json1_1ListTagsForResourceCommand
+ */
+export const se_ListTagsForResourceCommand = async (
+ input: ListTagsForResourceCommandInput,
+ context: __SerdeContext
+): Promise<__HttpRequest> => {
+ const headers: __HeaderBag = sharedHeaders("ListTagsForResource");
+ let body: any;
+ body = JSON.stringify(_json(input));
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
+};
+
/**
* serializeAws_json1_1StartDocumentAnalysisCommand
*/
@@ -294,6 +467,45 @@ export const se_StartLendingAnalysisCommand = async (
return buildHttpRpcRequest(context, headers, "/", undefined, body);
};
+/**
+ * serializeAws_json1_1TagResourceCommand
+ */
+export const se_TagResourceCommand = async (
+ input: TagResourceCommandInput,
+ context: __SerdeContext
+): Promise<__HttpRequest> => {
+ const headers: __HeaderBag = sharedHeaders("TagResource");
+ let body: any;
+ body = JSON.stringify(_json(input));
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
+};
+
+/**
+ * serializeAws_json1_1UntagResourceCommand
+ */
+export const se_UntagResourceCommand = async (
+ input: UntagResourceCommandInput,
+ context: __SerdeContext
+): Promise<__HttpRequest> => {
+ const headers: __HeaderBag = sharedHeaders("UntagResource");
+ let body: any;
+ body = JSON.stringify(_json(input));
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
+};
+
+/**
+ * serializeAws_json1_1UpdateAdapterCommand
+ */
+export const se_UpdateAdapterCommand = async (
+ input: UpdateAdapterCommandInput,
+ context: __SerdeContext
+): Promise<__HttpRequest> => {
+ const headers: __HeaderBag = sharedHeaders("UpdateAdapter");
+ let body: any;
+ body = JSON.stringify(_json(input));
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
+};
+
/**
* deserializeAws_json1_1AnalyzeDocumentCommand
*/
@@ -508,19 +720,19 @@ const de_AnalyzeIDCommandError = async (
};
/**
- * deserializeAws_json1_1DetectDocumentTextCommand
+ * deserializeAws_json1_1CreateAdapterCommand
*/
-export const de_DetectDocumentTextCommand = async (
+export const de_CreateAdapterCommand = async (
output: __HttpResponse,
context: __SerdeContext
-): Promise => {
+): Promise => {
if (output.statusCode >= 300) {
- return de_DetectDocumentTextCommandError(output, context);
+ return de_CreateAdapterCommandError(output, context);
}
const data: any = await parseBody(output.body, context);
let contents: any = {};
- contents = de_DetectDocumentTextResponse(data, context);
- const response: DetectDocumentTextCommandOutput = {
+ contents = _json(data);
+ const response: CreateAdapterCommandOutput = {
$metadata: deserializeMetadata(output),
...contents,
};
@@ -528,12 +740,12 @@ export const de_DetectDocumentTextCommand = async (
};
/**
- * deserializeAws_json1_1DetectDocumentTextCommandError
+ * deserializeAws_json1_1CreateAdapterCommandError
*/
-const de_DetectDocumentTextCommandError = async (
+const de_CreateAdapterCommandError = async (
output: __HttpResponse,
context: __SerdeContext
-): Promise => {
+): Promise => {
const parsedOutput: any = {
...output,
body: await parseErrorBody(output.body, context),
@@ -543,30 +755,33 @@ const de_DetectDocumentTextCommandError = async (
case "AccessDeniedException":
case "com.amazonaws.textract#AccessDeniedException":
throw await de_AccessDeniedExceptionRes(parsedOutput, context);
- case "BadDocumentException":
- case "com.amazonaws.textract#BadDocumentException":
- throw await de_BadDocumentExceptionRes(parsedOutput, context);
- case "DocumentTooLargeException":
- case "com.amazonaws.textract#DocumentTooLargeException":
- throw await de_DocumentTooLargeExceptionRes(parsedOutput, context);
+ case "ConflictException":
+ case "com.amazonaws.textract#ConflictException":
+ throw await de_ConflictExceptionRes(parsedOutput, context);
+ case "IdempotentParameterMismatchException":
+ case "com.amazonaws.textract#IdempotentParameterMismatchException":
+ throw await de_IdempotentParameterMismatchExceptionRes(parsedOutput, context);
case "InternalServerError":
case "com.amazonaws.textract#InternalServerError":
throw await de_InternalServerErrorRes(parsedOutput, context);
case "InvalidParameterException":
case "com.amazonaws.textract#InvalidParameterException":
throw await de_InvalidParameterExceptionRes(parsedOutput, context);
- case "InvalidS3ObjectException":
- case "com.amazonaws.textract#InvalidS3ObjectException":
- throw await de_InvalidS3ObjectExceptionRes(parsedOutput, context);
+ case "LimitExceededException":
+ case "com.amazonaws.textract#LimitExceededException":
+ throw await de_LimitExceededExceptionRes(parsedOutput, context);
case "ProvisionedThroughputExceededException":
case "com.amazonaws.textract#ProvisionedThroughputExceededException":
throw await de_ProvisionedThroughputExceededExceptionRes(parsedOutput, context);
+ case "ServiceQuotaExceededException":
+ case "com.amazonaws.textract#ServiceQuotaExceededException":
+ throw await de_ServiceQuotaExceededExceptionRes(parsedOutput, context);
case "ThrottlingException":
case "com.amazonaws.textract#ThrottlingException":
throw await de_ThrottlingExceptionRes(parsedOutput, context);
- case "UnsupportedDocumentException":
- case "com.amazonaws.textract#UnsupportedDocumentException":
- throw await de_UnsupportedDocumentExceptionRes(parsedOutput, context);
+ case "ValidationException":
+ case "com.amazonaws.textract#ValidationException":
+ throw await de_ValidationExceptionRes(parsedOutput, context);
default:
const parsedBody = parsedOutput.body;
return throwDefaultError({
@@ -578,19 +793,19 @@ const de_DetectDocumentTextCommandError = async (
};
/**
- * deserializeAws_json1_1GetDocumentAnalysisCommand
+ * deserializeAws_json1_1CreateAdapterVersionCommand
*/
-export const de_GetDocumentAnalysisCommand = async (
+export const de_CreateAdapterVersionCommand = async (
output: __HttpResponse,
context: __SerdeContext
-): Promise => {
+): Promise => {
if (output.statusCode >= 300) {
- return de_GetDocumentAnalysisCommandError(output, context);
+ return de_CreateAdapterVersionCommandError(output, context);
}
const data: any = await parseBody(output.body, context);
let contents: any = {};
- contents = de_GetDocumentAnalysisResponse(data, context);
- const response: GetDocumentAnalysisCommandOutput = {
+ contents = _json(data);
+ const response: CreateAdapterVersionCommandOutput = {
$metadata: deserializeMetadata(output),
...contents,
};
@@ -598,12 +813,12 @@ export const de_GetDocumentAnalysisCommand = async (
};
/**
- * deserializeAws_json1_1GetDocumentAnalysisCommandError
+ * deserializeAws_json1_1CreateAdapterVersionCommandError
*/
-const de_GetDocumentAnalysisCommandError = async (
+const de_CreateAdapterVersionCommandError = async (
output: __HttpResponse,
context: __SerdeContext
-): Promise => {
+): Promise => {
const parsedOutput: any = {
...output,
body: await parseErrorBody(output.body, context),
@@ -613,12 +828,15 @@ const de_GetDocumentAnalysisCommandError = async (
case "AccessDeniedException":
case "com.amazonaws.textract#AccessDeniedException":
throw await de_AccessDeniedExceptionRes(parsedOutput, context);
+ case "ConflictException":
+ case "com.amazonaws.textract#ConflictException":
+ throw await de_ConflictExceptionRes(parsedOutput, context);
+ case "IdempotentParameterMismatchException":
+ case "com.amazonaws.textract#IdempotentParameterMismatchException":
+ throw await de_IdempotentParameterMismatchExceptionRes(parsedOutput, context);
case "InternalServerError":
case "com.amazonaws.textract#InternalServerError":
throw await de_InternalServerErrorRes(parsedOutput, context);
- case "InvalidJobIdException":
- case "com.amazonaws.textract#InvalidJobIdException":
- throw await de_InvalidJobIdExceptionRes(parsedOutput, context);
case "InvalidKMSKeyException":
case "com.amazonaws.textract#InvalidKMSKeyException":
throw await de_InvalidKMSKeyExceptionRes(parsedOutput, context);
@@ -628,12 +846,24 @@ const de_GetDocumentAnalysisCommandError = async (
case "InvalidS3ObjectException":
case "com.amazonaws.textract#InvalidS3ObjectException":
throw await de_InvalidS3ObjectExceptionRes(parsedOutput, context);
+ case "LimitExceededException":
+ case "com.amazonaws.textract#LimitExceededException":
+ throw await de_LimitExceededExceptionRes(parsedOutput, context);
case "ProvisionedThroughputExceededException":
case "com.amazonaws.textract#ProvisionedThroughputExceededException":
throw await de_ProvisionedThroughputExceededExceptionRes(parsedOutput, context);
+ case "ResourceNotFoundException":
+ case "com.amazonaws.textract#ResourceNotFoundException":
+ throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
+ case "ServiceQuotaExceededException":
+ case "com.amazonaws.textract#ServiceQuotaExceededException":
+ throw await de_ServiceQuotaExceededExceptionRes(parsedOutput, context);
case "ThrottlingException":
case "com.amazonaws.textract#ThrottlingException":
throw await de_ThrottlingExceptionRes(parsedOutput, context);
+ case "ValidationException":
+ case "com.amazonaws.textract#ValidationException":
+ throw await de_ValidationExceptionRes(parsedOutput, context);
default:
const parsedBody = parsedOutput.body;
return throwDefaultError({
@@ -645,19 +875,19 @@ const de_GetDocumentAnalysisCommandError = async (
};
/**
- * deserializeAws_json1_1GetDocumentTextDetectionCommand
+ * deserializeAws_json1_1DeleteAdapterCommand
*/
-export const de_GetDocumentTextDetectionCommand = async (
+export const de_DeleteAdapterCommand = async (
output: __HttpResponse,
context: __SerdeContext
-): Promise => {
+): Promise => {
if (output.statusCode >= 300) {
- return de_GetDocumentTextDetectionCommandError(output, context);
+ return de_DeleteAdapterCommandError(output, context);
}
const data: any = await parseBody(output.body, context);
let contents: any = {};
- contents = de_GetDocumentTextDetectionResponse(data, context);
- const response: GetDocumentTextDetectionCommandOutput = {
+ contents = _json(data);
+ const response: DeleteAdapterCommandOutput = {
$metadata: deserializeMetadata(output),
...contents,
};
@@ -665,12 +895,12 @@ export const de_GetDocumentTextDetectionCommand = async (
};
/**
- * deserializeAws_json1_1GetDocumentTextDetectionCommandError
+ * deserializeAws_json1_1DeleteAdapterCommandError
*/
-const de_GetDocumentTextDetectionCommandError = async (
+const de_DeleteAdapterCommandError = async (
output: __HttpResponse,
context: __SerdeContext
-): Promise => {
+): Promise => {
const parsedOutput: any = {
...output,
body: await parseErrorBody(output.body, context),
@@ -680,27 +910,27 @@ const de_GetDocumentTextDetectionCommandError = async (
case "AccessDeniedException":
case "com.amazonaws.textract#AccessDeniedException":
throw await de_AccessDeniedExceptionRes(parsedOutput, context);
+ case "ConflictException":
+ case "com.amazonaws.textract#ConflictException":
+ throw await de_ConflictExceptionRes(parsedOutput, context);
case "InternalServerError":
case "com.amazonaws.textract#InternalServerError":
throw await de_InternalServerErrorRes(parsedOutput, context);
- case "InvalidJobIdException":
- case "com.amazonaws.textract#InvalidJobIdException":
- throw await de_InvalidJobIdExceptionRes(parsedOutput, context);
- case "InvalidKMSKeyException":
- case "com.amazonaws.textract#InvalidKMSKeyException":
- throw await de_InvalidKMSKeyExceptionRes(parsedOutput, context);
case "InvalidParameterException":
case "com.amazonaws.textract#InvalidParameterException":
throw await de_InvalidParameterExceptionRes(parsedOutput, context);
- case "InvalidS3ObjectException":
- case "com.amazonaws.textract#InvalidS3ObjectException":
- throw await de_InvalidS3ObjectExceptionRes(parsedOutput, context);
case "ProvisionedThroughputExceededException":
case "com.amazonaws.textract#ProvisionedThroughputExceededException":
throw await de_ProvisionedThroughputExceededExceptionRes(parsedOutput, context);
+ case "ResourceNotFoundException":
+ case "com.amazonaws.textract#ResourceNotFoundException":
+ throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
case "ThrottlingException":
case "com.amazonaws.textract#ThrottlingException":
throw await de_ThrottlingExceptionRes(parsedOutput, context);
+ case "ValidationException":
+ case "com.amazonaws.textract#ValidationException":
+ throw await de_ValidationExceptionRes(parsedOutput, context);
default:
const parsedBody = parsedOutput.body;
return throwDefaultError({
@@ -712,19 +942,19 @@ const de_GetDocumentTextDetectionCommandError = async (
};
/**
- * deserializeAws_json1_1GetExpenseAnalysisCommand
+ * deserializeAws_json1_1DeleteAdapterVersionCommand
*/
-export const de_GetExpenseAnalysisCommand = async (
+export const de_DeleteAdapterVersionCommand = async (
output: __HttpResponse,
context: __SerdeContext
-): Promise => {
+): Promise => {
if (output.statusCode >= 300) {
- return de_GetExpenseAnalysisCommandError(output, context);
+ return de_DeleteAdapterVersionCommandError(output, context);
}
const data: any = await parseBody(output.body, context);
let contents: any = {};
- contents = de_GetExpenseAnalysisResponse(data, context);
- const response: GetExpenseAnalysisCommandOutput = {
+ contents = _json(data);
+ const response: DeleteAdapterVersionCommandOutput = {
$metadata: deserializeMetadata(output),
...contents,
};
@@ -732,12 +962,12 @@ export const de_GetExpenseAnalysisCommand = async (
};
/**
- * deserializeAws_json1_1GetExpenseAnalysisCommandError
+ * deserializeAws_json1_1DeleteAdapterVersionCommandError
*/
-const de_GetExpenseAnalysisCommandError = async (
+const de_DeleteAdapterVersionCommandError = async (
output: __HttpResponse,
context: __SerdeContext
-): Promise => {
+): Promise => {
const parsedOutput: any = {
...output,
body: await parseErrorBody(output.body, context),
@@ -747,27 +977,27 @@ const de_GetExpenseAnalysisCommandError = async (
case "AccessDeniedException":
case "com.amazonaws.textract#AccessDeniedException":
throw await de_AccessDeniedExceptionRes(parsedOutput, context);
+ case "ConflictException":
+ case "com.amazonaws.textract#ConflictException":
+ throw await de_ConflictExceptionRes(parsedOutput, context);
case "InternalServerError":
case "com.amazonaws.textract#InternalServerError":
throw await de_InternalServerErrorRes(parsedOutput, context);
- case "InvalidJobIdException":
- case "com.amazonaws.textract#InvalidJobIdException":
- throw await de_InvalidJobIdExceptionRes(parsedOutput, context);
- case "InvalidKMSKeyException":
- case "com.amazonaws.textract#InvalidKMSKeyException":
- throw await de_InvalidKMSKeyExceptionRes(parsedOutput, context);
case "InvalidParameterException":
case "com.amazonaws.textract#InvalidParameterException":
throw await de_InvalidParameterExceptionRes(parsedOutput, context);
- case "InvalidS3ObjectException":
- case "com.amazonaws.textract#InvalidS3ObjectException":
- throw await de_InvalidS3ObjectExceptionRes(parsedOutput, context);
case "ProvisionedThroughputExceededException":
case "com.amazonaws.textract#ProvisionedThroughputExceededException":
throw await de_ProvisionedThroughputExceededExceptionRes(parsedOutput, context);
+ case "ResourceNotFoundException":
+ case "com.amazonaws.textract#ResourceNotFoundException":
+ throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
case "ThrottlingException":
case "com.amazonaws.textract#ThrottlingException":
throw await de_ThrottlingExceptionRes(parsedOutput, context);
+ case "ValidationException":
+ case "com.amazonaws.textract#ValidationException":
+ throw await de_ValidationExceptionRes(parsedOutput, context);
default:
const parsedBody = parsedOutput.body;
return throwDefaultError({
@@ -779,19 +1009,19 @@ const de_GetExpenseAnalysisCommandError = async (
};
/**
- * deserializeAws_json1_1GetLendingAnalysisCommand
+ * deserializeAws_json1_1DetectDocumentTextCommand
*/
-export const de_GetLendingAnalysisCommand = async (
+export const de_DetectDocumentTextCommand = async (
output: __HttpResponse,
context: __SerdeContext
-): Promise => {
+): Promise => {
if (output.statusCode >= 300) {
- return de_GetLendingAnalysisCommandError(output, context);
+ return de_DetectDocumentTextCommandError(output, context);
}
const data: any = await parseBody(output.body, context);
let contents: any = {};
- contents = de_GetLendingAnalysisResponse(data, context);
- const response: GetLendingAnalysisCommandOutput = {
+ contents = de_DetectDocumentTextResponse(data, context);
+ const response: DetectDocumentTextCommandOutput = {
$metadata: deserializeMetadata(output),
...contents,
};
@@ -799,12 +1029,12 @@ export const de_GetLendingAnalysisCommand = async (
};
/**
- * deserializeAws_json1_1GetLendingAnalysisCommandError
+ * deserializeAws_json1_1DetectDocumentTextCommandError
*/
-const de_GetLendingAnalysisCommandError = async (
+const de_DetectDocumentTextCommandError = async (
output: __HttpResponse,
context: __SerdeContext
-): Promise => {
+): Promise => {
const parsedOutput: any = {
...output,
body: await parseErrorBody(output.body, context),
@@ -814,15 +1044,15 @@ const de_GetLendingAnalysisCommandError = async (
case "AccessDeniedException":
case "com.amazonaws.textract#AccessDeniedException":
throw await de_AccessDeniedExceptionRes(parsedOutput, context);
+ case "BadDocumentException":
+ case "com.amazonaws.textract#BadDocumentException":
+ throw await de_BadDocumentExceptionRes(parsedOutput, context);
+ case "DocumentTooLargeException":
+ case "com.amazonaws.textract#DocumentTooLargeException":
+ throw await de_DocumentTooLargeExceptionRes(parsedOutput, context);
case "InternalServerError":
case "com.amazonaws.textract#InternalServerError":
throw await de_InternalServerErrorRes(parsedOutput, context);
- case "InvalidJobIdException":
- case "com.amazonaws.textract#InvalidJobIdException":
- throw await de_InvalidJobIdExceptionRes(parsedOutput, context);
- case "InvalidKMSKeyException":
- case "com.amazonaws.textract#InvalidKMSKeyException":
- throw await de_InvalidKMSKeyExceptionRes(parsedOutput, context);
case "InvalidParameterException":
case "com.amazonaws.textract#InvalidParameterException":
throw await de_InvalidParameterExceptionRes(parsedOutput, context);
@@ -835,6 +1065,9 @@ const de_GetLendingAnalysisCommandError = async (
case "ThrottlingException":
case "com.amazonaws.textract#ThrottlingException":
throw await de_ThrottlingExceptionRes(parsedOutput, context);
+ case "UnsupportedDocumentException":
+ case "com.amazonaws.textract#UnsupportedDocumentException":
+ throw await de_UnsupportedDocumentExceptionRes(parsedOutput, context);
default:
const parsedBody = parsedOutput.body;
return throwDefaultError({
@@ -846,19 +1079,19 @@ const de_GetLendingAnalysisCommandError = async (
};
/**
- * deserializeAws_json1_1GetLendingAnalysisSummaryCommand
+ * deserializeAws_json1_1GetAdapterCommand
*/
-export const de_GetLendingAnalysisSummaryCommand = async (
+export const de_GetAdapterCommand = async (
output: __HttpResponse,
context: __SerdeContext
-): Promise => {
+): Promise => {
if (output.statusCode >= 300) {
- return de_GetLendingAnalysisSummaryCommandError(output, context);
+ return de_GetAdapterCommandError(output, context);
}
const data: any = await parseBody(output.body, context);
let contents: any = {};
- contents = _json(data);
- const response: GetLendingAnalysisSummaryCommandOutput = {
+ contents = de_GetAdapterResponse(data, context);
+ const response: GetAdapterCommandOutput = {
$metadata: deserializeMetadata(output),
...contents,
};
@@ -866,12 +1099,12 @@ export const de_GetLendingAnalysisSummaryCommand = async (
};
/**
- * deserializeAws_json1_1GetLendingAnalysisSummaryCommandError
+ * deserializeAws_json1_1GetAdapterCommandError
*/
-const de_GetLendingAnalysisSummaryCommandError = async (
+const de_GetAdapterCommandError = async (
output: __HttpResponse,
context: __SerdeContext
-): Promise => {
+): Promise => {
const parsedOutput: any = {
...output,
body: await parseErrorBody(output.body, context),
@@ -884,24 +1117,21 @@ const de_GetLendingAnalysisSummaryCommandError = async (
case "InternalServerError":
case "com.amazonaws.textract#InternalServerError":
throw await de_InternalServerErrorRes(parsedOutput, context);
- case "InvalidJobIdException":
- case "com.amazonaws.textract#InvalidJobIdException":
- throw await de_InvalidJobIdExceptionRes(parsedOutput, context);
- case "InvalidKMSKeyException":
- case "com.amazonaws.textract#InvalidKMSKeyException":
- throw await de_InvalidKMSKeyExceptionRes(parsedOutput, context);
case "InvalidParameterException":
case "com.amazonaws.textract#InvalidParameterException":
throw await de_InvalidParameterExceptionRes(parsedOutput, context);
- case "InvalidS3ObjectException":
- case "com.amazonaws.textract#InvalidS3ObjectException":
- throw await de_InvalidS3ObjectExceptionRes(parsedOutput, context);
case "ProvisionedThroughputExceededException":
case "com.amazonaws.textract#ProvisionedThroughputExceededException":
throw await de_ProvisionedThroughputExceededExceptionRes(parsedOutput, context);
+ case "ResourceNotFoundException":
+ case "com.amazonaws.textract#ResourceNotFoundException":
+ throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
case "ThrottlingException":
case "com.amazonaws.textract#ThrottlingException":
throw await de_ThrottlingExceptionRes(parsedOutput, context);
+ case "ValidationException":
+ case "com.amazonaws.textract#ValidationException":
+ throw await de_ValidationExceptionRes(parsedOutput, context);
default:
const parsedBody = parsedOutput.body;
return throwDefaultError({
@@ -913,19 +1143,19 @@ const de_GetLendingAnalysisSummaryCommandError = async (
};
/**
- * deserializeAws_json1_1StartDocumentAnalysisCommand
+ * deserializeAws_json1_1GetAdapterVersionCommand
*/
-export const de_StartDocumentAnalysisCommand = async (
+export const de_GetAdapterVersionCommand = async (
output: __HttpResponse,
context: __SerdeContext
-): Promise => {
+): Promise => {
if (output.statusCode >= 300) {
- return de_StartDocumentAnalysisCommandError(output, context);
+ return de_GetAdapterVersionCommandError(output, context);
}
const data: any = await parseBody(output.body, context);
let contents: any = {};
- contents = _json(data);
- const response: StartDocumentAnalysisCommandOutput = {
+ contents = de_GetAdapterVersionResponse(data, context);
+ const response: GetAdapterVersionCommandOutput = {
$metadata: deserializeMetadata(output),
...contents,
};
@@ -933,12 +1163,12 @@ export const de_StartDocumentAnalysisCommand = async (
};
/**
- * deserializeAws_json1_1StartDocumentAnalysisCommandError
+ * deserializeAws_json1_1GetAdapterVersionCommandError
*/
-const de_StartDocumentAnalysisCommandError = async (
+const de_GetAdapterVersionCommandError = async (
output: __HttpResponse,
context: __SerdeContext
-): Promise => {
+): Promise => {
const parsedOutput: any = {
...output,
body: await parseErrorBody(output.body, context),
@@ -948,9 +1178,597 @@ const de_StartDocumentAnalysisCommandError = async (
case "AccessDeniedException":
case "com.amazonaws.textract#AccessDeniedException":
throw await de_AccessDeniedExceptionRes(parsedOutput, context);
- case "BadDocumentException":
- case "com.amazonaws.textract#BadDocumentException":
- throw await de_BadDocumentExceptionRes(parsedOutput, context);
+ case "InternalServerError":
+ case "com.amazonaws.textract#InternalServerError":
+ throw await de_InternalServerErrorRes(parsedOutput, context);
+ case "InvalidParameterException":
+ case "com.amazonaws.textract#InvalidParameterException":
+ throw await de_InvalidParameterExceptionRes(parsedOutput, context);
+ case "ProvisionedThroughputExceededException":
+ case "com.amazonaws.textract#ProvisionedThroughputExceededException":
+ throw await de_ProvisionedThroughputExceededExceptionRes(parsedOutput, context);
+ case "ResourceNotFoundException":
+ case "com.amazonaws.textract#ResourceNotFoundException":
+ throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
+ case "ThrottlingException":
+ case "com.amazonaws.textract#ThrottlingException":
+ throw await de_ThrottlingExceptionRes(parsedOutput, context);
+ case "ValidationException":
+ case "com.amazonaws.textract#ValidationException":
+ throw await de_ValidationExceptionRes(parsedOutput, context);
+ default:
+ const parsedBody = parsedOutput.body;
+ return throwDefaultError({
+ output,
+ parsedBody,
+ errorCode,
+ });
+ }
+};
+
+/**
+ * deserializeAws_json1_1GetDocumentAnalysisCommand
+ */
+export const de_GetDocumentAnalysisCommand = async (
+ output: __HttpResponse,
+ context: __SerdeContext
+): Promise => {
+ if (output.statusCode >= 300) {
+ return de_GetDocumentAnalysisCommandError(output, context);
+ }
+ const data: any = await parseBody(output.body, context);
+ let contents: any = {};
+ contents = de_GetDocumentAnalysisResponse(data, context);
+ const response: GetDocumentAnalysisCommandOutput = {
+ $metadata: deserializeMetadata(output),
+ ...contents,
+ };
+ return response;
+};
+
+/**
+ * deserializeAws_json1_1GetDocumentAnalysisCommandError
+ */
+const de_GetDocumentAnalysisCommandError = async (
+ output: __HttpResponse,
+ context: __SerdeContext
+): Promise => {
+ const parsedOutput: any = {
+ ...output,
+ body: await parseErrorBody(output.body, context),
+ };
+ const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
+ switch (errorCode) {
+ case "AccessDeniedException":
+ case "com.amazonaws.textract#AccessDeniedException":
+ throw await de_AccessDeniedExceptionRes(parsedOutput, context);
+ case "InternalServerError":
+ case "com.amazonaws.textract#InternalServerError":
+ throw await de_InternalServerErrorRes(parsedOutput, context);
+ case "InvalidJobIdException":
+ case "com.amazonaws.textract#InvalidJobIdException":
+ throw await de_InvalidJobIdExceptionRes(parsedOutput, context);
+ case "InvalidKMSKeyException":
+ case "com.amazonaws.textract#InvalidKMSKeyException":
+ throw await de_InvalidKMSKeyExceptionRes(parsedOutput, context);
+ case "InvalidParameterException":
+ case "com.amazonaws.textract#InvalidParameterException":
+ throw await de_InvalidParameterExceptionRes(parsedOutput, context);
+ case "InvalidS3ObjectException":
+ case "com.amazonaws.textract#InvalidS3ObjectException":
+ throw await de_InvalidS3ObjectExceptionRes(parsedOutput, context);
+ case "ProvisionedThroughputExceededException":
+ case "com.amazonaws.textract#ProvisionedThroughputExceededException":
+ throw await de_ProvisionedThroughputExceededExceptionRes(parsedOutput, context);
+ case "ThrottlingException":
+ case "com.amazonaws.textract#ThrottlingException":
+ throw await de_ThrottlingExceptionRes(parsedOutput, context);
+ default:
+ const parsedBody = parsedOutput.body;
+ return throwDefaultError({
+ output,
+ parsedBody,
+ errorCode,
+ });
+ }
+};
+
+/**
+ * deserializeAws_json1_1GetDocumentTextDetectionCommand
+ */
+export const de_GetDocumentTextDetectionCommand = async (
+ output: __HttpResponse,
+ context: __SerdeContext
+): Promise => {
+ if (output.statusCode >= 300) {
+ return de_GetDocumentTextDetectionCommandError(output, context);
+ }
+ const data: any = await parseBody(output.body, context);
+ let contents: any = {};
+ contents = de_GetDocumentTextDetectionResponse(data, context);
+ const response: GetDocumentTextDetectionCommandOutput = {
+ $metadata: deserializeMetadata(output),
+ ...contents,
+ };
+ return response;
+};
+
+/**
+ * deserializeAws_json1_1GetDocumentTextDetectionCommandError
+ */
+const de_GetDocumentTextDetectionCommandError = async (
+ output: __HttpResponse,
+ context: __SerdeContext
+): Promise => {
+ const parsedOutput: any = {
+ ...output,
+ body: await parseErrorBody(output.body, context),
+ };
+ const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
+ switch (errorCode) {
+ case "AccessDeniedException":
+ case "com.amazonaws.textract#AccessDeniedException":
+ throw await de_AccessDeniedExceptionRes(parsedOutput, context);
+ case "InternalServerError":
+ case "com.amazonaws.textract#InternalServerError":
+ throw await de_InternalServerErrorRes(parsedOutput, context);
+ case "InvalidJobIdException":
+ case "com.amazonaws.textract#InvalidJobIdException":
+ throw await de_InvalidJobIdExceptionRes(parsedOutput, context);
+ case "InvalidKMSKeyException":
+ case "com.amazonaws.textract#InvalidKMSKeyException":
+ throw await de_InvalidKMSKeyExceptionRes(parsedOutput, context);
+ case "InvalidParameterException":
+ case "com.amazonaws.textract#InvalidParameterException":
+ throw await de_InvalidParameterExceptionRes(parsedOutput, context);
+ case "InvalidS3ObjectException":
+ case "com.amazonaws.textract#InvalidS3ObjectException":
+ throw await de_InvalidS3ObjectExceptionRes(parsedOutput, context);
+ case "ProvisionedThroughputExceededException":
+ case "com.amazonaws.textract#ProvisionedThroughputExceededException":
+ throw await de_ProvisionedThroughputExceededExceptionRes(parsedOutput, context);
+ case "ThrottlingException":
+ case "com.amazonaws.textract#ThrottlingException":
+ throw await de_ThrottlingExceptionRes(parsedOutput, context);
+ default:
+ const parsedBody = parsedOutput.body;
+ return throwDefaultError({
+ output,
+ parsedBody,
+ errorCode,
+ });
+ }
+};
+
+/**
+ * deserializeAws_json1_1GetExpenseAnalysisCommand
+ */
+export const de_GetExpenseAnalysisCommand = async (
+ output: __HttpResponse,
+ context: __SerdeContext
+): Promise => {
+ if (output.statusCode >= 300) {
+ return de_GetExpenseAnalysisCommandError(output, context);
+ }
+ const data: any = await parseBody(output.body, context);
+ let contents: any = {};
+ contents = de_GetExpenseAnalysisResponse(data, context);
+ const response: GetExpenseAnalysisCommandOutput = {
+ $metadata: deserializeMetadata(output),
+ ...contents,
+ };
+ return response;
+};
+
+/**
+ * deserializeAws_json1_1GetExpenseAnalysisCommandError
+ */
+const de_GetExpenseAnalysisCommandError = async (
+ output: __HttpResponse,
+ context: __SerdeContext
+): Promise => {
+ const parsedOutput: any = {
+ ...output,
+ body: await parseErrorBody(output.body, context),
+ };
+ const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
+ switch (errorCode) {
+ case "AccessDeniedException":
+ case "com.amazonaws.textract#AccessDeniedException":
+ throw await de_AccessDeniedExceptionRes(parsedOutput, context);
+ case "InternalServerError":
+ case "com.amazonaws.textract#InternalServerError":
+ throw await de_InternalServerErrorRes(parsedOutput, context);
+ case "InvalidJobIdException":
+ case "com.amazonaws.textract#InvalidJobIdException":
+ throw await de_InvalidJobIdExceptionRes(parsedOutput, context);
+ case "InvalidKMSKeyException":
+ case "com.amazonaws.textract#InvalidKMSKeyException":
+ throw await de_InvalidKMSKeyExceptionRes(parsedOutput, context);
+ case "InvalidParameterException":
+ case "com.amazonaws.textract#InvalidParameterException":
+ throw await de_InvalidParameterExceptionRes(parsedOutput, context);
+ case "InvalidS3ObjectException":
+ case "com.amazonaws.textract#InvalidS3ObjectException":
+ throw await de_InvalidS3ObjectExceptionRes(parsedOutput, context);
+ case "ProvisionedThroughputExceededException":
+ case "com.amazonaws.textract#ProvisionedThroughputExceededException":
+ throw await de_ProvisionedThroughputExceededExceptionRes(parsedOutput, context);
+ case "ThrottlingException":
+ case "com.amazonaws.textract#ThrottlingException":
+ throw await de_ThrottlingExceptionRes(parsedOutput, context);
+ default:
+ const parsedBody = parsedOutput.body;
+ return throwDefaultError({
+ output,
+ parsedBody,
+ errorCode,
+ });
+ }
+};
+
+/**
+ * deserializeAws_json1_1GetLendingAnalysisCommand
+ */
+export const de_GetLendingAnalysisCommand = async (
+ output: __HttpResponse,
+ context: __SerdeContext
+): Promise => {
+ if (output.statusCode >= 300) {
+ return de_GetLendingAnalysisCommandError(output, context);
+ }
+ const data: any = await parseBody(output.body, context);
+ let contents: any = {};
+ contents = de_GetLendingAnalysisResponse(data, context);
+ const response: GetLendingAnalysisCommandOutput = {
+ $metadata: deserializeMetadata(output),
+ ...contents,
+ };
+ return response;
+};
+
+/**
+ * deserializeAws_json1_1GetLendingAnalysisCommandError
+ */
+const de_GetLendingAnalysisCommandError = async (
+ output: __HttpResponse,
+ context: __SerdeContext
+): Promise => {
+ const parsedOutput: any = {
+ ...output,
+ body: await parseErrorBody(output.body, context),
+ };
+ const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
+ switch (errorCode) {
+ case "AccessDeniedException":
+ case "com.amazonaws.textract#AccessDeniedException":
+ throw await de_AccessDeniedExceptionRes(parsedOutput, context);
+ case "InternalServerError":
+ case "com.amazonaws.textract#InternalServerError":
+ throw await de_InternalServerErrorRes(parsedOutput, context);
+ case "InvalidJobIdException":
+ case "com.amazonaws.textract#InvalidJobIdException":
+ throw await de_InvalidJobIdExceptionRes(parsedOutput, context);
+ case "InvalidKMSKeyException":
+ case "com.amazonaws.textract#InvalidKMSKeyException":
+ throw await de_InvalidKMSKeyExceptionRes(parsedOutput, context);
+ case "InvalidParameterException":
+ case "com.amazonaws.textract#InvalidParameterException":
+ throw await de_InvalidParameterExceptionRes(parsedOutput, context);
+ case "InvalidS3ObjectException":
+ case "com.amazonaws.textract#InvalidS3ObjectException":
+ throw await de_InvalidS3ObjectExceptionRes(parsedOutput, context);
+ case "ProvisionedThroughputExceededException":
+ case "com.amazonaws.textract#ProvisionedThroughputExceededException":
+ throw await de_ProvisionedThroughputExceededExceptionRes(parsedOutput, context);
+ case "ThrottlingException":
+ case "com.amazonaws.textract#ThrottlingException":
+ throw await de_ThrottlingExceptionRes(parsedOutput, context);
+ default:
+ const parsedBody = parsedOutput.body;
+ return throwDefaultError({
+ output,
+ parsedBody,
+ errorCode,
+ });
+ }
+};
+
+/**
+ * deserializeAws_json1_1GetLendingAnalysisSummaryCommand
+ */
+export const de_GetLendingAnalysisSummaryCommand = async (
+ output: __HttpResponse,
+ context: __SerdeContext
+): Promise => {
+ if (output.statusCode >= 300) {
+ return de_GetLendingAnalysisSummaryCommandError(output, context);
+ }
+ const data: any = await parseBody(output.body, context);
+ let contents: any = {};
+ contents = _json(data);
+ const response: GetLendingAnalysisSummaryCommandOutput = {
+ $metadata: deserializeMetadata(output),
+ ...contents,
+ };
+ return response;
+};
+
+/**
+ * deserializeAws_json1_1GetLendingAnalysisSummaryCommandError
+ */
+const de_GetLendingAnalysisSummaryCommandError = async (
+ output: __HttpResponse,
+ context: __SerdeContext
+): Promise => {
+ const parsedOutput: any = {
+ ...output,
+ body: await parseErrorBody(output.body, context),
+ };
+ const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
+ switch (errorCode) {
+ case "AccessDeniedException":
+ case "com.amazonaws.textract#AccessDeniedException":
+ throw await de_AccessDeniedExceptionRes(parsedOutput, context);
+ case "InternalServerError":
+ case "com.amazonaws.textract#InternalServerError":
+ throw await de_InternalServerErrorRes(parsedOutput, context);
+ case "InvalidJobIdException":
+ case "com.amazonaws.textract#InvalidJobIdException":
+ throw await de_InvalidJobIdExceptionRes(parsedOutput, context);
+ case "InvalidKMSKeyException":
+ case "com.amazonaws.textract#InvalidKMSKeyException":
+ throw await de_InvalidKMSKeyExceptionRes(parsedOutput, context);
+ case "InvalidParameterException":
+ case "com.amazonaws.textract#InvalidParameterException":
+ throw await de_InvalidParameterExceptionRes(parsedOutput, context);
+ case "InvalidS3ObjectException":
+ case "com.amazonaws.textract#InvalidS3ObjectException":
+ throw await de_InvalidS3ObjectExceptionRes(parsedOutput, context);
+ case "ProvisionedThroughputExceededException":
+ case "com.amazonaws.textract#ProvisionedThroughputExceededException":
+ throw await de_ProvisionedThroughputExceededExceptionRes(parsedOutput, context);
+ case "ThrottlingException":
+ case "com.amazonaws.textract#ThrottlingException":
+ throw await de_ThrottlingExceptionRes(parsedOutput, context);
+ default:
+ const parsedBody = parsedOutput.body;
+ return throwDefaultError({
+ output,
+ parsedBody,
+ errorCode,
+ });
+ }
+};
+
+/**
+ * deserializeAws_json1_1ListAdaptersCommand
+ */
+export const de_ListAdaptersCommand = async (
+ output: __HttpResponse,
+ context: __SerdeContext
+): Promise => {
+ if (output.statusCode >= 300) {
+ return de_ListAdaptersCommandError(output, context);
+ }
+ const data: any = await parseBody(output.body, context);
+ let contents: any = {};
+ contents = de_ListAdaptersResponse(data, context);
+ const response: ListAdaptersCommandOutput = {
+ $metadata: deserializeMetadata(output),
+ ...contents,
+ };
+ return response;
+};
+
+/**
+ * deserializeAws_json1_1ListAdaptersCommandError
+ */
+const de_ListAdaptersCommandError = async (
+ output: __HttpResponse,
+ context: __SerdeContext
+): Promise => {
+ const parsedOutput: any = {
+ ...output,
+ body: await parseErrorBody(output.body, context),
+ };
+ const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
+ switch (errorCode) {
+ case "AccessDeniedException":
+ case "com.amazonaws.textract#AccessDeniedException":
+ throw await de_AccessDeniedExceptionRes(parsedOutput, context);
+ case "InternalServerError":
+ case "com.amazonaws.textract#InternalServerError":
+ throw await de_InternalServerErrorRes(parsedOutput, context);
+ case "InvalidParameterException":
+ case "com.amazonaws.textract#InvalidParameterException":
+ throw await de_InvalidParameterExceptionRes(parsedOutput, context);
+ case "ProvisionedThroughputExceededException":
+ case "com.amazonaws.textract#ProvisionedThroughputExceededException":
+ throw await de_ProvisionedThroughputExceededExceptionRes(parsedOutput, context);
+ case "ThrottlingException":
+ case "com.amazonaws.textract#ThrottlingException":
+ throw await de_ThrottlingExceptionRes(parsedOutput, context);
+ case "ValidationException":
+ case "com.amazonaws.textract#ValidationException":
+ throw await de_ValidationExceptionRes(parsedOutput, context);
+ default:
+ const parsedBody = parsedOutput.body;
+ return throwDefaultError({
+ output,
+ parsedBody,
+ errorCode,
+ });
+ }
+};
+
+/**
+ * deserializeAws_json1_1ListAdapterVersionsCommand
+ */
+export const de_ListAdapterVersionsCommand = async (
+ output: __HttpResponse,
+ context: __SerdeContext
+): Promise => {
+ if (output.statusCode >= 300) {
+ return de_ListAdapterVersionsCommandError(output, context);
+ }
+ const data: any = await parseBody(output.body, context);
+ let contents: any = {};
+ contents = de_ListAdapterVersionsResponse(data, context);
+ const response: ListAdapterVersionsCommandOutput = {
+ $metadata: deserializeMetadata(output),
+ ...contents,
+ };
+ return response;
+};
+
+/**
+ * deserializeAws_json1_1ListAdapterVersionsCommandError
+ */
+const de_ListAdapterVersionsCommandError = async (
+ output: __HttpResponse,
+ context: __SerdeContext
+): Promise => {
+ const parsedOutput: any = {
+ ...output,
+ body: await parseErrorBody(output.body, context),
+ };
+ const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
+ switch (errorCode) {
+ case "AccessDeniedException":
+ case "com.amazonaws.textract#AccessDeniedException":
+ throw await de_AccessDeniedExceptionRes(parsedOutput, context);
+ case "InternalServerError":
+ case "com.amazonaws.textract#InternalServerError":
+ throw await de_InternalServerErrorRes(parsedOutput, context);
+ case "InvalidParameterException":
+ case "com.amazonaws.textract#InvalidParameterException":
+ throw await de_InvalidParameterExceptionRes(parsedOutput, context);
+ case "ProvisionedThroughputExceededException":
+ case "com.amazonaws.textract#ProvisionedThroughputExceededException":
+ throw await de_ProvisionedThroughputExceededExceptionRes(parsedOutput, context);
+ case "ResourceNotFoundException":
+ case "com.amazonaws.textract#ResourceNotFoundException":
+ throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
+ case "ThrottlingException":
+ case "com.amazonaws.textract#ThrottlingException":
+ throw await de_ThrottlingExceptionRes(parsedOutput, context);
+ case "ValidationException":
+ case "com.amazonaws.textract#ValidationException":
+ throw await de_ValidationExceptionRes(parsedOutput, context);
+ default:
+ const parsedBody = parsedOutput.body;
+ return throwDefaultError({
+ output,
+ parsedBody,
+ errorCode,
+ });
+ }
+};
+
+/**
+ * deserializeAws_json1_1ListTagsForResourceCommand
+ */
+export const de_ListTagsForResourceCommand = async (
+ output: __HttpResponse,
+ context: __SerdeContext
+): Promise => {
+ if (output.statusCode >= 300) {
+ return de_ListTagsForResourceCommandError(output, context);
+ }
+ const data: any = await parseBody(output.body, context);
+ let contents: any = {};
+ contents = _json(data);
+ const response: ListTagsForResourceCommandOutput = {
+ $metadata: deserializeMetadata(output),
+ ...contents,
+ };
+ return response;
+};
+
+/**
+ * deserializeAws_json1_1ListTagsForResourceCommandError
+ */
+const de_ListTagsForResourceCommandError = async (
+ output: __HttpResponse,
+ context: __SerdeContext
+): Promise => {
+ const parsedOutput: any = {
+ ...output,
+ body: await parseErrorBody(output.body, context),
+ };
+ const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
+ switch (errorCode) {
+ case "AccessDeniedException":
+ case "com.amazonaws.textract#AccessDeniedException":
+ throw await de_AccessDeniedExceptionRes(parsedOutput, context);
+ case "InternalServerError":
+ case "com.amazonaws.textract#InternalServerError":
+ throw await de_InternalServerErrorRes(parsedOutput, context);
+ case "InvalidParameterException":
+ case "com.amazonaws.textract#InvalidParameterException":
+ throw await de_InvalidParameterExceptionRes(parsedOutput, context);
+ case "ProvisionedThroughputExceededException":
+ case "com.amazonaws.textract#ProvisionedThroughputExceededException":
+ throw await de_ProvisionedThroughputExceededExceptionRes(parsedOutput, context);
+ case "ResourceNotFoundException":
+ case "com.amazonaws.textract#ResourceNotFoundException":
+ throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
+ case "ThrottlingException":
+ case "com.amazonaws.textract#ThrottlingException":
+ throw await de_ThrottlingExceptionRes(parsedOutput, context);
+ case "ValidationException":
+ case "com.amazonaws.textract#ValidationException":
+ throw await de_ValidationExceptionRes(parsedOutput, context);
+ default:
+ const parsedBody = parsedOutput.body;
+ return throwDefaultError({
+ output,
+ parsedBody,
+ errorCode,
+ });
+ }
+};
+
+/**
+ * deserializeAws_json1_1StartDocumentAnalysisCommand
+ */
+export const de_StartDocumentAnalysisCommand = async (
+ output: __HttpResponse,
+ context: __SerdeContext
+): Promise => {
+ if (output.statusCode >= 300) {
+ return de_StartDocumentAnalysisCommandError(output, context);
+ }
+ const data: any = await parseBody(output.body, context);
+ let contents: any = {};
+ contents = _json(data);
+ const response: StartDocumentAnalysisCommandOutput = {
+ $metadata: deserializeMetadata(output),
+ ...contents,
+ };
+ return response;
+};
+
+/**
+ * deserializeAws_json1_1StartDocumentAnalysisCommandError
+ */
+const de_StartDocumentAnalysisCommandError = async (
+ output: __HttpResponse,
+ context: __SerdeContext
+): Promise => {
+ const parsedOutput: any = {
+ ...output,
+ body: await parseErrorBody(output.body, context),
+ };
+ const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
+ switch (errorCode) {
+ case "AccessDeniedException":
+ case "com.amazonaws.textract#AccessDeniedException":
+ throw await de_AccessDeniedExceptionRes(parsedOutput, context);
+ case "BadDocumentException":
+ case "com.amazonaws.textract#BadDocumentException":
+ throw await de_BadDocumentExceptionRes(parsedOutput, context);
case "DocumentTooLargeException":
case "com.amazonaws.textract#DocumentTooLargeException":
throw await de_DocumentTooLargeExceptionRes(parsedOutput, context);
@@ -1057,9 +1875,234 @@ const de_StartDocumentTextDetectionCommandError = async (
case "ThrottlingException":
case "com.amazonaws.textract#ThrottlingException":
throw await de_ThrottlingExceptionRes(parsedOutput, context);
- case "UnsupportedDocumentException":
- case "com.amazonaws.textract#UnsupportedDocumentException":
- throw await de_UnsupportedDocumentExceptionRes(parsedOutput, context);
+ case "UnsupportedDocumentException":
+ case "com.amazonaws.textract#UnsupportedDocumentException":
+ throw await de_UnsupportedDocumentExceptionRes(parsedOutput, context);
+ default:
+ const parsedBody = parsedOutput.body;
+ return throwDefaultError({
+ output,
+ parsedBody,
+ errorCode,
+ });
+ }
+};
+
+/**
+ * deserializeAws_json1_1StartExpenseAnalysisCommand
+ */
+export const de_StartExpenseAnalysisCommand = async (
+ output: __HttpResponse,
+ context: __SerdeContext
+): Promise => {
+ if (output.statusCode >= 300) {
+ return de_StartExpenseAnalysisCommandError(output, context);
+ }
+ const data: any = await parseBody(output.body, context);
+ let contents: any = {};
+ contents = _json(data);
+ const response: StartExpenseAnalysisCommandOutput = {
+ $metadata: deserializeMetadata(output),
+ ...contents,
+ };
+ return response;
+};
+
+/**
+ * deserializeAws_json1_1StartExpenseAnalysisCommandError
+ */
+const de_StartExpenseAnalysisCommandError = async (
+ output: __HttpResponse,
+ context: __SerdeContext
+): Promise => {
+ const parsedOutput: any = {
+ ...output,
+ body: await parseErrorBody(output.body, context),
+ };
+ const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
+ switch (errorCode) {
+ case "AccessDeniedException":
+ case "com.amazonaws.textract#AccessDeniedException":
+ throw await de_AccessDeniedExceptionRes(parsedOutput, context);
+ case "BadDocumentException":
+ case "com.amazonaws.textract#BadDocumentException":
+ throw await de_BadDocumentExceptionRes(parsedOutput, context);
+ case "DocumentTooLargeException":
+ case "com.amazonaws.textract#DocumentTooLargeException":
+ throw await de_DocumentTooLargeExceptionRes(parsedOutput, context);
+ case "IdempotentParameterMismatchException":
+ case "com.amazonaws.textract#IdempotentParameterMismatchException":
+ throw await de_IdempotentParameterMismatchExceptionRes(parsedOutput, context);
+ case "InternalServerError":
+ case "com.amazonaws.textract#InternalServerError":
+ throw await de_InternalServerErrorRes(parsedOutput, context);
+ case "InvalidKMSKeyException":
+ case "com.amazonaws.textract#InvalidKMSKeyException":
+ throw await de_InvalidKMSKeyExceptionRes(parsedOutput, context);
+ case "InvalidParameterException":
+ case "com.amazonaws.textract#InvalidParameterException":
+ throw await de_InvalidParameterExceptionRes(parsedOutput, context);
+ case "InvalidS3ObjectException":
+ case "com.amazonaws.textract#InvalidS3ObjectException":
+ throw await de_InvalidS3ObjectExceptionRes(parsedOutput, context);
+ case "LimitExceededException":
+ case "com.amazonaws.textract#LimitExceededException":
+ throw await de_LimitExceededExceptionRes(parsedOutput, context);
+ case "ProvisionedThroughputExceededException":
+ case "com.amazonaws.textract#ProvisionedThroughputExceededException":
+ throw await de_ProvisionedThroughputExceededExceptionRes(parsedOutput, context);
+ case "ThrottlingException":
+ case "com.amazonaws.textract#ThrottlingException":
+ throw await de_ThrottlingExceptionRes(parsedOutput, context);
+ case "UnsupportedDocumentException":
+ case "com.amazonaws.textract#UnsupportedDocumentException":
+ throw await de_UnsupportedDocumentExceptionRes(parsedOutput, context);
+ default:
+ const parsedBody = parsedOutput.body;
+ return throwDefaultError({
+ output,
+ parsedBody,
+ errorCode,
+ });
+ }
+};
+
+/**
+ * deserializeAws_json1_1StartLendingAnalysisCommand
+ */
+export const de_StartLendingAnalysisCommand = async (
+ output: __HttpResponse,
+ context: __SerdeContext
+): Promise => {
+ if (output.statusCode >= 300) {
+ return de_StartLendingAnalysisCommandError(output, context);
+ }
+ const data: any = await parseBody(output.body, context);
+ let contents: any = {};
+ contents = _json(data);
+ const response: StartLendingAnalysisCommandOutput = {
+ $metadata: deserializeMetadata(output),
+ ...contents,
+ };
+ return response;
+};
+
+/**
+ * deserializeAws_json1_1StartLendingAnalysisCommandError
+ */
+const de_StartLendingAnalysisCommandError = async (
+ output: __HttpResponse,
+ context: __SerdeContext
+): Promise => {
+ const parsedOutput: any = {
+ ...output,
+ body: await parseErrorBody(output.body, context),
+ };
+ const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
+ switch (errorCode) {
+ case "AccessDeniedException":
+ case "com.amazonaws.textract#AccessDeniedException":
+ throw await de_AccessDeniedExceptionRes(parsedOutput, context);
+ case "BadDocumentException":
+ case "com.amazonaws.textract#BadDocumentException":
+ throw await de_BadDocumentExceptionRes(parsedOutput, context);
+ case "DocumentTooLargeException":
+ case "com.amazonaws.textract#DocumentTooLargeException":
+ throw await de_DocumentTooLargeExceptionRes(parsedOutput, context);
+ case "IdempotentParameterMismatchException":
+ case "com.amazonaws.textract#IdempotentParameterMismatchException":
+ throw await de_IdempotentParameterMismatchExceptionRes(parsedOutput, context);
+ case "InternalServerError":
+ case "com.amazonaws.textract#InternalServerError":
+ throw await de_InternalServerErrorRes(parsedOutput, context);
+ case "InvalidKMSKeyException":
+ case "com.amazonaws.textract#InvalidKMSKeyException":
+ throw await de_InvalidKMSKeyExceptionRes(parsedOutput, context);
+ case "InvalidParameterException":
+ case "com.amazonaws.textract#InvalidParameterException":
+ throw await de_InvalidParameterExceptionRes(parsedOutput, context);
+ case "InvalidS3ObjectException":
+ case "com.amazonaws.textract#InvalidS3ObjectException":
+ throw await de_InvalidS3ObjectExceptionRes(parsedOutput, context);
+ case "LimitExceededException":
+ case "com.amazonaws.textract#LimitExceededException":
+ throw await de_LimitExceededExceptionRes(parsedOutput, context);
+ case "ProvisionedThroughputExceededException":
+ case "com.amazonaws.textract#ProvisionedThroughputExceededException":
+ throw await de_ProvisionedThroughputExceededExceptionRes(parsedOutput, context);
+ case "ThrottlingException":
+ case "com.amazonaws.textract#ThrottlingException":
+ throw await de_ThrottlingExceptionRes(parsedOutput, context);
+ case "UnsupportedDocumentException":
+ case "com.amazonaws.textract#UnsupportedDocumentException":
+ throw await de_UnsupportedDocumentExceptionRes(parsedOutput, context);
+ default:
+ const parsedBody = parsedOutput.body;
+ return throwDefaultError({
+ output,
+ parsedBody,
+ errorCode,
+ });
+ }
+};
+
+/**
+ * deserializeAws_json1_1TagResourceCommand
+ */
+export const de_TagResourceCommand = async (
+ output: __HttpResponse,
+ context: __SerdeContext
+): Promise => {
+ if (output.statusCode >= 300) {
+ return de_TagResourceCommandError(output, context);
+ }
+ const data: any = await parseBody(output.body, context);
+ let contents: any = {};
+ contents = _json(data);
+ const response: TagResourceCommandOutput = {
+ $metadata: deserializeMetadata(output),
+ ...contents,
+ };
+ return response;
+};
+
+/**
+ * deserializeAws_json1_1TagResourceCommandError
+ */
+const de_TagResourceCommandError = async (
+ output: __HttpResponse,
+ context: __SerdeContext
+): Promise => {
+ const parsedOutput: any = {
+ ...output,
+ body: await parseErrorBody(output.body, context),
+ };
+ const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
+ switch (errorCode) {
+ case "AccessDeniedException":
+ case "com.amazonaws.textract#AccessDeniedException":
+ throw await de_AccessDeniedExceptionRes(parsedOutput, context);
+ case "InternalServerError":
+ case "com.amazonaws.textract#InternalServerError":
+ throw await de_InternalServerErrorRes(parsedOutput, context);
+ case "InvalidParameterException":
+ case "com.amazonaws.textract#InvalidParameterException":
+ throw await de_InvalidParameterExceptionRes(parsedOutput, context);
+ case "ProvisionedThroughputExceededException":
+ case "com.amazonaws.textract#ProvisionedThroughputExceededException":
+ throw await de_ProvisionedThroughputExceededExceptionRes(parsedOutput, context);
+ case "ResourceNotFoundException":
+ case "com.amazonaws.textract#ResourceNotFoundException":
+ throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
+ case "ServiceQuotaExceededException":
+ case "com.amazonaws.textract#ServiceQuotaExceededException":
+ throw await de_ServiceQuotaExceededExceptionRes(parsedOutput, context);
+ case "ThrottlingException":
+ case "com.amazonaws.textract#ThrottlingException":
+ throw await de_ThrottlingExceptionRes(parsedOutput, context);
+ case "ValidationException":
+ case "com.amazonaws.textract#ValidationException":
+ throw await de_ValidationExceptionRes(parsedOutput, context);
default:
const parsedBody = parsedOutput.body;
return throwDefaultError({
@@ -1071,19 +2114,19 @@ const de_StartDocumentTextDetectionCommandError = async (
};
/**
- * deserializeAws_json1_1StartExpenseAnalysisCommand
+ * deserializeAws_json1_1UntagResourceCommand
*/
-export const de_StartExpenseAnalysisCommand = async (
+export const de_UntagResourceCommand = async (
output: __HttpResponse,
context: __SerdeContext
-): Promise => {
+): Promise => {
if (output.statusCode >= 300) {
- return de_StartExpenseAnalysisCommandError(output, context);
+ return de_UntagResourceCommandError(output, context);
}
const data: any = await parseBody(output.body, context);
let contents: any = {};
contents = _json(data);
- const response: StartExpenseAnalysisCommandOutput = {
+ const response: UntagResourceCommandOutput = {
$metadata: deserializeMetadata(output),
...contents,
};
@@ -1091,12 +2134,12 @@ export const de_StartExpenseAnalysisCommand = async (
};
/**
- * deserializeAws_json1_1StartExpenseAnalysisCommandError
+ * deserializeAws_json1_1UntagResourceCommandError
*/
-const de_StartExpenseAnalysisCommandError = async (
+const de_UntagResourceCommandError = async (
output: __HttpResponse,
context: __SerdeContext
-): Promise => {
+): Promise => {
const parsedOutput: any = {
...output,
body: await parseErrorBody(output.body, context),
@@ -1106,39 +2149,24 @@ const de_StartExpenseAnalysisCommandError = async (
case "AccessDeniedException":
case "com.amazonaws.textract#AccessDeniedException":
throw await de_AccessDeniedExceptionRes(parsedOutput, context);
- case "BadDocumentException":
- case "com.amazonaws.textract#BadDocumentException":
- throw await de_BadDocumentExceptionRes(parsedOutput, context);
- case "DocumentTooLargeException":
- case "com.amazonaws.textract#DocumentTooLargeException":
- throw await de_DocumentTooLargeExceptionRes(parsedOutput, context);
- case "IdempotentParameterMismatchException":
- case "com.amazonaws.textract#IdempotentParameterMismatchException":
- throw await de_IdempotentParameterMismatchExceptionRes(parsedOutput, context);
case "InternalServerError":
case "com.amazonaws.textract#InternalServerError":
throw await de_InternalServerErrorRes(parsedOutput, context);
- case "InvalidKMSKeyException":
- case "com.amazonaws.textract#InvalidKMSKeyException":
- throw await de_InvalidKMSKeyExceptionRes(parsedOutput, context);
case "InvalidParameterException":
case "com.amazonaws.textract#InvalidParameterException":
throw await de_InvalidParameterExceptionRes(parsedOutput, context);
- case "InvalidS3ObjectException":
- case "com.amazonaws.textract#InvalidS3ObjectException":
- throw await de_InvalidS3ObjectExceptionRes(parsedOutput, context);
- case "LimitExceededException":
- case "com.amazonaws.textract#LimitExceededException":
- throw await de_LimitExceededExceptionRes(parsedOutput, context);
case "ProvisionedThroughputExceededException":
case "com.amazonaws.textract#ProvisionedThroughputExceededException":
throw await de_ProvisionedThroughputExceededExceptionRes(parsedOutput, context);
+ case "ResourceNotFoundException":
+ case "com.amazonaws.textract#ResourceNotFoundException":
+ throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
case "ThrottlingException":
case "com.amazonaws.textract#ThrottlingException":
throw await de_ThrottlingExceptionRes(parsedOutput, context);
- case "UnsupportedDocumentException":
- case "com.amazonaws.textract#UnsupportedDocumentException":
- throw await de_UnsupportedDocumentExceptionRes(parsedOutput, context);
+ case "ValidationException":
+ case "com.amazonaws.textract#ValidationException":
+ throw await de_ValidationExceptionRes(parsedOutput, context);
default:
const parsedBody = parsedOutput.body;
return throwDefaultError({
@@ -1150,19 +2178,19 @@ const de_StartExpenseAnalysisCommandError = async (
};
/**
- * deserializeAws_json1_1StartLendingAnalysisCommand
+ * deserializeAws_json1_1UpdateAdapterCommand
*/
-export const de_StartLendingAnalysisCommand = async (
+export const de_UpdateAdapterCommand = async (
output: __HttpResponse,
context: __SerdeContext
-): Promise => {
+): Promise => {
if (output.statusCode >= 300) {
- return de_StartLendingAnalysisCommandError(output, context);
+ return de_UpdateAdapterCommandError(output, context);
}
const data: any = await parseBody(output.body, context);
let contents: any = {};
- contents = _json(data);
- const response: StartLendingAnalysisCommandOutput = {
+ contents = de_UpdateAdapterResponse(data, context);
+ const response: UpdateAdapterCommandOutput = {
$metadata: deserializeMetadata(output),
...contents,
};
@@ -1170,12 +2198,12 @@ export const de_StartLendingAnalysisCommand = async (
};
/**
- * deserializeAws_json1_1StartLendingAnalysisCommandError
+ * deserializeAws_json1_1UpdateAdapterCommandError
*/
-const de_StartLendingAnalysisCommandError = async (
+const de_UpdateAdapterCommandError = async (
output: __HttpResponse,
context: __SerdeContext
-): Promise => {
+): Promise => {
const parsedOutput: any = {
...output,
body: await parseErrorBody(output.body, context),
@@ -1185,39 +2213,27 @@ const de_StartLendingAnalysisCommandError = async (
case "AccessDeniedException":
case "com.amazonaws.textract#AccessDeniedException":
throw await de_AccessDeniedExceptionRes(parsedOutput, context);
- case "BadDocumentException":
- case "com.amazonaws.textract#BadDocumentException":
- throw await de_BadDocumentExceptionRes(parsedOutput, context);
- case "DocumentTooLargeException":
- case "com.amazonaws.textract#DocumentTooLargeException":
- throw await de_DocumentTooLargeExceptionRes(parsedOutput, context);
- case "IdempotentParameterMismatchException":
- case "com.amazonaws.textract#IdempotentParameterMismatchException":
- throw await de_IdempotentParameterMismatchExceptionRes(parsedOutput, context);
+ case "ConflictException":
+ case "com.amazonaws.textract#ConflictException":
+ throw await de_ConflictExceptionRes(parsedOutput, context);
case "InternalServerError":
case "com.amazonaws.textract#InternalServerError":
throw await de_InternalServerErrorRes(parsedOutput, context);
- case "InvalidKMSKeyException":
- case "com.amazonaws.textract#InvalidKMSKeyException":
- throw await de_InvalidKMSKeyExceptionRes(parsedOutput, context);
case "InvalidParameterException":
case "com.amazonaws.textract#InvalidParameterException":
throw await de_InvalidParameterExceptionRes(parsedOutput, context);
- case "InvalidS3ObjectException":
- case "com.amazonaws.textract#InvalidS3ObjectException":
- throw await de_InvalidS3ObjectExceptionRes(parsedOutput, context);
- case "LimitExceededException":
- case "com.amazonaws.textract#LimitExceededException":
- throw await de_LimitExceededExceptionRes(parsedOutput, context);
case "ProvisionedThroughputExceededException":
case "com.amazonaws.textract#ProvisionedThroughputExceededException":
throw await de_ProvisionedThroughputExceededExceptionRes(parsedOutput, context);
+ case "ResourceNotFoundException":
+ case "com.amazonaws.textract#ResourceNotFoundException":
+ throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
case "ThrottlingException":
case "com.amazonaws.textract#ThrottlingException":
throw await de_ThrottlingExceptionRes(parsedOutput, context);
- case "UnsupportedDocumentException":
- case "com.amazonaws.textract#UnsupportedDocumentException":
- throw await de_UnsupportedDocumentExceptionRes(parsedOutput, context);
+ case "ValidationException":
+ case "com.amazonaws.textract#ValidationException":
+ throw await de_ValidationExceptionRes(parsedOutput, context);
default:
const parsedBody = parsedOutput.body;
return throwDefaultError({
@@ -1260,6 +2276,19 @@ const de_BadDocumentExceptionRes = async (
return __decorateServiceException(exception, body);
};
+/**
+ * deserializeAws_json1_1ConflictExceptionRes
+ */
+const de_ConflictExceptionRes = async (parsedOutput: any, context: __SerdeContext): Promise => {
+ const body = parsedOutput.body;
+ const deserialized: any = _json(body);
+ const exception = new ConflictException({
+ $metadata: deserializeMetadata(parsedOutput),
+ ...deserialized,
+ });
+ return __decorateServiceException(exception, body);
+};
+
/**
* deserializeAws_json1_1DocumentTooLargeExceptionRes
*/
@@ -1417,6 +2446,38 @@ const de_ProvisionedThroughputExceededExceptionRes = async (
return __decorateServiceException(exception, body);
};
+/**
+ * deserializeAws_json1_1ResourceNotFoundExceptionRes
+ */
+const de_ResourceNotFoundExceptionRes = async (
+ parsedOutput: any,
+ context: __SerdeContext
+): Promise => {
+ const body = parsedOutput.body;
+ const deserialized: any = _json(body);
+ const exception = new ResourceNotFoundException({
+ $metadata: deserializeMetadata(parsedOutput),
+ ...deserialized,
+ });
+ return __decorateServiceException(exception, body);
+};
+
+/**
+ * deserializeAws_json1_1ServiceQuotaExceededExceptionRes
+ */
+const de_ServiceQuotaExceededExceptionRes = async (
+ parsedOutput: any,
+ context: __SerdeContext
+): Promise => {
+ const body = parsedOutput.body;
+ const deserialized: any = _json(body);
+ const exception = new ServiceQuotaExceededException({
+ $metadata: deserializeMetadata(parsedOutput),
+ ...deserialized,
+ });
+ return __decorateServiceException(exception, body);
+};
+
/**
* deserializeAws_json1_1ThrottlingExceptionRes
*/
@@ -1446,11 +2507,35 @@ const de_UnsupportedDocumentExceptionRes = async (
return __decorateServiceException(exception, body);
};
+/**
+ * deserializeAws_json1_1ValidationExceptionRes
+ */
+const de_ValidationExceptionRes = async (parsedOutput: any, context: __SerdeContext): Promise => {
+ const body = parsedOutput.body;
+ const deserialized: any = _json(body);
+ const exception = new ValidationException({
+ $metadata: deserializeMetadata(parsedOutput),
+ ...deserialized,
+ });
+ return __decorateServiceException(exception, body);
+};
+
+// se_Adapter omitted.
+
+// se_AdapterPages omitted.
+
+// se_Adapters omitted.
+
+// se_AdaptersConfig omitted.
+
+// se_AdapterVersionDatasetConfig omitted.
+
/**
* serializeAws_json1_1AnalyzeDocumentRequest
*/
const se_AnalyzeDocumentRequest = (input: AnalyzeDocumentRequest, context: __SerdeContext): any => {
return take(input, {
+ AdaptersConfig: _json,
Document: (_) => se_Document(_, context),
FeatureTypes: _json,
HumanLoopConfig: _json,
@@ -1478,6 +2563,38 @@ const se_AnalyzeIDRequest = (input: AnalyzeIDRequest, context: __SerdeContext):
// se_ContentClassifiers omitted.
+/**
+ * serializeAws_json1_1CreateAdapterRequest
+ */
+const se_CreateAdapterRequest = (input: CreateAdapterRequest, context: __SerdeContext): any => {
+ return take(input, {
+ AdapterName: [],
+ AutoUpdate: [],
+ ClientRequestToken: [true, (_) => _ ?? generateIdempotencyToken()],
+ Description: [],
+ FeatureTypes: _json,
+ Tags: _json,
+ });
+};
+
+/**
+ * serializeAws_json1_1CreateAdapterVersionRequest
+ */
+const se_CreateAdapterVersionRequest = (input: CreateAdapterVersionRequest, context: __SerdeContext): any => {
+ return take(input, {
+ AdapterId: [],
+ ClientRequestToken: [true, (_) => _ ?? generateIdempotencyToken()],
+ DatasetConfig: _json,
+ KMSKeyId: [],
+ OutputConfig: _json,
+ Tags: _json,
+ });
+};
+
+// se_DeleteAdapterRequest omitted.
+
+// se_DeleteAdapterVersionRequest omitted.
+
/**
* serializeAws_json1_1DetectDocumentTextRequest
*/
@@ -1512,6 +2629,10 @@ const se_DocumentPages = (input: Document[], context: __SerdeContext): any => {
// se_FeatureTypes omitted.
+// se_GetAdapterRequest omitted.
+
+// se_GetAdapterVersionRequest omitted.
+
// se_GetDocumentAnalysisRequest omitted.
// se_GetDocumentTextDetectionRequest omitted.
@@ -1526,6 +2647,33 @@ const se_DocumentPages = (input: Document[], context: __SerdeContext): any => {
// se_HumanLoopDataAttributes omitted.
+/**
+ * serializeAws_json1_1ListAdaptersRequest
+ */
+const se_ListAdaptersRequest = (input: ListAdaptersRequest, context: __SerdeContext): any => {
+ return take(input, {
+ AfterCreationTime: (_) => Math.round(_.getTime() / 1000),
+ BeforeCreationTime: (_) => Math.round(_.getTime() / 1000),
+ MaxResults: [],
+ NextToken: [],
+ });
+};
+
+/**
+ * serializeAws_json1_1ListAdapterVersionsRequest
+ */
+const se_ListAdapterVersionsRequest = (input: ListAdapterVersionsRequest, context: __SerdeContext): any => {
+ return take(input, {
+ AdapterId: [],
+ AfterCreationTime: (_) => Math.round(_.getTime() / 1000),
+ BeforeCreationTime: (_) => Math.round(_.getTime() / 1000),
+ MaxResults: [],
+ NextToken: [],
+ });
+};
+
+// se_ListTagsForResourceRequest omitted.
+
// se_NotificationChannel omitted.
// se_OutputConfig omitted.
@@ -1548,8 +2696,93 @@ const se_DocumentPages = (input: Document[], context: __SerdeContext): any => {
// se_StartLendingAnalysisRequest omitted.
+// se_TagKeyList omitted.
+
+// se_TagMap omitted.
+
+// se_TagResourceRequest omitted.
+
+// se_UntagResourceRequest omitted.
+
+// se_UpdateAdapterRequest omitted.
+
// de_AccessDeniedException omitted.
+/**
+ * deserializeAws_json1_1AdapterList
+ */
+const de_AdapterList = (output: any, context: __SerdeContext): AdapterOverview[] => {
+ const retVal = (output || [])
+ .filter((e: any) => e != null)
+ .map((entry: any) => {
+ return de_AdapterOverview(entry, context);
+ });
+ return retVal;
+};
+
+/**
+ * deserializeAws_json1_1AdapterOverview
+ */
+const de_AdapterOverview = (output: any, context: __SerdeContext): AdapterOverview => {
+ return take(output, {
+ AdapterId: __expectString,
+ AdapterName: __expectString,
+ CreationTime: (_: any) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
+ FeatureTypes: _json,
+ }) as any;
+};
+
+// de_AdapterVersionDatasetConfig omitted.
+
+/**
+ * deserializeAws_json1_1AdapterVersionEvaluationMetric
+ */
+const de_AdapterVersionEvaluationMetric = (output: any, context: __SerdeContext): AdapterVersionEvaluationMetric => {
+ return take(output, {
+ AdapterVersion: (_: any) => de_EvaluationMetric(_, context),
+ Baseline: (_: any) => de_EvaluationMetric(_, context),
+ FeatureType: __expectString,
+ }) as any;
+};
+
+/**
+ * deserializeAws_json1_1AdapterVersionEvaluationMetrics
+ */
+const de_AdapterVersionEvaluationMetrics = (output: any, context: __SerdeContext): AdapterVersionEvaluationMetric[] => {
+ const retVal = (output || [])
+ .filter((e: any) => e != null)
+ .map((entry: any) => {
+ return de_AdapterVersionEvaluationMetric(entry, context);
+ });
+ return retVal;
+};
+
+/**
+ * deserializeAws_json1_1AdapterVersionList
+ */
+const de_AdapterVersionList = (output: any, context: __SerdeContext): AdapterVersionOverview[] => {
+ const retVal = (output || [])
+ .filter((e: any) => e != null)
+ .map((entry: any) => {
+ return de_AdapterVersionOverview(entry, context);
+ });
+ return retVal;
+};
+
+/**
+ * deserializeAws_json1_1AdapterVersionOverview
+ */
+const de_AdapterVersionOverview = (output: any, context: __SerdeContext): AdapterVersionOverview => {
+ return take(output, {
+ AdapterId: __expectString,
+ AdapterVersion: __expectString,
+ CreationTime: (_: any) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
+ FeatureTypes: _json,
+ Status: __expectString,
+ StatusMessage: __expectString,
+ }) as any;
+};
+
/**
* deserializeAws_json1_1AnalyzeDocumentResponse
*/
@@ -1643,6 +2876,16 @@ const de_BoundingBox = (output: any, context: __SerdeContext): BoundingBox => {
}) as any;
};
+// de_ConflictException omitted.
+
+// de_CreateAdapterResponse omitted.
+
+// de_CreateAdapterVersionResponse omitted.
+
+// de_DeleteAdapterResponse omitted.
+
+// de_DeleteAdapterVersionResponse omitted.
+
/**
* deserializeAws_json1_1DetectDocumentTextResponse
*/
@@ -1668,6 +2911,17 @@ const de_DetectDocumentTextResponse = (output: any, context: __SerdeContext): De
// de_EntityTypes omitted.
+/**
+ * deserializeAws_json1_1EvaluationMetric
+ */
+const de_EvaluationMetric = (output: any, context: __SerdeContext): EvaluationMetric => {
+ return take(output, {
+ F1Score: __limitedParseFloat32,
+ Precision: __limitedParseFloat32,
+ Recall: __limitedParseFloat32,
+ }) as any;
+};
+
/**
* deserializeAws_json1_1ExpenseCurrency
*/
@@ -1776,6 +3030,8 @@ const de_ExtractionList = (output: any, context: __SerdeContext): Extraction[] =
return retVal;
};
+// de_FeatureTypes omitted.
+
/**
* deserializeAws_json1_1Geometry
*/
@@ -1786,6 +3042,40 @@ const de_Geometry = (output: any, context: __SerdeContext): Geometry => {
}) as any;
};
+/**
+ * deserializeAws_json1_1GetAdapterResponse
+ */
+const de_GetAdapterResponse = (output: any, context: __SerdeContext): GetAdapterResponse => {
+ return take(output, {
+ AdapterId: __expectString,
+ AdapterName: __expectString,
+ AutoUpdate: __expectString,
+ CreationTime: (_: any) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
+ Description: __expectString,
+ FeatureTypes: _json,
+ Tags: _json,
+ }) as any;
+};
+
+/**
+ * deserializeAws_json1_1GetAdapterVersionResponse
+ */
+const de_GetAdapterVersionResponse = (output: any, context: __SerdeContext): GetAdapterVersionResponse => {
+ return take(output, {
+ AdapterId: __expectString,
+ AdapterVersion: __expectString,
+ CreationTime: (_: any) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
+ DatasetConfig: _json,
+ EvaluationMetrics: (_: any) => de_AdapterVersionEvaluationMetrics(_, context),
+ FeatureTypes: _json,
+ KMSKeyId: __expectString,
+ OutputConfig: _json,
+ Status: __expectString,
+ StatusMessage: __expectString,
+ Tags: _json,
+ }) as any;
+};
+
/**
* deserializeAws_json1_1GetDocumentAnalysisResponse
*/
@@ -2052,8 +3342,32 @@ const de_LineItemList = (output: any, context: __SerdeContext): LineItemFields[]
return retVal;
};
+/**
+ * deserializeAws_json1_1ListAdaptersResponse
+ */
+const de_ListAdaptersResponse = (output: any, context: __SerdeContext): ListAdaptersResponse => {
+ return take(output, {
+ Adapters: (_: any) => de_AdapterList(_, context),
+ NextToken: __expectString,
+ }) as any;
+};
+
+/**
+ * deserializeAws_json1_1ListAdapterVersionsResponse
+ */
+const de_ListAdapterVersionsResponse = (output: any, context: __SerdeContext): ListAdapterVersionsResponse => {
+ return take(output, {
+ AdapterVersions: (_: any) => de_AdapterVersionList(_, context),
+ NextToken: __expectString,
+ }) as any;
+};
+
+// de_ListTagsForResourceResponse omitted.
+
// de_NormalizedValue omitted.
+// de_OutputConfig omitted.
+
/**
* deserializeAws_json1_1PageClassification
*/
@@ -2122,6 +3436,12 @@ const de_PredictionList = (output: any, context: __SerdeContext): Prediction[] =
// de_RelationshipList omitted.
+// de_ResourceNotFoundException omitted.
+
+// de_S3Object omitted.
+
+// de_ServiceQuotaExceededException omitted.
+
/**
* deserializeAws_json1_1SignatureDetection
*/
@@ -2158,6 +3478,10 @@ const de_SignatureDetectionList = (output: any, context: __SerdeContext): Signat
// de_StringList omitted.
+// de_TagMap omitted.
+
+// de_TagResourceResponse omitted.
+
// de_ThrottlingException omitted.
// de_UndetectedDocumentTypeList omitted.
@@ -2168,6 +3492,24 @@ const de_SignatureDetectionList = (output: any, context: __SerdeContext): Signat
// de_UnsupportedDocumentException omitted.
+// de_UntagResourceResponse omitted.
+
+/**
+ * deserializeAws_json1_1UpdateAdapterResponse
+ */
+const de_UpdateAdapterResponse = (output: any, context: __SerdeContext): UpdateAdapterResponse => {
+ return take(output, {
+ AdapterId: __expectString,
+ AdapterName: __expectString,
+ AutoUpdate: __expectString,
+ CreationTime: (_: any) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
+ Description: __expectString,
+ FeatureTypes: _json,
+ }) as any;
+};
+
+// de_ValidationException omitted.
+
// de_Warning omitted.
// de_Warnings omitted.
diff --git a/codegen/sdk-codegen/aws-models/textract.json b/codegen/sdk-codegen/aws-models/textract.json
index c47db2414faff..14223d562b275 100644
--- a/codegen/sdk-codegen/aws-models/textract.json
+++ b/codegen/sdk-codegen/aws-models/textract.json
@@ -44,6 +44,305 @@
"smithy.api#error": "client"
}
},
+ "com.amazonaws.textract#Adapter": {
+ "type": "structure",
+ "members": {
+ "AdapterId": {
+ "target": "com.amazonaws.textract#AdapterId",
+ "traits": {
+ "smithy.api#documentation": "A unique identifier for the adapter resource.
",
+ "smithy.api#required": {}
+ }
+ },
+ "Pages": {
+ "target": "com.amazonaws.textract#AdapterPages",
+ "traits": {
+ "smithy.api#documentation": "Pages is a parameter that the user inputs to specify which pages to apply an adapter to. The following is a \n list of rules for using this parameter.
\n \n \n If a page is not specified, it is set to [\"1\"]
by default.
\n \n \n The following characters are allowed in the parameter's string: \n 0 1 2 3 4 5 6 7 8 9 - *
. No whitespace is allowed.
\n \n \n When using * to indicate all pages, it must be the only element in the list.
\n \n \n You can use page intervals, such as [\"1-3\", \"1-1\", \"4-*\"]
. Where *
indicates last page of \n document.
\n \n \n Specified pages must be greater than 0 and less than or equal to the number of pages in the document.
\n \n "
+ }
+ },
+ "Version": {
+ "target": "com.amazonaws.textract#AdapterVersion",
+ "traits": {
+ "smithy.api#documentation": "A string that identifies the version of the adapter.
",
+ "smithy.api#required": {}
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#documentation": "An adapter selected for use when analyzing documents. Contains an adapter ID and a version number. \n Contains information on pages selected for analysis when analyzing documents asychronously.
"
+ }
+ },
+ "com.amazonaws.textract#AdapterDescription": {
+ "type": "string",
+ "traits": {
+ "smithy.api#length": {
+ "min": 1,
+ "max": 256
+ },
+ "smithy.api#pattern": "^[a-zA-Z0-9\\s!\"\\#\\$%'&\\(\\)\\*\\+\\,\\-\\./:;=\\?@\\[\\\\\\]\\^_`\\{\\|\\}~><]+$"
+ }
+ },
+ "com.amazonaws.textract#AdapterId": {
+ "type": "string",
+ "traits": {
+ "smithy.api#length": {
+ "min": 12,
+ "max": 1011
+ }
+ }
+ },
+ "com.amazonaws.textract#AdapterList": {
+ "type": "list",
+ "member": {
+ "target": "com.amazonaws.textract#AdapterOverview"
+ }
+ },
+ "com.amazonaws.textract#AdapterName": {
+ "type": "string",
+ "traits": {
+ "smithy.api#length": {
+ "min": 1,
+ "max": 128
+ },
+ "smithy.api#pattern": "^[a-zA-Z0-9-_]+$"
+ }
+ },
+ "com.amazonaws.textract#AdapterOverview": {
+ "type": "structure",
+ "members": {
+ "AdapterId": {
+ "target": "com.amazonaws.textract#AdapterId",
+ "traits": {
+ "smithy.api#documentation": "A unique identifier for the adapter resource.
"
+ }
+ },
+ "AdapterName": {
+ "target": "com.amazonaws.textract#AdapterName",
+ "traits": {
+ "smithy.api#documentation": "A string naming the adapter resource.
"
+ }
+ },
+ "CreationTime": {
+ "target": "com.amazonaws.textract#DateTime",
+ "traits": {
+ "smithy.api#documentation": "The date and time that the adapter was created.
"
+ }
+ },
+ "FeatureTypes": {
+ "target": "com.amazonaws.textract#FeatureTypes",
+ "traits": {
+ "smithy.api#documentation": "The feature types that the adapter is operating on.
"
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#documentation": "Contains information on the adapter, including the adapter ID, Name, Creation time, and feature types.
"
+ }
+ },
+ "com.amazonaws.textract#AdapterPage": {
+ "type": "string",
+ "traits": {
+ "smithy.api#length": {
+ "min": 1,
+ "max": 9
+ },
+ "smithy.api#pattern": "^[0-9\\*\\-]+$"
+ }
+ },
+ "com.amazonaws.textract#AdapterPages": {
+ "type": "list",
+ "member": {
+ "target": "com.amazonaws.textract#AdapterPage"
+ },
+ "traits": {
+ "smithy.api#length": {
+ "min": 1
+ }
+ }
+ },
+ "com.amazonaws.textract#AdapterVersion": {
+ "type": "string",
+ "traits": {
+ "smithy.api#length": {
+ "min": 1,
+ "max": 128
+ }
+ }
+ },
+ "com.amazonaws.textract#AdapterVersionDatasetConfig": {
+ "type": "structure",
+ "members": {
+ "ManifestS3Object": {
+ "target": "com.amazonaws.textract#S3Object"
+ }
+ },
+ "traits": {
+ "smithy.api#documentation": "The dataset configuration options for a given version of an adapter. \n Can include an Amazon S3 bucket if specified.
"
+ }
+ },
+ "com.amazonaws.textract#AdapterVersionEvaluationMetric": {
+ "type": "structure",
+ "members": {
+ "Baseline": {
+ "target": "com.amazonaws.textract#EvaluationMetric",
+ "traits": {
+ "smithy.api#documentation": "The F1 score, precision, and recall metrics for the baseline model.
"
+ }
+ },
+ "AdapterVersion": {
+ "target": "com.amazonaws.textract#EvaluationMetric",
+ "traits": {
+ "smithy.api#documentation": "The F1 score, precision, and recall metrics for the baseline model.
"
+ }
+ },
+ "FeatureType": {
+ "target": "com.amazonaws.textract#FeatureType",
+ "traits": {
+ "smithy.api#documentation": "Indicates the feature type being analyzed by a given adapter version.
"
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#documentation": "Contains information on the metrics used to evalute the peformance of a given adapter version. Includes data for \n baseline model performance and individual adapter version perfromance.
"
+ }
+ },
+ "com.amazonaws.textract#AdapterVersionEvaluationMetrics": {
+ "type": "list",
+ "member": {
+ "target": "com.amazonaws.textract#AdapterVersionEvaluationMetric"
+ }
+ },
+ "com.amazonaws.textract#AdapterVersionList": {
+ "type": "list",
+ "member": {
+ "target": "com.amazonaws.textract#AdapterVersionOverview"
+ }
+ },
+ "com.amazonaws.textract#AdapterVersionOverview": {
+ "type": "structure",
+ "members": {
+ "AdapterId": {
+ "target": "com.amazonaws.textract#AdapterId",
+ "traits": {
+ "smithy.api#documentation": "A unique identifier for the adapter associated with a given adapter version.
"
+ }
+ },
+ "AdapterVersion": {
+ "target": "com.amazonaws.textract#AdapterVersion",
+ "traits": {
+ "smithy.api#documentation": "An identified for a given adapter version.
"
+ }
+ },
+ "CreationTime": {
+ "target": "com.amazonaws.textract#DateTime",
+ "traits": {
+ "smithy.api#documentation": "The date and time that a given adapter version was created.
"
+ }
+ },
+ "FeatureTypes": {
+ "target": "com.amazonaws.textract#FeatureTypes",
+ "traits": {
+ "smithy.api#documentation": "The feature types that the adapter version is operating on.
"
+ }
+ },
+ "Status": {
+ "target": "com.amazonaws.textract#AdapterVersionStatus",
+ "traits": {
+ "smithy.api#documentation": "Contains information on the status of a given adapter version.
"
+ }
+ },
+ "StatusMessage": {
+ "target": "com.amazonaws.textract#AdapterVersionStatusMessage",
+ "traits": {
+ "smithy.api#documentation": "A message explaining the status of a given adapter vesion.
"
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#documentation": "Summary info for an adapter version. Contains information on the AdapterId, AdapterVersion, CreationTime, FeatureTypes, and Status.
"
+ }
+ },
+ "com.amazonaws.textract#AdapterVersionStatus": {
+ "type": "enum",
+ "members": {
+ "ACTIVE": {
+ "target": "smithy.api#Unit",
+ "traits": {
+ "smithy.api#enumValue": "ACTIVE"
+ }
+ },
+ "AT_RISK": {
+ "target": "smithy.api#Unit",
+ "traits": {
+ "smithy.api#enumValue": "AT_RISK"
+ }
+ },
+ "DEPRECATED": {
+ "target": "smithy.api#Unit",
+ "traits": {
+ "smithy.api#enumValue": "DEPRECATED"
+ }
+ },
+ "CREATION_ERROR": {
+ "target": "smithy.api#Unit",
+ "traits": {
+ "smithy.api#enumValue": "CREATION_ERROR"
+ }
+ },
+ "CREATION_IN_PROGRESS": {
+ "target": "smithy.api#Unit",
+ "traits": {
+ "smithy.api#enumValue": "CREATION_IN_PROGRESS"
+ }
+ }
+ }
+ },
+ "com.amazonaws.textract#AdapterVersionStatusMessage": {
+ "type": "string",
+ "traits": {
+ "smithy.api#length": {
+ "min": 1,
+ "max": 256
+ },
+ "smithy.api#pattern": "^[a-zA-Z0-9\\s!\"\\#\\$%'&\\(\\)\\*\\+\\,\\-\\./:;=\\?@\\[\\\\\\]\\^_`\\{\\|\\}~><]+$"
+ }
+ },
+ "com.amazonaws.textract#Adapters": {
+ "type": "list",
+ "member": {
+ "target": "com.amazonaws.textract#Adapter"
+ },
+ "traits": {
+ "smithy.api#length": {
+ "min": 1,
+ "max": 100
+ }
+ }
+ },
+ "com.amazonaws.textract#AdaptersConfig": {
+ "type": "structure",
+ "members": {
+ "Adapters": {
+ "target": "com.amazonaws.textract#Adapters",
+ "traits": {
+ "smithy.api#documentation": "A list of adapters to be used when analyzing the specified document.
",
+ "smithy.api#required": {}
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#documentation": "Contains information about adapters used when analyzing a document, \n with each adapter specified using an AdapterId and version
"
+ }
+ },
+ "com.amazonaws.textract#AmazonResourceName": {
+ "type": "string",
+ "traits": {
+ "smithy.api#length": {
+ "min": 1,
+ "max": 1011
+ }
+ }
+ },
"com.amazonaws.textract#AnalyzeDocument": {
"type": "operation",
"input": {
@@ -101,7 +400,7 @@
"FeatureTypes": {
"target": "com.amazonaws.textract#FeatureTypes",
"traits": {
- "smithy.api#documentation": "A list of the types of analysis to perform. Add TABLES to the list to return information\n about the tables that are detected in the input document. Add FORMS to return detected form\n data. Add SIGNATURES to return the locations of detected signatures. Add LAYOUT to the list\n to return information about the layout of the document. To perform both forms\n and table analysis, add TABLES and FORMS to FeatureTypes
. To detect signatures\n within the document and within form data and table data, add SIGNATURES to either TABLES or\n FORMS. All lines and words detected in the document are included in the response (including\n text that isn't related to the value of FeatureTypes
).
",
+ "smithy.api#documentation": "A list of the types of analysis to perform. Add TABLES to the list to return information\n about the tables that are detected in the input document. Add FORMS to return detected form\n data. Add SIGNATURES to return the locations of detected signatures. Add LAYOUT to the list\n to return information about the layout of the document. All lines and words detected in the document are included in the response (including\n text that isn't related to the value of FeatureTypes
).
",
"smithy.api#required": {}
}
},
@@ -116,6 +415,12 @@
"traits": {
"smithy.api#documentation": "Contains Queries and the alias for those Queries, as determined by the input.
"
}
+ },
+ "AdaptersConfig": {
+ "target": "com.amazonaws.textract#AdaptersConfig",
+ "traits": {
+ "smithy.api#documentation": "Specifies the adapter to be used when analyzing a document.
"
+ }
}
},
"traits": {
@@ -332,6 +637,23 @@
"smithy.api#output": {}
}
},
+ "com.amazonaws.textract#AutoUpdate": {
+ "type": "enum",
+ "members": {
+ "ENABLED": {
+ "target": "smithy.api#Unit",
+ "traits": {
+ "smithy.api#enumValue": "ENABLED"
+ }
+ },
+ "DISABLED": {
+ "target": "smithy.api#Unit",
+ "traits": {
+ "smithy.api#enumValue": "DISABLED"
+ }
+ }
+ }
+ },
"com.amazonaws.textract#BadDocumentException": {
"type": "structure",
"members": {
@@ -353,7 +675,7 @@
"BlockType": {
"target": "com.amazonaws.textract#BlockType",
"traits": {
- "smithy.api#documentation": "The type of text item that's recognized. In operations for text detection, the following\n types are returned:
\n \n \n \n PAGE - Contains a list of the LINE Block
objects\n that are detected on a document page.
\n \n \n \n WORD - A word detected on a document page. A word is one or\n more ISO basic Latin script characters that aren't separated by spaces.
\n \n \n \n LINE - A string of tab-delimited, contiguous words that are\n detected on a document page.
\n \n \n In text analysis operations, the following types are returned:
\n \n \n \n PAGE - Contains a list of child Block
objects\n that are detected on a document page.
\n \n \n \n KEY_VALUE_SET - Stores the KEY and VALUE Block
\n objects for linked text that's detected on a document page. Use the\n EntityType
field to determine if a KEY_VALUE_SET object is a KEY\n Block
object or a VALUE Block
object.
\n \n \n \n WORD - A word that's detected on a document page. A word is\n one or more ISO basic Latin script characters that aren't separated by spaces.
\n \n \n \n LINE - A string of tab-delimited, contiguous words that are\n detected on a document page.
\n \n \n \n TABLE - A table that's detected on a document page. A table\n is grid-based information with two or more rows or columns, with a cell span of one\n row and one column each.
\n \n \n \n TABLE_TITLE - The title of a table. A title is typically a\n line of text above or below a table, or embedded as the first row of a table.
\n \n \n \n TABLE_FOOTER - The footer associated with a table. A footer\n is typically a line or lines of text below a table or embedded as the last row of a\n table.
\n \n \n \n CELL - A cell within a detected table. The cell is the parent\n of the block that contains the text in the cell.
\n \n \n \n MERGED_CELL - A cell in a table whose content spans more than\n one row or column. The Relationships
array for this cell contain data\n from individual cells.
\n \n \n \n SELECTION_ELEMENT - A selection element such as an option\n button (radio button) or a check box that's detected on a document page. Use the\n value of SelectionStatus
to determine the status of the selection\n element.
\n \n \n \n SIGNATURE - The location and confidence score of a signature detected on a\n document page. Can be returned as part of a Key-Value pair or a detected cell.
\n \n \n \n QUERY - A question asked during the call of AnalyzeDocument. Contains an\n alias and an ID that attaches it to its answer.
\n \n \n \n QUERY_RESULT - A response to a question asked during the call\n of analyze document. Comes with an alias and ID for ease of locating in a \n response. Also contains location and confidence score.
\n \n "
+ "smithy.api#documentation": "The type of text item that's recognized. In operations for text detection, the following\n types are returned:
\n \n \n \n PAGE - Contains a list of the LINE Block
objects\n that are detected on a document page.
\n \n \n \n WORD - A word detected on a document page. A word is one or\n more ISO basic Latin script characters that aren't separated by spaces.
\n \n \n \n LINE - A string of tab-delimited, contiguous words that are\n detected on a document page.
\n \n \n In text analysis operations, the following types are returned:
\n \n \n \n PAGE - Contains a list of child Block
objects\n that are detected on a document page.
\n \n \n \n KEY_VALUE_SET - Stores the KEY and VALUE Block
\n objects for linked text that's detected on a document page. Use the\n EntityType
field to determine if a KEY_VALUE_SET object is a KEY\n Block
object or a VALUE Block
object.
\n \n \n \n WORD - A word that's detected on a document page. A word is\n one or more ISO basic Latin script characters that aren't separated by spaces.
\n \n \n \n LINE - A string of tab-delimited, contiguous words that are\n detected on a document page.
\n \n \n \n TABLE - A table that's detected on a document page. A table\n is grid-based information with two or more rows or columns, with a cell span of one\n row and one column each.
\n \n \n \n TABLE_TITLE - The title of a table. A title is typically a\n line of text above or below a table, or embedded as the first row of a table.
\n \n \n \n TABLE_FOOTER - The footer associated with a table. A footer\n is typically a line or lines of text below a table or embedded as the last row of a\n table.
\n \n \n \n CELL - A cell within a detected table. The cell is the parent\n of the block that contains the text in the cell.
\n \n \n \n MERGED_CELL - A cell in a table whose content spans more than\n one row or column. The Relationships
array for this cell contain data\n from individual cells.
\n \n \n \n SELECTION_ELEMENT - A selection element such as an option\n button (radio button) or a check box that's detected on a document page. Use the\n value of SelectionStatus
to determine the status of the selection\n element.
\n \n \n \n SIGNATURE - The location and confidence score of a signature detected on a\n document page. Can be returned as part of a Key-Value pair or a detected cell.
\n \n \n \n QUERY - A question asked during the call of AnalyzeDocument. Contains an\n alias and an ID that attaches it to its answer.
\n \n \n \n QUERY_RESULT - A response to a question asked during the call\n of analyze document. Comes with an alias and ID for ease of locating in a \n response. Also contains location and confidence score.
\n \n \n The following BlockTypes are only returned for Amazon Textract Layout.
\n \n \n \n LAYOUT_TITLE
- The main title of the document.
\n \n \n \n LAYOUT_HEADER
- Text located in the top margin of the document.
\n \n \n \n LAYOUT_FOOTER
- Text located in the bottom margin of the document.
\n \n \n \n LAYOUT_SECTION_HEADER
- The titles of sections within a document.
\n \n \n \n LAYOUT_PAGE_NUMBER
- The page number of the documents.
\n \n \n \n LAYOUT_LIST
- Any information grouped together in list form.
\n \n \n \n LAYOUT_FIGURE
- Indicates the location of an image in a document.
\n \n \n \n LAYOUT_TABLE
- Indicates the location of a table in the document.
\n \n \n \n LAYOUT_KEY_VALUE
- Indicates the location of form key-values in a document.
\n \n \n \n LAYOUT_TEXT
- Text that is present typically as a part of paragraphs in documents.
\n \n "
}
},
"Confidence": {
@@ -646,6 +968,21 @@
"smithy.api#pattern": "^[a-zA-Z0-9-_]+$"
}
},
+ "com.amazonaws.textract#ConflictException": {
+ "type": "structure",
+ "members": {
+ "Message": {
+ "target": "com.amazonaws.textract#String"
+ },
+ "Code": {
+ "target": "com.amazonaws.textract#String"
+ }
+ },
+ "traits": {
+ "smithy.api#documentation": "Updating or deleting a resource can cause an inconsistent state.
",
+ "smithy.api#error": "client"
+ }
+ },
"com.amazonaws.textract#ContentClassifier": {
"type": "enum",
"members": {
@@ -675,23 +1012,23 @@
}
}
},
- "com.amazonaws.textract#DetectDocumentText": {
+ "com.amazonaws.textract#CreateAdapter": {
"type": "operation",
"input": {
- "target": "com.amazonaws.textract#DetectDocumentTextRequest"
+ "target": "com.amazonaws.textract#CreateAdapterRequest"
},
"output": {
- "target": "com.amazonaws.textract#DetectDocumentTextResponse"
+ "target": "com.amazonaws.textract#CreateAdapterResponse"
},
"errors": [
{
"target": "com.amazonaws.textract#AccessDeniedException"
},
{
- "target": "com.amazonaws.textract#BadDocumentException"
+ "target": "com.amazonaws.textract#ConflictException"
},
{
- "target": "com.amazonaws.textract#DocumentTooLargeException"
+ "target": "com.amazonaws.textract#IdempotentParameterMismatchException"
},
{
"target": "com.amazonaws.textract#InternalServerError"
@@ -700,35 +1037,394 @@
"target": "com.amazonaws.textract#InvalidParameterException"
},
{
- "target": "com.amazonaws.textract#InvalidS3ObjectException"
+ "target": "com.amazonaws.textract#LimitExceededException"
},
{
"target": "com.amazonaws.textract#ProvisionedThroughputExceededException"
},
+ {
+ "target": "com.amazonaws.textract#ServiceQuotaExceededException"
+ },
{
"target": "com.amazonaws.textract#ThrottlingException"
},
{
- "target": "com.amazonaws.textract#UnsupportedDocumentException"
+ "target": "com.amazonaws.textract#ValidationException"
}
],
"traits": {
- "smithy.api#documentation": "Detects text in the input document. Amazon Textract can detect lines of text and the\n words that make up a line of text. The input document must be in one of the following image\n formats: JPEG, PNG, PDF, or TIFF. DetectDocumentText
returns the detected\n text in an array of Block objects.
\n Each document page has as an associated Block
of type PAGE. Each PAGE Block
object\n is the parent of LINE Block
objects that represent the lines of detected text on a page. A LINE Block
object is\n a parent for each word that makes up the line. Words are represented by Block
objects of type WORD.
\n \n DetectDocumentText
is a synchronous operation. To analyze documents \n asynchronously, use StartDocumentTextDetection .
\n For more information, see Document Text Detection .
"
+ "smithy.api#documentation": "Creates an adapter, which can be fine-tuned for enhanced performance on user provided\n documents. Takes an AdapterName and FeatureType. Currently the only supported feature type\n is QUERIES
. You can also provide a Description, Tags, and a\n ClientRequestToken. You can choose whether or not the adapter should be AutoUpdated with\n the AutoUpdate argument. By default, AutoUpdate is set to DISABLED.
",
+ "smithy.api#idempotent": {}
}
},
- "com.amazonaws.textract#DetectDocumentTextRequest": {
+ "com.amazonaws.textract#CreateAdapterRequest": {
"type": "structure",
"members": {
- "Document": {
- "target": "com.amazonaws.textract#Document",
+ "AdapterName": {
+ "target": "com.amazonaws.textract#AdapterName",
"traits": {
- "smithy.api#documentation": "The input document as base64-encoded bytes or an Amazon S3 object. If you use the AWS CLI\n to call Amazon Textract operations, you can't pass image bytes. The document must be an image \n in JPEG or PNG format.
\n If you're using an AWS SDK to call Amazon Textract, you might not need to base64-encode\n image bytes that are passed using the Bytes
field.
",
+ "smithy.api#documentation": "The name to be assigned to the adapter being created.
",
"smithy.api#required": {}
}
- }
- },
- "traits": {
- "smithy.api#input": {}
+ },
+ "ClientRequestToken": {
+ "target": "com.amazonaws.textract#ClientRequestToken",
+ "traits": {
+ "smithy.api#documentation": "Idempotent token is used to recognize the request. If the same token is used with multiple \n CreateAdapter requests, the same session is returned. \n This token is employed to avoid unintentionally creating the same session multiple times.
",
+ "smithy.api#idempotencyToken": {}
+ }
+ },
+ "Description": {
+ "target": "com.amazonaws.textract#AdapterDescription",
+ "traits": {
+ "smithy.api#documentation": "The description to be assigned to the adapter being created.
"
+ }
+ },
+ "FeatureTypes": {
+ "target": "com.amazonaws.textract#FeatureTypes",
+ "traits": {
+ "smithy.api#documentation": "The type of feature that the adapter is being trained on. Currrenly, supported feature\n types are: QUERIES
\n
",
+ "smithy.api#required": {}
+ }
+ },
+ "AutoUpdate": {
+ "target": "com.amazonaws.textract#AutoUpdate",
+ "traits": {
+ "smithy.api#documentation": "Controls whether or not the adapter should automatically update.
"
+ }
+ },
+ "Tags": {
+ "target": "com.amazonaws.textract#TagMap",
+ "traits": {
+ "smithy.api#documentation": "A list of tags to be added to the adapter.
"
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#input": {}
+ }
+ },
+ "com.amazonaws.textract#CreateAdapterResponse": {
+ "type": "structure",
+ "members": {
+ "AdapterId": {
+ "target": "com.amazonaws.textract#AdapterId",
+ "traits": {
+ "smithy.api#documentation": "A string containing the unique ID for the adapter that has been created.
"
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#output": {}
+ }
+ },
+ "com.amazonaws.textract#CreateAdapterVersion": {
+ "type": "operation",
+ "input": {
+ "target": "com.amazonaws.textract#CreateAdapterVersionRequest"
+ },
+ "output": {
+ "target": "com.amazonaws.textract#CreateAdapterVersionResponse"
+ },
+ "errors": [
+ {
+ "target": "com.amazonaws.textract#AccessDeniedException"
+ },
+ {
+ "target": "com.amazonaws.textract#ConflictException"
+ },
+ {
+ "target": "com.amazonaws.textract#IdempotentParameterMismatchException"
+ },
+ {
+ "target": "com.amazonaws.textract#InternalServerError"
+ },
+ {
+ "target": "com.amazonaws.textract#InvalidKMSKeyException"
+ },
+ {
+ "target": "com.amazonaws.textract#InvalidParameterException"
+ },
+ {
+ "target": "com.amazonaws.textract#InvalidS3ObjectException"
+ },
+ {
+ "target": "com.amazonaws.textract#LimitExceededException"
+ },
+ {
+ "target": "com.amazonaws.textract#ProvisionedThroughputExceededException"
+ },
+ {
+ "target": "com.amazonaws.textract#ResourceNotFoundException"
+ },
+ {
+ "target": "com.amazonaws.textract#ServiceQuotaExceededException"
+ },
+ {
+ "target": "com.amazonaws.textract#ThrottlingException"
+ },
+ {
+ "target": "com.amazonaws.textract#ValidationException"
+ }
+ ],
+ "traits": {
+ "smithy.api#documentation": "Creates a new version of an adapter. Operates on a provided AdapterId and a specified \n dataset provided via the DatasetConfig argument. Requires that you \n specify an Amazon S3 bucket with the OutputConfig argument. You can provide an optional KMSKeyId, \n an optional ClientRequestToken, and optional tags.
",
+ "smithy.api#idempotent": {}
+ }
+ },
+ "com.amazonaws.textract#CreateAdapterVersionRequest": {
+ "type": "structure",
+ "members": {
+ "AdapterId": {
+ "target": "com.amazonaws.textract#AdapterId",
+ "traits": {
+ "smithy.api#documentation": "A string containing a unique ID for the adapter that will receive a new version.
",
+ "smithy.api#required": {}
+ }
+ },
+ "ClientRequestToken": {
+ "target": "com.amazonaws.textract#ClientRequestToken",
+ "traits": {
+ "smithy.api#documentation": "Idempotent token is used to recognize the request. If the same token is used with multiple \n CreateAdapterVersion requests, the same session is returned. \n This token is employed to avoid unintentionally creating the same session multiple times.
",
+ "smithy.api#idempotencyToken": {}
+ }
+ },
+ "DatasetConfig": {
+ "target": "com.amazonaws.textract#AdapterVersionDatasetConfig",
+ "traits": {
+ "smithy.api#documentation": "Specifies a dataset used to train a new adapter version. Takes a ManifestS3Object as the\n value.
",
+ "smithy.api#required": {}
+ }
+ },
+ "KMSKeyId": {
+ "target": "com.amazonaws.textract#KMSKeyId",
+ "traits": {
+ "smithy.api#documentation": "The identifier for your AWS Key Management Service key (AWS KMS key). Used to encrypt your documents.
"
+ }
+ },
+ "OutputConfig": {
+ "target": "com.amazonaws.textract#OutputConfig",
+ "traits": {
+ "smithy.api#required": {}
+ }
+ },
+ "Tags": {
+ "target": "com.amazonaws.textract#TagMap",
+ "traits": {
+ "smithy.api#documentation": "A set of tags (key-value pairs) that you want to attach to the adapter version.
"
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#input": {}
+ }
+ },
+ "com.amazonaws.textract#CreateAdapterVersionResponse": {
+ "type": "structure",
+ "members": {
+ "AdapterId": {
+ "target": "com.amazonaws.textract#AdapterId",
+ "traits": {
+ "smithy.api#documentation": "A string containing the unique ID for the adapter that has received a new version.
"
+ }
+ },
+ "AdapterVersion": {
+ "target": "com.amazonaws.textract#AdapterVersion",
+ "traits": {
+ "smithy.api#documentation": "A string describing the new version of the adapter.
"
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#output": {}
+ }
+ },
+ "com.amazonaws.textract#DateTime": {
+ "type": "timestamp"
+ },
+ "com.amazonaws.textract#DeleteAdapter": {
+ "type": "operation",
+ "input": {
+ "target": "com.amazonaws.textract#DeleteAdapterRequest"
+ },
+ "output": {
+ "target": "com.amazonaws.textract#DeleteAdapterResponse"
+ },
+ "errors": [
+ {
+ "target": "com.amazonaws.textract#AccessDeniedException"
+ },
+ {
+ "target": "com.amazonaws.textract#ConflictException"
+ },
+ {
+ "target": "com.amazonaws.textract#InternalServerError"
+ },
+ {
+ "target": "com.amazonaws.textract#InvalidParameterException"
+ },
+ {
+ "target": "com.amazonaws.textract#ProvisionedThroughputExceededException"
+ },
+ {
+ "target": "com.amazonaws.textract#ResourceNotFoundException"
+ },
+ {
+ "target": "com.amazonaws.textract#ThrottlingException"
+ },
+ {
+ "target": "com.amazonaws.textract#ValidationException"
+ }
+ ],
+ "traits": {
+ "smithy.api#documentation": "Deletes an Amazon Textract adapter. Takes an AdapterId and deletes the adapter specified by the ID.
",
+ "smithy.api#idempotent": {}
+ }
+ },
+ "com.amazonaws.textract#DeleteAdapterRequest": {
+ "type": "structure",
+ "members": {
+ "AdapterId": {
+ "target": "com.amazonaws.textract#AdapterId",
+ "traits": {
+ "smithy.api#documentation": "A string containing a unique ID for the adapter to be deleted.
",
+ "smithy.api#required": {}
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#input": {}
+ }
+ },
+ "com.amazonaws.textract#DeleteAdapterResponse": {
+ "type": "structure",
+ "members": {},
+ "traits": {
+ "smithy.api#output": {}
+ }
+ },
+ "com.amazonaws.textract#DeleteAdapterVersion": {
+ "type": "operation",
+ "input": {
+ "target": "com.amazonaws.textract#DeleteAdapterVersionRequest"
+ },
+ "output": {
+ "target": "com.amazonaws.textract#DeleteAdapterVersionResponse"
+ },
+ "errors": [
+ {
+ "target": "com.amazonaws.textract#AccessDeniedException"
+ },
+ {
+ "target": "com.amazonaws.textract#ConflictException"
+ },
+ {
+ "target": "com.amazonaws.textract#InternalServerError"
+ },
+ {
+ "target": "com.amazonaws.textract#InvalidParameterException"
+ },
+ {
+ "target": "com.amazonaws.textract#ProvisionedThroughputExceededException"
+ },
+ {
+ "target": "com.amazonaws.textract#ResourceNotFoundException"
+ },
+ {
+ "target": "com.amazonaws.textract#ThrottlingException"
+ },
+ {
+ "target": "com.amazonaws.textract#ValidationException"
+ }
+ ],
+ "traits": {
+ "smithy.api#documentation": "Deletes an Amazon Textract adapter version. Requires that you specify both an AdapterId and a \n AdapterVersion. Deletes the adapter version specified by the AdapterId and the AdapterVersion.
",
+ "smithy.api#idempotent": {}
+ }
+ },
+ "com.amazonaws.textract#DeleteAdapterVersionRequest": {
+ "type": "structure",
+ "members": {
+ "AdapterId": {
+ "target": "com.amazonaws.textract#AdapterId",
+ "traits": {
+ "smithy.api#documentation": "A string containing a unique ID for the adapter version that will be deleted.
",
+ "smithy.api#required": {}
+ }
+ },
+ "AdapterVersion": {
+ "target": "com.amazonaws.textract#AdapterVersion",
+ "traits": {
+ "smithy.api#documentation": "Specifies the adapter version to be deleted.
",
+ "smithy.api#required": {}
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#input": {}
+ }
+ },
+ "com.amazonaws.textract#DeleteAdapterVersionResponse": {
+ "type": "structure",
+ "members": {},
+ "traits": {
+ "smithy.api#output": {}
+ }
+ },
+ "com.amazonaws.textract#DetectDocumentText": {
+ "type": "operation",
+ "input": {
+ "target": "com.amazonaws.textract#DetectDocumentTextRequest"
+ },
+ "output": {
+ "target": "com.amazonaws.textract#DetectDocumentTextResponse"
+ },
+ "errors": [
+ {
+ "target": "com.amazonaws.textract#AccessDeniedException"
+ },
+ {
+ "target": "com.amazonaws.textract#BadDocumentException"
+ },
+ {
+ "target": "com.amazonaws.textract#DocumentTooLargeException"
+ },
+ {
+ "target": "com.amazonaws.textract#InternalServerError"
+ },
+ {
+ "target": "com.amazonaws.textract#InvalidParameterException"
+ },
+ {
+ "target": "com.amazonaws.textract#InvalidS3ObjectException"
+ },
+ {
+ "target": "com.amazonaws.textract#ProvisionedThroughputExceededException"
+ },
+ {
+ "target": "com.amazonaws.textract#ThrottlingException"
+ },
+ {
+ "target": "com.amazonaws.textract#UnsupportedDocumentException"
+ }
+ ],
+ "traits": {
+ "smithy.api#documentation": "Detects text in the input document. Amazon Textract can detect lines of text and the\n words that make up a line of text. The input document must be in one of the following image\n formats: JPEG, PNG, PDF, or TIFF. DetectDocumentText
returns the detected\n text in an array of Block objects.
\n Each document page has as an associated Block
of type PAGE. Each PAGE Block
object\n is the parent of LINE Block
objects that represent the lines of detected text on a page. A LINE Block
object is\n a parent for each word that makes up the line. Words are represented by Block
objects of type WORD.
\n \n DetectDocumentText
is a synchronous operation. To analyze documents \n asynchronously, use StartDocumentTextDetection .
\n For more information, see Document Text Detection .
"
+ }
+ },
+ "com.amazonaws.textract#DetectDocumentTextRequest": {
+ "type": "structure",
+ "members": {
+ "Document": {
+ "target": "com.amazonaws.textract#Document",
+ "traits": {
+ "smithy.api#documentation": "The input document as base64-encoded bytes or an Amazon S3 object. If you use the AWS CLI\n to call Amazon Textract operations, you can't pass image bytes. The document must be an image \n in JPEG or PNG format.
\n If you're using an AWS SDK to call Amazon Textract, you might not need to base64-encode\n image bytes that are passed using the Bytes
field.
",
+ "smithy.api#required": {}
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#input": {}
}
},
"com.amazonaws.textract#DetectDocumentTextResponse": {
@@ -958,6 +1654,35 @@
"com.amazonaws.textract#ErrorCode": {
"type": "string"
},
+ "com.amazonaws.textract#EvaluationMetric": {
+ "type": "structure",
+ "members": {
+ "F1Score": {
+ "target": "com.amazonaws.textract#Float",
+ "traits": {
+ "smithy.api#default": 0,
+ "smithy.api#documentation": "The F1 score for an adapter version.
"
+ }
+ },
+ "Precision": {
+ "target": "com.amazonaws.textract#Float",
+ "traits": {
+ "smithy.api#default": 0,
+ "smithy.api#documentation": "The Precision score for an adapter version.
"
+ }
+ },
+ "Recall": {
+ "target": "com.amazonaws.textract#Float",
+ "traits": {
+ "smithy.api#default": 0,
+ "smithy.api#documentation": "The Recall score for an adapter version.
"
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#documentation": "The evaluation metrics (F1 score, Precision, and Recall) for an adapter version.
"
+ }
+ },
"com.amazonaws.textract#ExpenseCurrency": {
"type": "structure",
"members": {
@@ -1217,24 +1942,252 @@
}
}
},
- "com.amazonaws.textract#Geometry": {
+ "com.amazonaws.textract#Geometry": {
+ "type": "structure",
+ "members": {
+ "BoundingBox": {
+ "target": "com.amazonaws.textract#BoundingBox",
+ "traits": {
+ "smithy.api#documentation": "An axis-aligned coarse representation of the location of the recognized item on the\n document page.
"
+ }
+ },
+ "Polygon": {
+ "target": "com.amazonaws.textract#Polygon",
+ "traits": {
+ "smithy.api#documentation": "Within the bounding box, a fine-grained polygon around the recognized item.
"
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#documentation": "Information about where the following items are located on a document page: detected\n page, text, key-value pairs, tables, table cells, and selection elements.
"
+ }
+ },
+ "com.amazonaws.textract#GetAdapter": {
+ "type": "operation",
+ "input": {
+ "target": "com.amazonaws.textract#GetAdapterRequest"
+ },
+ "output": {
+ "target": "com.amazonaws.textract#GetAdapterResponse"
+ },
+ "errors": [
+ {
+ "target": "com.amazonaws.textract#AccessDeniedException"
+ },
+ {
+ "target": "com.amazonaws.textract#InternalServerError"
+ },
+ {
+ "target": "com.amazonaws.textract#InvalidParameterException"
+ },
+ {
+ "target": "com.amazonaws.textract#ProvisionedThroughputExceededException"
+ },
+ {
+ "target": "com.amazonaws.textract#ResourceNotFoundException"
+ },
+ {
+ "target": "com.amazonaws.textract#ThrottlingException"
+ },
+ {
+ "target": "com.amazonaws.textract#ValidationException"
+ }
+ ],
+ "traits": {
+ "smithy.api#documentation": "Gets configuration information for an adapter specified by an AdapterId, returning information on AdapterName, Description,\n CreationTime, AutoUpdate status, and FeatureTypes.
"
+ }
+ },
+ "com.amazonaws.textract#GetAdapterRequest": {
+ "type": "structure",
+ "members": {
+ "AdapterId": {
+ "target": "com.amazonaws.textract#AdapterId",
+ "traits": {
+ "smithy.api#documentation": "A string containing a unique ID for the adapter.
",
+ "smithy.api#required": {}
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#input": {}
+ }
+ },
+ "com.amazonaws.textract#GetAdapterResponse": {
+ "type": "structure",
+ "members": {
+ "AdapterId": {
+ "target": "com.amazonaws.textract#AdapterId",
+ "traits": {
+ "smithy.api#documentation": "A string identifying the adapter that information has been retrieved for.
"
+ }
+ },
+ "AdapterName": {
+ "target": "com.amazonaws.textract#AdapterName",
+ "traits": {
+ "smithy.api#documentation": "The name of the requested adapter.
"
+ }
+ },
+ "CreationTime": {
+ "target": "com.amazonaws.textract#DateTime",
+ "traits": {
+ "smithy.api#documentation": "The date and time the requested adapter was created at.
"
+ }
+ },
+ "Description": {
+ "target": "com.amazonaws.textract#AdapterDescription",
+ "traits": {
+ "smithy.api#documentation": "The description for the requested adapter.
"
+ }
+ },
+ "FeatureTypes": {
+ "target": "com.amazonaws.textract#FeatureTypes",
+ "traits": {
+ "smithy.api#documentation": "List of the targeted feature types for the requested adapter.
"
+ }
+ },
+ "AutoUpdate": {
+ "target": "com.amazonaws.textract#AutoUpdate",
+ "traits": {
+ "smithy.api#documentation": "Binary value indicating if the adapter is being automatically updated or not.
"
+ }
+ },
+ "Tags": {
+ "target": "com.amazonaws.textract#TagMap",
+ "traits": {
+ "smithy.api#documentation": "A set of tags (key-value pairs) associated with the adapter that has been retrieved.
"
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#output": {}
+ }
+ },
+ "com.amazonaws.textract#GetAdapterVersion": {
+ "type": "operation",
+ "input": {
+ "target": "com.amazonaws.textract#GetAdapterVersionRequest"
+ },
+ "output": {
+ "target": "com.amazonaws.textract#GetAdapterVersionResponse"
+ },
+ "errors": [
+ {
+ "target": "com.amazonaws.textract#AccessDeniedException"
+ },
+ {
+ "target": "com.amazonaws.textract#InternalServerError"
+ },
+ {
+ "target": "com.amazonaws.textract#InvalidParameterException"
+ },
+ {
+ "target": "com.amazonaws.textract#ProvisionedThroughputExceededException"
+ },
+ {
+ "target": "com.amazonaws.textract#ResourceNotFoundException"
+ },
+ {
+ "target": "com.amazonaws.textract#ThrottlingException"
+ },
+ {
+ "target": "com.amazonaws.textract#ValidationException"
+ }
+ ],
+ "traits": {
+ "smithy.api#documentation": "Gets configuration information for the specified adapter version, including: \n AdapterId, AdapterVersion, FeatureTypes, Status, StatusMessage, DatasetConfig, \n KMSKeyId, OutputConfig, Tags and EvaluationMetrics.
"
+ }
+ },
+ "com.amazonaws.textract#GetAdapterVersionRequest": {
+ "type": "structure",
+ "members": {
+ "AdapterId": {
+ "target": "com.amazonaws.textract#AdapterId",
+ "traits": {
+ "smithy.api#documentation": "A string specifying a unique ID for the adapter version you want to retrieve information for.
",
+ "smithy.api#required": {}
+ }
+ },
+ "AdapterVersion": {
+ "target": "com.amazonaws.textract#AdapterVersion",
+ "traits": {
+ "smithy.api#documentation": "A string specifying the adapter version you want to retrieve information for.
",
+ "smithy.api#required": {}
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#input": {}
+ }
+ },
+ "com.amazonaws.textract#GetAdapterVersionResponse": {
"type": "structure",
"members": {
- "BoundingBox": {
- "target": "com.amazonaws.textract#BoundingBox",
+ "AdapterId": {
+ "target": "com.amazonaws.textract#AdapterId",
"traits": {
- "smithy.api#documentation": "An axis-aligned coarse representation of the location of the recognized item on the\n document page.
"
+ "smithy.api#documentation": "A string containing a unique ID for the adapter version being retrieved.
"
}
},
- "Polygon": {
- "target": "com.amazonaws.textract#Polygon",
+ "AdapterVersion": {
+ "target": "com.amazonaws.textract#AdapterVersion",
"traits": {
- "smithy.api#documentation": "Within the bounding box, a fine-grained polygon around the recognized item.
"
+ "smithy.api#documentation": "A string containing the adapter version that has been retrieved.
"
+ }
+ },
+ "CreationTime": {
+ "target": "com.amazonaws.textract#DateTime",
+ "traits": {
+ "smithy.api#documentation": "The time that the adapter version was created.
"
+ }
+ },
+ "FeatureTypes": {
+ "target": "com.amazonaws.textract#FeatureTypes",
+ "traits": {
+ "smithy.api#documentation": "List of the targeted feature types for the requested adapter version.
"
+ }
+ },
+ "Status": {
+ "target": "com.amazonaws.textract#AdapterVersionStatus",
+ "traits": {
+ "smithy.api#documentation": "The status of the adapter version that has been requested.
"
+ }
+ },
+ "StatusMessage": {
+ "target": "com.amazonaws.textract#AdapterVersionStatusMessage",
+ "traits": {
+ "smithy.api#documentation": "A message that describes the status of the requested adapter version.
"
+ }
+ },
+ "DatasetConfig": {
+ "target": "com.amazonaws.textract#AdapterVersionDatasetConfig",
+ "traits": {
+ "smithy.api#documentation": "Specifies a dataset used to train a new adapter version. Takes a ManifestS3Objec as the\n value.
"
+ }
+ },
+ "KMSKeyId": {
+ "target": "com.amazonaws.textract#KMSKeyId",
+ "traits": {
+ "smithy.api#documentation": "The identifier for your AWS Key Management Service key (AWS KMS key). Used to encrypt your documents.
"
+ }
+ },
+ "OutputConfig": {
+ "target": "com.amazonaws.textract#OutputConfig"
+ },
+ "EvaluationMetrics": {
+ "target": "com.amazonaws.textract#AdapterVersionEvaluationMetrics",
+ "traits": {
+ "smithy.api#documentation": "The evaluation metrics (F1 score, Precision, and Recall) for the requested version, \n grouped by baseline metrics and adapter version.
"
+ }
+ },
+ "Tags": {
+ "target": "com.amazonaws.textract#TagMap",
+ "traits": {
+ "smithy.api#documentation": "A set of tags (key-value pairs) that are associated with the adapter version.
"
}
}
},
"traits": {
- "smithy.api#documentation": "Information about where the following items are located on a document page: detected\n page, text, key-value pairs, tables, table cells, and selection elements.
"
+ "smithy.api#output": {}
}
},
"com.amazonaws.textract#GetDocumentAnalysis": {
@@ -2336,6 +3289,259 @@
"target": "com.amazonaws.textract#LineItemFields"
}
},
+ "com.amazonaws.textract#ListAdapterVersions": {
+ "type": "operation",
+ "input": {
+ "target": "com.amazonaws.textract#ListAdapterVersionsRequest"
+ },
+ "output": {
+ "target": "com.amazonaws.textract#ListAdapterVersionsResponse"
+ },
+ "errors": [
+ {
+ "target": "com.amazonaws.textract#AccessDeniedException"
+ },
+ {
+ "target": "com.amazonaws.textract#InternalServerError"
+ },
+ {
+ "target": "com.amazonaws.textract#InvalidParameterException"
+ },
+ {
+ "target": "com.amazonaws.textract#ProvisionedThroughputExceededException"
+ },
+ {
+ "target": "com.amazonaws.textract#ResourceNotFoundException"
+ },
+ {
+ "target": "com.amazonaws.textract#ThrottlingException"
+ },
+ {
+ "target": "com.amazonaws.textract#ValidationException"
+ }
+ ],
+ "traits": {
+ "smithy.api#documentation": "List all version of an adapter that meet the specified filtration criteria.
",
+ "smithy.api#paginated": {
+ "inputToken": "NextToken",
+ "outputToken": "NextToken",
+ "items": "AdapterVersions",
+ "pageSize": "MaxResults"
+ }
+ }
+ },
+ "com.amazonaws.textract#ListAdapterVersionsRequest": {
+ "type": "structure",
+ "members": {
+ "AdapterId": {
+ "target": "com.amazonaws.textract#AdapterId",
+ "traits": {
+ "smithy.api#documentation": "A string containing a unique ID for the adapter to match for when listing adapter versions.
"
+ }
+ },
+ "AfterCreationTime": {
+ "target": "com.amazonaws.textract#DateTime",
+ "traits": {
+ "smithy.api#documentation": "Specifies the lower bound for the ListAdapterVersions operation. \n Ensures ListAdapterVersions returns only adapter versions created after the specified creation time.
"
+ }
+ },
+ "BeforeCreationTime": {
+ "target": "com.amazonaws.textract#DateTime",
+ "traits": {
+ "smithy.api#documentation": "Specifies the upper bound for the ListAdapterVersions operation. \n Ensures ListAdapterVersions returns only adapter versions created after the specified creation time.
"
+ }
+ },
+ "MaxResults": {
+ "target": "com.amazonaws.textract#MaxResults",
+ "traits": {
+ "smithy.api#documentation": "The maximum number of results to return when listing adapter versions.
"
+ }
+ },
+ "NextToken": {
+ "target": "com.amazonaws.textract#PaginationToken",
+ "traits": {
+ "smithy.api#documentation": "Identifies the next page of results to return when listing adapter versions.
"
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#input": {}
+ }
+ },
+ "com.amazonaws.textract#ListAdapterVersionsResponse": {
+ "type": "structure",
+ "members": {
+ "AdapterVersions": {
+ "target": "com.amazonaws.textract#AdapterVersionList",
+ "traits": {
+ "smithy.api#documentation": "Adapter versions that match the filtering criteria specified when calling ListAdapters.
"
+ }
+ },
+ "NextToken": {
+ "target": "com.amazonaws.textract#PaginationToken",
+ "traits": {
+ "smithy.api#documentation": "Identifies the next page of results to return when listing adapter versions.
"
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#output": {}
+ }
+ },
+ "com.amazonaws.textract#ListAdapters": {
+ "type": "operation",
+ "input": {
+ "target": "com.amazonaws.textract#ListAdaptersRequest"
+ },
+ "output": {
+ "target": "com.amazonaws.textract#ListAdaptersResponse"
+ },
+ "errors": [
+ {
+ "target": "com.amazonaws.textract#AccessDeniedException"
+ },
+ {
+ "target": "com.amazonaws.textract#InternalServerError"
+ },
+ {
+ "target": "com.amazonaws.textract#InvalidParameterException"
+ },
+ {
+ "target": "com.amazonaws.textract#ProvisionedThroughputExceededException"
+ },
+ {
+ "target": "com.amazonaws.textract#ThrottlingException"
+ },
+ {
+ "target": "com.amazonaws.textract#ValidationException"
+ }
+ ],
+ "traits": {
+ "smithy.api#documentation": "Lists all adapters that match the specified filtration criteria.
",
+ "smithy.api#paginated": {
+ "inputToken": "NextToken",
+ "outputToken": "NextToken",
+ "items": "Adapters",
+ "pageSize": "MaxResults"
+ }
+ }
+ },
+ "com.amazonaws.textract#ListAdaptersRequest": {
+ "type": "structure",
+ "members": {
+ "AfterCreationTime": {
+ "target": "com.amazonaws.textract#DateTime",
+ "traits": {
+ "smithy.api#documentation": "Specifies the lower bound for the ListAdapters operation. \n Ensures ListAdapters returns only adapters created after the specified creation time.
"
+ }
+ },
+ "BeforeCreationTime": {
+ "target": "com.amazonaws.textract#DateTime",
+ "traits": {
+ "smithy.api#documentation": "Specifies the upper bound for the ListAdapters operation. \n Ensures ListAdapters returns only adapters created before the specified creation time.
"
+ }
+ },
+ "MaxResults": {
+ "target": "com.amazonaws.textract#MaxResults",
+ "traits": {
+ "smithy.api#documentation": "The maximum number of results to return when listing adapters.
"
+ }
+ },
+ "NextToken": {
+ "target": "com.amazonaws.textract#PaginationToken",
+ "traits": {
+ "smithy.api#documentation": "Identifies the next page of results to return when listing adapters.
"
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#input": {}
+ }
+ },
+ "com.amazonaws.textract#ListAdaptersResponse": {
+ "type": "structure",
+ "members": {
+ "Adapters": {
+ "target": "com.amazonaws.textract#AdapterList",
+ "traits": {
+ "smithy.api#documentation": "A list of adapters that matches the filtering criteria specified when calling ListAdapters.
"
+ }
+ },
+ "NextToken": {
+ "target": "com.amazonaws.textract#PaginationToken",
+ "traits": {
+ "smithy.api#documentation": "Identifies the next page of results to return when listing adapters.
"
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#output": {}
+ }
+ },
+ "com.amazonaws.textract#ListTagsForResource": {
+ "type": "operation",
+ "input": {
+ "target": "com.amazonaws.textract#ListTagsForResourceRequest"
+ },
+ "output": {
+ "target": "com.amazonaws.textract#ListTagsForResourceResponse"
+ },
+ "errors": [
+ {
+ "target": "com.amazonaws.textract#AccessDeniedException"
+ },
+ {
+ "target": "com.amazonaws.textract#InternalServerError"
+ },
+ {
+ "target": "com.amazonaws.textract#InvalidParameterException"
+ },
+ {
+ "target": "com.amazonaws.textract#ProvisionedThroughputExceededException"
+ },
+ {
+ "target": "com.amazonaws.textract#ResourceNotFoundException"
+ },
+ {
+ "target": "com.amazonaws.textract#ThrottlingException"
+ },
+ {
+ "target": "com.amazonaws.textract#ValidationException"
+ }
+ ],
+ "traits": {
+ "smithy.api#documentation": "Lists all tags for an Amazon Textract resource.
"
+ }
+ },
+ "com.amazonaws.textract#ListTagsForResourceRequest": {
+ "type": "structure",
+ "members": {
+ "ResourceARN": {
+ "target": "com.amazonaws.textract#AmazonResourceName",
+ "traits": {
+ "smithy.api#documentation": "The Amazon Resource Name (ARN) that specifies the resource to list tags for.
",
+ "smithy.api#required": {}
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#input": {}
+ }
+ },
+ "com.amazonaws.textract#ListTagsForResourceResponse": {
+ "type": "structure",
+ "members": {
+ "Tags": {
+ "target": "com.amazonaws.textract#TagMap",
+ "traits": {
+ "smithy.api#documentation": "A set of tags (key-value pairs) that are part of the requested resource.
"
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#output": {}
+ }
+ },
"com.amazonaws.textract#MaxResults": {
"type": "integer",
"traits": {
@@ -2452,7 +3658,7 @@
"traits": {
"smithy.api#length": {
"min": 1,
- "max": 255
+ "max": 1024
},
"smithy.api#pattern": "\\S"
}
@@ -2704,6 +3910,21 @@
}
}
},
+ "com.amazonaws.textract#ResourceNotFoundException": {
+ "type": "structure",
+ "members": {
+ "Message": {
+ "target": "com.amazonaws.textract#String"
+ },
+ "Code": {
+ "target": "com.amazonaws.textract#String"
+ }
+ },
+ "traits": {
+ "smithy.api#documentation": " Returned when an operation tried to access a nonexistent resource.
",
+ "smithy.api#error": "client"
+ }
+ },
"com.amazonaws.textract#RoleArn": {
"type": "string",
"traits": {
@@ -2797,6 +4018,21 @@
}
}
},
+ "com.amazonaws.textract#ServiceQuotaExceededException": {
+ "type": "structure",
+ "members": {
+ "Message": {
+ "target": "com.amazonaws.textract#String"
+ },
+ "Code": {
+ "target": "com.amazonaws.textract#String"
+ }
+ },
+ "traits": {
+ "smithy.api#documentation": "Returned when a request cannot be completed as it would exceed a maximum service quota.
",
+ "smithy.api#error": "client"
+ }
+ },
"com.amazonaws.textract#SignatureDetection": {
"type": "structure",
"members": {
@@ -2945,6 +4181,12 @@
},
"QueriesConfig": {
"target": "com.amazonaws.textract#QueriesConfig"
+ },
+ "AdaptersConfig": {
+ "target": "com.amazonaws.textract#AdaptersConfig",
+ "traits": {
+ "smithy.api#documentation": "Specifies the adapter to be used when analyzing a document.
"
+ }
}
},
"traits": {
@@ -3307,6 +4549,120 @@
"smithy.api#mediaType": "application/json"
}
},
+ "com.amazonaws.textract#TagKey": {
+ "type": "string",
+ "traits": {
+ "smithy.api#length": {
+ "min": 1,
+ "max": 128
+ },
+ "smithy.api#pattern": "^(?!aws:)[\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*$"
+ }
+ },
+ "com.amazonaws.textract#TagKeyList": {
+ "type": "list",
+ "member": {
+ "target": "com.amazonaws.textract#TagKey"
+ },
+ "traits": {
+ "smithy.api#length": {
+ "min": 0,
+ "max": 200
+ }
+ }
+ },
+ "com.amazonaws.textract#TagMap": {
+ "type": "map",
+ "key": {
+ "target": "com.amazonaws.textract#TagKey"
+ },
+ "value": {
+ "target": "com.amazonaws.textract#TagValue"
+ },
+ "traits": {
+ "smithy.api#length": {
+ "min": 0,
+ "max": 200
+ }
+ }
+ },
+ "com.amazonaws.textract#TagResource": {
+ "type": "operation",
+ "input": {
+ "target": "com.amazonaws.textract#TagResourceRequest"
+ },
+ "output": {
+ "target": "com.amazonaws.textract#TagResourceResponse"
+ },
+ "errors": [
+ {
+ "target": "com.amazonaws.textract#AccessDeniedException"
+ },
+ {
+ "target": "com.amazonaws.textract#InternalServerError"
+ },
+ {
+ "target": "com.amazonaws.textract#InvalidParameterException"
+ },
+ {
+ "target": "com.amazonaws.textract#ProvisionedThroughputExceededException"
+ },
+ {
+ "target": "com.amazonaws.textract#ResourceNotFoundException"
+ },
+ {
+ "target": "com.amazonaws.textract#ServiceQuotaExceededException"
+ },
+ {
+ "target": "com.amazonaws.textract#ThrottlingException"
+ },
+ {
+ "target": "com.amazonaws.textract#ValidationException"
+ }
+ ],
+ "traits": {
+ "smithy.api#documentation": "Adds one or more tags to the specified resource.
"
+ }
+ },
+ "com.amazonaws.textract#TagResourceRequest": {
+ "type": "structure",
+ "members": {
+ "ResourceARN": {
+ "target": "com.amazonaws.textract#AmazonResourceName",
+ "traits": {
+ "smithy.api#documentation": "The Amazon Resource Name (ARN) that specifies the resource to be tagged.
",
+ "smithy.api#required": {}
+ }
+ },
+ "Tags": {
+ "target": "com.amazonaws.textract#TagMap",
+ "traits": {
+ "smithy.api#documentation": "A set of tags (key-value pairs) that you want to assign to the resource.
",
+ "smithy.api#required": {}
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#input": {}
+ }
+ },
+ "com.amazonaws.textract#TagResourceResponse": {
+ "type": "structure",
+ "members": {},
+ "traits": {
+ "smithy.api#output": {}
+ }
+ },
+ "com.amazonaws.textract#TagValue": {
+ "type": "string",
+ "traits": {
+ "smithy.api#length": {
+ "min": 0,
+ "max": 256
+ },
+ "smithy.api#pattern": "^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
+ }
+ },
"com.amazonaws.textract#TextType": {
"type": "enum",
"members": {
@@ -3337,9 +4693,27 @@
{
"target": "com.amazonaws.textract#AnalyzeID"
},
+ {
+ "target": "com.amazonaws.textract#CreateAdapter"
+ },
+ {
+ "target": "com.amazonaws.textract#CreateAdapterVersion"
+ },
+ {
+ "target": "com.amazonaws.textract#DeleteAdapter"
+ },
+ {
+ "target": "com.amazonaws.textract#DeleteAdapterVersion"
+ },
{
"target": "com.amazonaws.textract#DetectDocumentText"
},
+ {
+ "target": "com.amazonaws.textract#GetAdapter"
+ },
+ {
+ "target": "com.amazonaws.textract#GetAdapterVersion"
+ },
{
"target": "com.amazonaws.textract#GetDocumentAnalysis"
},
@@ -3355,6 +4729,15 @@
{
"target": "com.amazonaws.textract#GetLendingAnalysisSummary"
},
+ {
+ "target": "com.amazonaws.textract#ListAdapters"
+ },
+ {
+ "target": "com.amazonaws.textract#ListAdapterVersions"
+ },
+ {
+ "target": "com.amazonaws.textract#ListTagsForResource"
+ },
{
"target": "com.amazonaws.textract#StartDocumentAnalysis"
},
@@ -3366,6 +4749,15 @@
},
{
"target": "com.amazonaws.textract#StartLendingAnalysis"
+ },
+ {
+ "target": "com.amazonaws.textract#TagResource"
+ },
+ {
+ "target": "com.amazonaws.textract#UntagResource"
+ },
+ {
+ "target": "com.amazonaws.textract#UpdateAdapter"
}
],
"traits": {
@@ -4310,6 +5702,200 @@
"smithy.api#error": "client"
}
},
+ "com.amazonaws.textract#UntagResource": {
+ "type": "operation",
+ "input": {
+ "target": "com.amazonaws.textract#UntagResourceRequest"
+ },
+ "output": {
+ "target": "com.amazonaws.textract#UntagResourceResponse"
+ },
+ "errors": [
+ {
+ "target": "com.amazonaws.textract#AccessDeniedException"
+ },
+ {
+ "target": "com.amazonaws.textract#InternalServerError"
+ },
+ {
+ "target": "com.amazonaws.textract#InvalidParameterException"
+ },
+ {
+ "target": "com.amazonaws.textract#ProvisionedThroughputExceededException"
+ },
+ {
+ "target": "com.amazonaws.textract#ResourceNotFoundException"
+ },
+ {
+ "target": "com.amazonaws.textract#ThrottlingException"
+ },
+ {
+ "target": "com.amazonaws.textract#ValidationException"
+ }
+ ],
+ "traits": {
+ "smithy.api#documentation": "Removes any tags with the specified keys from the specified resource.
"
+ }
+ },
+ "com.amazonaws.textract#UntagResourceRequest": {
+ "type": "structure",
+ "members": {
+ "ResourceARN": {
+ "target": "com.amazonaws.textract#AmazonResourceName",
+ "traits": {
+ "smithy.api#documentation": "The Amazon Resource Name (ARN) that specifies the resource to be untagged.
",
+ "smithy.api#required": {}
+ }
+ },
+ "TagKeys": {
+ "target": "com.amazonaws.textract#TagKeyList",
+ "traits": {
+ "smithy.api#documentation": "Specifies the tags to be removed from the resource specified by the ResourceARN.
",
+ "smithy.api#required": {}
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#input": {}
+ }
+ },
+ "com.amazonaws.textract#UntagResourceResponse": {
+ "type": "structure",
+ "members": {},
+ "traits": {
+ "smithy.api#output": {}
+ }
+ },
+ "com.amazonaws.textract#UpdateAdapter": {
+ "type": "operation",
+ "input": {
+ "target": "com.amazonaws.textract#UpdateAdapterRequest"
+ },
+ "output": {
+ "target": "com.amazonaws.textract#UpdateAdapterResponse"
+ },
+ "errors": [
+ {
+ "target": "com.amazonaws.textract#AccessDeniedException"
+ },
+ {
+ "target": "com.amazonaws.textract#ConflictException"
+ },
+ {
+ "target": "com.amazonaws.textract#InternalServerError"
+ },
+ {
+ "target": "com.amazonaws.textract#InvalidParameterException"
+ },
+ {
+ "target": "com.amazonaws.textract#ProvisionedThroughputExceededException"
+ },
+ {
+ "target": "com.amazonaws.textract#ResourceNotFoundException"
+ },
+ {
+ "target": "com.amazonaws.textract#ThrottlingException"
+ },
+ {
+ "target": "com.amazonaws.textract#ValidationException"
+ }
+ ],
+ "traits": {
+ "smithy.api#documentation": "Update the configuration for an adapter. FeatureTypes configurations cannot be updated.\n At least one new parameter must be specified as an argument.
"
+ }
+ },
+ "com.amazonaws.textract#UpdateAdapterRequest": {
+ "type": "structure",
+ "members": {
+ "AdapterId": {
+ "target": "com.amazonaws.textract#AdapterId",
+ "traits": {
+ "smithy.api#documentation": "A string containing a unique ID for the adapter that will be updated.
",
+ "smithy.api#required": {}
+ }
+ },
+ "Description": {
+ "target": "com.amazonaws.textract#AdapterDescription",
+ "traits": {
+ "smithy.api#documentation": "The new description to be applied to the adapter.
"
+ }
+ },
+ "AdapterName": {
+ "target": "com.amazonaws.textract#AdapterName",
+ "traits": {
+ "smithy.api#documentation": "The new name to be applied to the adapter.
"
+ }
+ },
+ "AutoUpdate": {
+ "target": "com.amazonaws.textract#AutoUpdate",
+ "traits": {
+ "smithy.api#documentation": "The new auto-update status to be applied to the adapter.
"
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#input": {}
+ }
+ },
+ "com.amazonaws.textract#UpdateAdapterResponse": {
+ "type": "structure",
+ "members": {
+ "AdapterId": {
+ "target": "com.amazonaws.textract#AdapterId",
+ "traits": {
+ "smithy.api#documentation": "A string containing a unique ID for the adapter that has been updated.
"
+ }
+ },
+ "AdapterName": {
+ "target": "com.amazonaws.textract#AdapterName",
+ "traits": {
+ "smithy.api#documentation": "A string containing the name of the adapter that has been updated.
"
+ }
+ },
+ "CreationTime": {
+ "target": "com.amazonaws.textract#DateTime",
+ "traits": {
+ "smithy.api#documentation": "An object specifying the creation time of the the adapter that has been updated.
"
+ }
+ },
+ "Description": {
+ "target": "com.amazonaws.textract#AdapterDescription",
+ "traits": {
+ "smithy.api#documentation": "A string containing the description of the adapter that has been updated.
"
+ }
+ },
+ "FeatureTypes": {
+ "target": "com.amazonaws.textract#FeatureTypes",
+ "traits": {
+ "smithy.api#documentation": "List of the targeted feature types for the updated adapter.
"
+ }
+ },
+ "AutoUpdate": {
+ "target": "com.amazonaws.textract#AutoUpdate",
+ "traits": {
+ "smithy.api#documentation": "The auto-update status of the adapter that has been updated.
"
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#output": {}
+ }
+ },
+ "com.amazonaws.textract#ValidationException": {
+ "type": "structure",
+ "members": {
+ "Message": {
+ "target": "com.amazonaws.textract#String"
+ },
+ "Code": {
+ "target": "com.amazonaws.textract#String"
+ }
+ },
+ "traits": {
+ "smithy.api#documentation": " Indicates that a request was not valid. Check request for proper formatting.
",
+ "smithy.api#error": "client"
+ }
+ },
"com.amazonaws.textract#ValueType": {
"type": "enum",
"members": {
From 87763f3b71b3bdc7e07cafbbcf6be210e137d1e2 Mon Sep 17 00:00:00 2001
From: awstools
Date: Thu, 12 Oct 2023 18:24:09 +0000
Subject: [PATCH 29/35] feat(client-rekognition): Amazon Rekognition introduces
support for Custom Moderation. This allows the enhancement of accuracy for
detect moderation labels operations by creating custom adapters tuned on
customer data.
---
.../src/commands/CopyProjectVersionCommand.ts | 17 +-
.../src/commands/CreateDatasetCommand.ts | 13 +-
.../src/commands/CreateProjectCommand.ts | 19 +-
.../commands/CreateProjectVersionCommand.ts | 51 ++-
.../commands/CreateStreamProcessorCommand.ts | 8 +-
.../src/commands/DeleteDatasetCommand.ts | 13 +-
.../src/commands/DeleteProjectCommand.ts | 4 +-
.../commands/DeleteProjectPolicyCommand.ts | 5 +-
.../commands/DeleteProjectVersionCommand.ts | 13 +-
.../src/commands/DescribeDatasetCommand.ts | 5 +-
.../DescribeProjectVersionsCommand.ts | 16 +-
.../src/commands/DescribeProjectsCommand.ts | 7 +-
.../src/commands/DetectCustomLabelsCommand.ts | 13 +-
.../commands/DetectModerationLabelsCommand.ts | 12 +
.../DistributeDatasetEntriesCommand.ts | 5 +-
.../src/commands/ListDatasetEntriesCommand.ts | 5 +-
.../src/commands/ListDatasetLabelsCommand.ts | 5 +-
.../commands/ListProjectPoliciesCommand.ts | 5 +-
.../src/commands/PutProjectPolicyCommand.ts | 18 +-
.../src/commands/SearchUsersByImageCommand.ts | 3 +-
.../StartCelebrityRecognitionCommand.ts | 11 +-
.../commands/StartContentModerationCommand.ts | 8 +-
.../src/commands/StartFaceDetectionCommand.ts | 8 +-
.../src/commands/StartFaceSearchCommand.ts | 8 +-
.../commands/StartLabelDetectionCommand.ts | 8 +-
.../commands/StartPersonTrackingCommand.ts | 8 +-
.../commands/StartProjectVersionCommand.ts | 18 +-
.../commands/StartSegmentDetectionCommand.ts | 8 +-
.../src/commands/StartTextDetectionCommand.ts | 8 +-
.../src/commands/StopProjectVersionCommand.ts | 10 +-
.../commands/UpdateDatasetEntriesCommand.ts | 13 +-
.../client-rekognition/src/models/models_0.ts | 393 +++++++++---------
.../client-rekognition/src/models/models_1.ts | 144 ++++++-
.../src/protocols/Aws_json1_1.ts | 86 +++-
.../sdk-codegen/aws-models/rekognition.json | 343 +++++++++++----
35 files changed, 911 insertions(+), 400 deletions(-)
diff --git a/clients/client-rekognition/src/commands/CopyProjectVersionCommand.ts b/clients/client-rekognition/src/commands/CopyProjectVersionCommand.ts
index 6c7103544dbcc..291a4fadde8bd 100644
--- a/clients/client-rekognition/src/commands/CopyProjectVersionCommand.ts
+++ b/clients/client-rekognition/src/commands/CopyProjectVersionCommand.ts
@@ -37,7 +37,10 @@ export interface CopyProjectVersionCommandOutput extends CopyProjectVersionRespo
/**
* @public
- * Copies a version of an Amazon Rekognition Custom Labels model from a source project to a destination project. The source and
+ *
+ * This operation applies only to Amazon Rekognition Custom Labels.
+ *
+ *
Copies a version of an Amazon Rekognition Custom Labels model from a source project to a destination project. The source and
* destination projects can be in different AWS accounts but must be in the same AWS Region.
* You can't copy a model to another AWS service.
*
@@ -51,7 +54,9 @@ export interface CopyProjectVersionCommandOutput extends CopyProjectVersionRespo
*
* If you are copying a model version to a project in the same AWS account, you don't need to create a project policy.
*
- * To copy a model, the destination project, source project, and source model version must already exist.
+ * Copying project versions is supported only for Custom Labels models.
+ * To copy a model, the destination project, source project, and source model version
+ * must already exist.
*
* Copying a model version takes a while to complete. To get the current status, call DescribeProjectVersions and check the value of Status
in the
* ProjectVersionDescription object. The copy operation has finished when
@@ -102,9 +107,11 @@ export interface CopyProjectVersionCommandOutput extends CopyProjectVersionRespo
* operation again.
*
* @throws {@link LimitExceededException} (client fault)
- * An Amazon Rekognition service limit was exceeded. For example, if you start too many Amazon Rekognition Video jobs concurrently, calls to start operations
- * (StartLabelDetection
, for example) will raise a LimitExceededException
exception (HTTP status code: 400) until
- * the number of concurrently running jobs is below the Amazon Rekognition service limit.
+ * An Amazon Rekognition service limit was exceeded. For example, if you start too many jobs
+ * concurrently, subsequent calls to start operations (ex:
+ * StartLabelDetection
) will raise a LimitExceededException
+ * exception (HTTP status code: 400) until the number of concurrently running jobs is below
+ * the Amazon Rekognition service limit.
*
* @throws {@link ProvisionedThroughputExceededException} (client fault)
* The number of requests exceeded your throughput limit. If you want to increase this
diff --git a/clients/client-rekognition/src/commands/CreateDatasetCommand.ts b/clients/client-rekognition/src/commands/CreateDatasetCommand.ts
index c899b84a23300..c1809d2aa1917 100644
--- a/clients/client-rekognition/src/commands/CreateDatasetCommand.ts
+++ b/clients/client-rekognition/src/commands/CreateDatasetCommand.ts
@@ -37,7 +37,10 @@ export interface CreateDatasetCommandOutput extends CreateDatasetResponse, __Met
/**
* @public
- *
Creates a new Amazon Rekognition Custom Labels dataset. You can create a dataset by using
+ *
+ * This operation applies only to Amazon Rekognition Custom Labels.
+ *
+ *
Creates a new Amazon Rekognition Custom Labels dataset. You can create a dataset by using
* an Amazon Sagemaker format manifest file or by copying an existing Amazon Rekognition Custom Labels dataset.
* To create a training dataset for a project, specify TRAIN
for the value of
* DatasetType
. To create the test dataset for a project,
@@ -104,9 +107,11 @@ export interface CreateDatasetCommandOutput extends CreateDatasetResponse, __Met
*
Amazon Rekognition is unable to access the S3 object specified in the request.
*
* @throws {@link LimitExceededException} (client fault)
- * An Amazon Rekognition service limit was exceeded. For example, if you start too many Amazon Rekognition Video jobs concurrently, calls to start operations
- * (StartLabelDetection
, for example) will raise a LimitExceededException
exception (HTTP status code: 400) until
- * the number of concurrently running jobs is below the Amazon Rekognition service limit.
+ * An Amazon Rekognition service limit was exceeded. For example, if you start too many jobs
+ * concurrently, subsequent calls to start operations (ex:
+ * StartLabelDetection
) will raise a LimitExceededException
+ * exception (HTTP status code: 400) until the number of concurrently running jobs is below
+ * the Amazon Rekognition service limit.
*
* @throws {@link ProvisionedThroughputExceededException} (client fault)
* The number of requests exceeded your throughput limit. If you want to increase this
diff --git a/clients/client-rekognition/src/commands/CreateProjectCommand.ts b/clients/client-rekognition/src/commands/CreateProjectCommand.ts
index 678ba15c6898f..4cd353d3763e7 100644
--- a/clients/client-rekognition/src/commands/CreateProjectCommand.ts
+++ b/clients/client-rekognition/src/commands/CreateProjectCommand.ts
@@ -37,9 +37,12 @@ export interface CreateProjectCommandOutput extends CreateProjectResponse, __Met
/**
* @public
- *
Creates a new Amazon Rekognition Custom Labels project. A project is a group of resources (datasets, model versions)
- * that you use to create and manage Amazon Rekognition Custom Labels models.
- * This operation requires permissions to perform the rekognition:CreateProject
action.
+ * Creates a new Amazon Rekognition project. A project is a group of resources (datasets, model
+ * versions) that you use to create and manage a Amazon Rekognition Custom Labels Model or custom adapter. You can
+ * specify a feature to create the project with, if no feature is specified then Custom Labels
+ * is used by default. For adapters, you can also choose whether or not to have the project
+ * auto update by using the AutoUpdate argument. This operation requires permissions to
+ * perform the rekognition:CreateProject
action.
* @example
* Use a bare-bones client and the command you need to make an API call.
* ```javascript
@@ -48,6 +51,8 @@ export interface CreateProjectCommandOutput extends CreateProjectResponse, __Met
* const client = new RekognitionClient(config);
* const input = { // CreateProjectRequest
* ProjectName: "STRING_VALUE", // required
+ * Feature: "CONTENT_MODERATION" || "CUSTOM_LABELS",
+ * AutoUpdate: "ENABLED" || "DISABLED",
* };
* const command = new CreateProjectCommand(input);
* const response = await client.send(command);
@@ -74,9 +79,11 @@ export interface CreateProjectCommandOutput extends CreateProjectResponse, __Met
* operation again.
*
* @throws {@link LimitExceededException} (client fault)
- * An Amazon Rekognition service limit was exceeded. For example, if you start too many Amazon Rekognition Video jobs concurrently, calls to start operations
- * (StartLabelDetection
, for example) will raise a LimitExceededException
exception (HTTP status code: 400) until
- * the number of concurrently running jobs is below the Amazon Rekognition service limit.
+ * An Amazon Rekognition service limit was exceeded. For example, if you start too many jobs
+ * concurrently, subsequent calls to start operations (ex:
+ * StartLabelDetection
) will raise a LimitExceededException
+ * exception (HTTP status code: 400) until the number of concurrently running jobs is below
+ * the Amazon Rekognition service limit.
*
* @throws {@link ProvisionedThroughputExceededException} (client fault)
* The number of requests exceeded your throughput limit. If you want to increase this
diff --git a/clients/client-rekognition/src/commands/CreateProjectVersionCommand.ts b/clients/client-rekognition/src/commands/CreateProjectVersionCommand.ts
index 8efda08a411c2..c5fd3166d5d7d 100644
--- a/clients/client-rekognition/src/commands/CreateProjectVersionCommand.ts
+++ b/clients/client-rekognition/src/commands/CreateProjectVersionCommand.ts
@@ -37,14 +37,24 @@ export interface CreateProjectVersionCommandOutput extends CreateProjectVersionR
/**
* @public
- *
Creates a new version of a model and begins training.
- * Models are managed as part of an Amazon Rekognition Custom Labels project.
- * The response from CreateProjectVersion
- * is an Amazon Resource Name (ARN) for the version of the model.
- * Training uses the training and test datasets associated with the project.
- * For more information, see Creating training and test dataset in the Amazon Rekognition Custom Labels Developer Guide .
- *
+ * Creates a new version of Amazon Rekognition project (like a Custom Labels model or a custom adapter)
+ * and begins training. Models and adapters are managed as part of a Rekognition project. The
+ * response from CreateProjectVersion
is an Amazon Resource Name (ARN) for the
+ * project version.
+ * The FeatureConfig operation argument allows you to configure specific model or adapter
+ * settings. You can provide a description to the project version by using the
+ * VersionDescription argment. Training can take a while to complete. You can get the current
+ * status by calling DescribeProjectVersions . Training completed
+ * successfully if the value of the Status
field is
+ * TRAINING_COMPLETED
. Once training has successfully completed, call DescribeProjectVersions to get the training results and evaluate the
+ * model.
+ * This operation requires permissions to perform the
+ * rekognition:CreateProjectVersion
action.
*
+ *
+ * The following applies only to projects with Amazon Rekognition Custom Labels as the chosen
+ * feature:
+ *
* You can train a model in a project that doesn't have associated datasets by specifying manifest files in the
* TrainingData
and TestingData
fields.
*
@@ -55,18 +65,7 @@ export interface CreateProjectVersionCommandOutput extends CreateProjectVersionR
* we recommend that you use the manifest
* files to create training and test datasets for the project.
*
- * Training takes a while to complete. You can get the current status by calling
- * DescribeProjectVersions . Training completed successfully if
- * the value of the Status
field is TRAINING_COMPLETED
.
- * If training
- * fails, see Debugging a failed model training in the Amazon Rekognition Custom Labels developer guide.
- * Once training has successfully completed, call DescribeProjectVersions to
- * get the training results and evaluate the model. For more information, see Improving a trained Amazon Rekognition Custom Labels model
- * in the Amazon Rekognition Custom Labels developers guide.
- *
- * After evaluating the model, you start the model
- * by calling StartProjectVersion .
- * This operation requires permissions to perform the rekognition:CreateProjectVersion
action.
+ *
* @example
* Use a bare-bones client and the command you need to make an API call.
* ```javascript
@@ -111,6 +110,12 @@ export interface CreateProjectVersionCommandOutput extends CreateProjectVersionR
* "": "STRING_VALUE",
* },
* KmsKeyId: "STRING_VALUE",
+ * VersionDescription: "STRING_VALUE",
+ * FeatureConfig: { // CustomizationFeatureConfig
+ * ContentModeration: { // CustomizationFeatureContentModerationConfig
+ * ConfidenceThreshold: Number("float"),
+ * },
+ * },
* };
* const command = new CreateProjectVersionCommand(input);
* const response = await client.send(command);
@@ -137,9 +142,11 @@ export interface CreateProjectVersionCommandOutput extends CreateProjectVersionR
* operation again.
*
* @throws {@link LimitExceededException} (client fault)
- * An Amazon Rekognition service limit was exceeded. For example, if you start too many Amazon Rekognition Video jobs concurrently, calls to start operations
- * (StartLabelDetection
, for example) will raise a LimitExceededException
exception (HTTP status code: 400) until
- * the number of concurrently running jobs is below the Amazon Rekognition service limit.
+ * An Amazon Rekognition service limit was exceeded. For example, if you start too many jobs
+ * concurrently, subsequent calls to start operations (ex:
+ * StartLabelDetection
) will raise a LimitExceededException
+ * exception (HTTP status code: 400) until the number of concurrently running jobs is below
+ * the Amazon Rekognition service limit.
*
* @throws {@link ProvisionedThroughputExceededException} (client fault)
* The number of requests exceeded your throughput limit. If you want to increase this
diff --git a/clients/client-rekognition/src/commands/CreateStreamProcessorCommand.ts b/clients/client-rekognition/src/commands/CreateStreamProcessorCommand.ts
index db54a740249dc..13719dfdbd07b 100644
--- a/clients/client-rekognition/src/commands/CreateStreamProcessorCommand.ts
+++ b/clients/client-rekognition/src/commands/CreateStreamProcessorCommand.ts
@@ -155,9 +155,11 @@ export interface CreateStreamProcessorCommandOutput extends CreateStreamProcesso
* operation again.
*
* @throws {@link LimitExceededException} (client fault)
- * An Amazon Rekognition service limit was exceeded. For example, if you start too many Amazon Rekognition Video jobs concurrently, calls to start operations
- * (StartLabelDetection
, for example) will raise a LimitExceededException
exception (HTTP status code: 400) until
- * the number of concurrently running jobs is below the Amazon Rekognition service limit.
+ * An Amazon Rekognition service limit was exceeded. For example, if you start too many jobs
+ * concurrently, subsequent calls to start operations (ex:
+ * StartLabelDetection
) will raise a LimitExceededException
+ * exception (HTTP status code: 400) until the number of concurrently running jobs is below
+ * the Amazon Rekognition service limit.
*
* @throws {@link ProvisionedThroughputExceededException} (client fault)
* The number of requests exceeded your throughput limit. If you want to increase this
diff --git a/clients/client-rekognition/src/commands/DeleteDatasetCommand.ts b/clients/client-rekognition/src/commands/DeleteDatasetCommand.ts
index b4ba40679b350..a40d8a4a52a87 100644
--- a/clients/client-rekognition/src/commands/DeleteDatasetCommand.ts
+++ b/clients/client-rekognition/src/commands/DeleteDatasetCommand.ts
@@ -37,7 +37,10 @@ export interface DeleteDatasetCommandOutput extends DeleteDatasetResponse, __Met
/**
* @public
- *
Deletes an existing Amazon Rekognition Custom Labels dataset.
+ *
+ * This operation applies only to Amazon Rekognition Custom Labels.
+ *
+ *
Deletes an existing Amazon Rekognition Custom Labels dataset.
* Deleting a dataset might take while. Use DescribeDataset to check the
* current status. The dataset is still deleting if the value of Status
is
* DELETE_IN_PROGRESS
. If you try to access the dataset after it is deleted, you get
@@ -79,9 +82,11 @@ export interface DeleteDatasetCommandOutput extends DeleteDatasetResponse, __Met
* operation again.
*
* @throws {@link LimitExceededException} (client fault)
- * An Amazon Rekognition service limit was exceeded. For example, if you start too many Amazon Rekognition Video jobs concurrently, calls to start operations
- * (StartLabelDetection
, for example) will raise a LimitExceededException
exception (HTTP status code: 400) until
- * the number of concurrently running jobs is below the Amazon Rekognition service limit.
+ * An Amazon Rekognition service limit was exceeded. For example, if you start too many jobs
+ * concurrently, subsequent calls to start operations (ex:
+ * StartLabelDetection
) will raise a LimitExceededException
+ * exception (HTTP status code: 400) until the number of concurrently running jobs is below
+ * the Amazon Rekognition service limit.
*
* @throws {@link ProvisionedThroughputExceededException} (client fault)
* The number of requests exceeded your throughput limit. If you want to increase this
diff --git a/clients/client-rekognition/src/commands/DeleteProjectCommand.ts b/clients/client-rekognition/src/commands/DeleteProjectCommand.ts
index b998bb40735ce..0d31ec98fbaa0 100644
--- a/clients/client-rekognition/src/commands/DeleteProjectCommand.ts
+++ b/clients/client-rekognition/src/commands/DeleteProjectCommand.ts
@@ -37,8 +37,8 @@ export interface DeleteProjectCommandOutput extends DeleteProjectResponse, __Met
/**
* @public
- *
Deletes an Amazon Rekognition Custom Labels project. To delete a project you must first delete all models associated
- * with the project. To delete a model, see DeleteProjectVersion .
+ * Deletes a Amazon Rekognition project. To delete a project you must first delete all models or
+ * adapters associated with the project. To delete a model or adapter, see DeleteProjectVersion .
*
* DeleteProject
is an asynchronous operation. To check if the project is
* deleted, call DescribeProjects . The project is deleted when the project
diff --git a/clients/client-rekognition/src/commands/DeleteProjectPolicyCommand.ts b/clients/client-rekognition/src/commands/DeleteProjectPolicyCommand.ts
index 41d179f758d54..5b21a8b64cd81 100644
--- a/clients/client-rekognition/src/commands/DeleteProjectPolicyCommand.ts
+++ b/clients/client-rekognition/src/commands/DeleteProjectPolicyCommand.ts
@@ -37,7 +37,10 @@ export interface DeleteProjectPolicyCommandOutput extends DeleteProjectPolicyRes
/**
* @public
- *
Deletes an existing project policy.
+ *
+ * This operation applies only to Amazon Rekognition Custom Labels.
+ *
+ * Deletes an existing project policy.
* To get a list of project policies attached to a project, call ListProjectPolicies . To attach a project policy to a project, call PutProjectPolicy .
* This operation requires permissions to perform the rekognition:DeleteProjectPolicy
action.
* @example
diff --git a/clients/client-rekognition/src/commands/DeleteProjectVersionCommand.ts b/clients/client-rekognition/src/commands/DeleteProjectVersionCommand.ts
index ee7344ca821ca..e9d44bd8f0ae7 100644
--- a/clients/client-rekognition/src/commands/DeleteProjectVersionCommand.ts
+++ b/clients/client-rekognition/src/commands/DeleteProjectVersionCommand.ts
@@ -37,12 +37,11 @@ export interface DeleteProjectVersionCommandOutput extends DeleteProjectVersionR
/**
* @public
- * Deletes an Amazon Rekognition Custom Labels model.
- * You can't delete a model if it is running or if it is training.
- * To check the status of a model, use the Status
field returned
- * from DescribeProjectVersions .
- * To stop a running model call StopProjectVersion . If the model
- * is training, wait until it finishes.
+ * Deletes a Rekognition project model or project version, like a Amazon Rekognition Custom Labels model or a custom
+ * adapter.
+ * You can't delete a project version if it is running or if it is training. To check
+ * the status of a project version, use the Status field returned from DescribeProjectVersions . To stop a project version call StopProjectVersion . If the project version is training, wait until it
+ * finishes.
* This operation requires permissions to perform the
* rekognition:DeleteProjectVersion
action.
* @example
@@ -57,7 +56,7 @@ export interface DeleteProjectVersionCommandOutput extends DeleteProjectVersionR
* const command = new DeleteProjectVersionCommand(input);
* const response = await client.send(command);
* // { // DeleteProjectVersionResponse
- * // Status: "TRAINING_IN_PROGRESS" || "TRAINING_COMPLETED" || "TRAINING_FAILED" || "STARTING" || "RUNNING" || "FAILED" || "STOPPING" || "STOPPED" || "DELETING" || "COPYING_IN_PROGRESS" || "COPYING_COMPLETED" || "COPYING_FAILED",
+ * // Status: "TRAINING_IN_PROGRESS" || "TRAINING_COMPLETED" || "TRAINING_FAILED" || "STARTING" || "RUNNING" || "FAILED" || "STOPPING" || "STOPPED" || "DELETING" || "COPYING_IN_PROGRESS" || "COPYING_COMPLETED" || "COPYING_FAILED" || "DEPRECATED" || "EXPIRED",
* // };
*
* ```
diff --git a/clients/client-rekognition/src/commands/DescribeDatasetCommand.ts b/clients/client-rekognition/src/commands/DescribeDatasetCommand.ts
index 2eb3fba4d44a6..8a16f9f20463d 100644
--- a/clients/client-rekognition/src/commands/DescribeDatasetCommand.ts
+++ b/clients/client-rekognition/src/commands/DescribeDatasetCommand.ts
@@ -37,7 +37,10 @@ export interface DescribeDatasetCommandOutput extends DescribeDatasetResponse, _
/**
* @public
- *
+ *
+ * This operation applies only to Amazon Rekognition Custom Labels.
+ *
+ *
* Describes an Amazon Rekognition Custom Labels dataset. You can get information such as the current status of a dataset and
* statistics about the images and labels in a dataset.
*
diff --git a/clients/client-rekognition/src/commands/DescribeProjectVersionsCommand.ts b/clients/client-rekognition/src/commands/DescribeProjectVersionsCommand.ts
index fd5ce246142fd..a46201090d2d9 100644
--- a/clients/client-rekognition/src/commands/DescribeProjectVersionsCommand.ts
+++ b/clients/client-rekognition/src/commands/DescribeProjectVersionsCommand.ts
@@ -37,9 +37,9 @@ export interface DescribeProjectVersionsCommandOutput extends DescribeProjectVer
/**
* @public
- * Lists and describes the versions of a model in an Amazon Rekognition Custom Labels project. You
- * can specify up to 10 model versions in ProjectVersionArns
. If
- * you don't specify a value, descriptions for all model versions in the project are returned.
+ * Lists and describes the versions of an Amazon Rekognition project. You can specify up to 10 model or
+ * adapter versions in ProjectVersionArns
. If you don't specify a value,
+ * descriptions for all model/adapter versions in the project are returned.
* This operation requires permissions to perform the rekognition:DescribeProjectVersions
* action.
* @example
@@ -64,7 +64,7 @@ export interface DescribeProjectVersionsCommandOutput extends DescribeProjectVer
* // ProjectVersionArn: "STRING_VALUE",
* // CreationTimestamp: new Date("TIMESTAMP"),
* // MinInferenceUnits: Number("int"),
- * // Status: "TRAINING_IN_PROGRESS" || "TRAINING_COMPLETED" || "TRAINING_FAILED" || "STARTING" || "RUNNING" || "FAILED" || "STOPPING" || "STOPPED" || "DELETING" || "COPYING_IN_PROGRESS" || "COPYING_COMPLETED" || "COPYING_FAILED",
+ * // Status: "TRAINING_IN_PROGRESS" || "TRAINING_COMPLETED" || "TRAINING_FAILED" || "STARTING" || "RUNNING" || "FAILED" || "STOPPING" || "STOPPED" || "DELETING" || "COPYING_IN_PROGRESS" || "COPYING_COMPLETED" || "COPYING_FAILED" || "DEPRECATED" || "EXPIRED",
* // StatusMessage: "STRING_VALUE",
* // BillableTrainingTimeInSeconds: Number("long"),
* // TrainingEndTimestamp: new Date("TIMESTAMP"),
@@ -156,6 +156,14 @@ export interface DescribeProjectVersionsCommandOutput extends DescribeProjectVer
* // KmsKeyId: "STRING_VALUE",
* // MaxInferenceUnits: Number("int"),
* // SourceProjectVersionArn: "STRING_VALUE",
+ * // VersionDescription: "STRING_VALUE",
+ * // Feature: "CONTENT_MODERATION" || "CUSTOM_LABELS",
+ * // BaseModelVersion: "STRING_VALUE",
+ * // FeatureConfig: { // CustomizationFeatureConfig
+ * // ContentModeration: { // CustomizationFeatureContentModerationConfig
+ * // ConfidenceThreshold: Number("float"),
+ * // },
+ * // },
* // },
* // ],
* // NextToken: "STRING_VALUE",
diff --git a/clients/client-rekognition/src/commands/DescribeProjectsCommand.ts b/clients/client-rekognition/src/commands/DescribeProjectsCommand.ts
index d30d360ad4b2e..28ffc6ef35994 100644
--- a/clients/client-rekognition/src/commands/DescribeProjectsCommand.ts
+++ b/clients/client-rekognition/src/commands/DescribeProjectsCommand.ts
@@ -37,7 +37,7 @@ export interface DescribeProjectsCommandOutput extends DescribeProjectsResponse,
/**
* @public
- * Gets information about your Amazon Rekognition Custom Labels projects.
+ * Gets information about your Rekognition projects.
* This operation requires permissions to perform the rekognition:DescribeProjects
action.
* @example
* Use a bare-bones client and the command you need to make an API call.
@@ -51,6 +51,9 @@ export interface DescribeProjectsCommandOutput extends DescribeProjectsResponse,
* ProjectNames: [ // ProjectNames
* "STRING_VALUE",
* ],
+ * Features: [ // CustomizationFeatures
+ * "CONTENT_MODERATION" || "CUSTOM_LABELS",
+ * ],
* };
* const command = new DescribeProjectsCommand(input);
* const response = await client.send(command);
@@ -70,6 +73,8 @@ export interface DescribeProjectsCommandOutput extends DescribeProjectsResponse,
* // StatusMessageCode: "SUCCESS" || "SERVICE_ERROR" || "CLIENT_ERROR",
* // },
* // ],
+ * // Feature: "CONTENT_MODERATION" || "CUSTOM_LABELS",
+ * // AutoUpdate: "ENABLED" || "DISABLED",
* // },
* // ],
* // NextToken: "STRING_VALUE",
diff --git a/clients/client-rekognition/src/commands/DetectCustomLabelsCommand.ts b/clients/client-rekognition/src/commands/DetectCustomLabelsCommand.ts
index 9c67ba4529c09..9682225e70374 100644
--- a/clients/client-rekognition/src/commands/DetectCustomLabelsCommand.ts
+++ b/clients/client-rekognition/src/commands/DetectCustomLabelsCommand.ts
@@ -37,7 +37,10 @@ export interface DetectCustomLabelsCommandOutput extends DetectCustomLabelsRespo
/**
* @public
- * Detects custom labels in a supplied image by using an Amazon Rekognition Custom Labels model.
+ *
+ * This operation applies only to Amazon Rekognition Custom Labels.
+ *
+ * Detects custom labels in a supplied image by using an Amazon Rekognition Custom Labels model.
* You specify which version of a model version to use by using the ProjectVersionArn
input
* parameter.
* You pass the input image as base64-encoded image bytes or as a reference to an image in
@@ -144,9 +147,11 @@ export interface DetectCustomLabelsCommandOutput extends DetectCustomLabelsRespo
*
Amazon Rekognition is unable to access the S3 object specified in the request.
*
* @throws {@link LimitExceededException} (client fault)
- * An Amazon Rekognition service limit was exceeded. For example, if you start too many Amazon Rekognition Video jobs concurrently, calls to start operations
- * (StartLabelDetection
, for example) will raise a LimitExceededException
exception (HTTP status code: 400) until
- * the number of concurrently running jobs is below the Amazon Rekognition service limit.
+ * An Amazon Rekognition service limit was exceeded. For example, if you start too many jobs
+ * concurrently, subsequent calls to start operations (ex:
+ * StartLabelDetection
) will raise a LimitExceededException
+ * exception (HTTP status code: 400) until the number of concurrently running jobs is below
+ * the Amazon Rekognition service limit.
*
* @throws {@link ProvisionedThroughputExceededException} (client fault)
* The number of requests exceeded your throughput limit. If you want to increase this
diff --git a/clients/client-rekognition/src/commands/DetectModerationLabelsCommand.ts b/clients/client-rekognition/src/commands/DetectModerationLabelsCommand.ts
index c4e8b33c333a0..21eb9a7a2ec52 100644
--- a/clients/client-rekognition/src/commands/DetectModerationLabelsCommand.ts
+++ b/clients/client-rekognition/src/commands/DetectModerationLabelsCommand.ts
@@ -50,6 +50,8 @@ export interface DetectModerationLabelsCommandOutput extends DetectModerationLab
* AWS
* CLI to call Amazon Rekognition operations, passing image bytes is not
* supported. The image must be either a PNG or JPEG formatted file.
+ * You can specify an adapter to use when retrieving label predictions by providing a
+ * ProjectVersionArn
to the ProjectVersion
argument.
* @example
* Use a bare-bones client and the command you need to make an API call.
* ```javascript
@@ -75,6 +77,7 @@ export interface DetectModerationLabelsCommandOutput extends DetectModerationLab
* ],
* },
* },
+ * ProjectVersion: "STRING_VALUE",
* };
* const command = new DetectModerationLabelsCommand(input);
* const response = await client.send(command);
@@ -94,6 +97,7 @@ export interface DetectModerationLabelsCommandOutput extends DetectModerationLab
* // ],
* // HumanLoopActivationConditionsEvaluationResults: "STRING_VALUE",
* // },
+ * // ProjectVersion: "STRING_VALUE",
* // };
*
* ```
@@ -133,6 +137,14 @@ export interface DetectModerationLabelsCommandOutput extends DetectModerationLab
* The number of requests exceeded your throughput limit. If you want to increase this
* limit, contact Amazon Rekognition.
*
+ * @throws {@link ResourceNotFoundException} (client fault)
+ * The resource specified in the request cannot be found.
+ *
+ * @throws {@link ResourceNotReadyException} (client fault)
+ * The requested resource isn't ready. For example,
+ * this exception occurs when you call DetectCustomLabels
with a
+ * model version that isn't deployed.
+ *
* @throws {@link ThrottlingException} (server fault)
* Amazon Rekognition is temporarily unable to process the request. Try your call again.
*
diff --git a/clients/client-rekognition/src/commands/DistributeDatasetEntriesCommand.ts b/clients/client-rekognition/src/commands/DistributeDatasetEntriesCommand.ts
index 58496cb066955..889dabcfc3aa0 100644
--- a/clients/client-rekognition/src/commands/DistributeDatasetEntriesCommand.ts
+++ b/clients/client-rekognition/src/commands/DistributeDatasetEntriesCommand.ts
@@ -37,7 +37,10 @@ export interface DistributeDatasetEntriesCommandOutput extends DistributeDataset
/**
* @public
- * Distributes the entries (images) in a training dataset across the training dataset and the test dataset for a project.
+ *
+ * This operation applies only to Amazon Rekognition Custom Labels.
+ *
+ *
Distributes the entries (images) in a training dataset across the training dataset and the test dataset for a project.
* DistributeDatasetEntries
moves 20% of the training dataset images to the test dataset.
* An entry is a JSON Line that describes an image.
*
diff --git a/clients/client-rekognition/src/commands/ListDatasetEntriesCommand.ts b/clients/client-rekognition/src/commands/ListDatasetEntriesCommand.ts
index 361bcd8efc7b5..7789dd17f69a8 100644
--- a/clients/client-rekognition/src/commands/ListDatasetEntriesCommand.ts
+++ b/clients/client-rekognition/src/commands/ListDatasetEntriesCommand.ts
@@ -37,7 +37,10 @@ export interface ListDatasetEntriesCommandOutput extends ListDatasetEntriesRespo
/**
* @public
- *
+ *
+ * This operation applies only to Amazon Rekognition Custom Labels.
+ *
+ *
* Lists the entries (images) within a dataset. An entry is a
* JSON Line that contains the information for a single image, including
* the image location, assigned labels, and object location bounding boxes. For
diff --git a/clients/client-rekognition/src/commands/ListDatasetLabelsCommand.ts b/clients/client-rekognition/src/commands/ListDatasetLabelsCommand.ts
index 681c4ad7bbce4..864b124de24a1 100644
--- a/clients/client-rekognition/src/commands/ListDatasetLabelsCommand.ts
+++ b/clients/client-rekognition/src/commands/ListDatasetLabelsCommand.ts
@@ -37,7 +37,10 @@ export interface ListDatasetLabelsCommandOutput extends ListDatasetLabelsRespons
/**
* @public
- *
Lists the labels in a dataset. Amazon Rekognition Custom Labels uses labels to describe images. For more information, see
+ *
+ * This operation applies only to Amazon Rekognition Custom Labels.
+ *
+ *
Lists the labels in a dataset. Amazon Rekognition Custom Labels uses labels to describe images. For more information, see
* Labeling images .
*
*
diff --git a/clients/client-rekognition/src/commands/ListProjectPoliciesCommand.ts b/clients/client-rekognition/src/commands/ListProjectPoliciesCommand.ts
index 6edb5a590afb8..eacee753420ec 100644
--- a/clients/client-rekognition/src/commands/ListProjectPoliciesCommand.ts
+++ b/clients/client-rekognition/src/commands/ListProjectPoliciesCommand.ts
@@ -37,7 +37,10 @@ export interface ListProjectPoliciesCommandOutput extends ListProjectPoliciesRes
/**
* @public
- *
Gets a list of the project policies attached to a project.
+ *
+ * This operation applies only to Amazon Rekognition Custom Labels.
+ *
+ * Gets a list of the project policies attached to a project.
* To attach a project policy to a project, call PutProjectPolicy . To remove a project policy from a project, call DeleteProjectPolicy .
* This operation requires permissions to perform the rekognition:ListProjectPolicies
action.
* @example
diff --git a/clients/client-rekognition/src/commands/PutProjectPolicyCommand.ts b/clients/client-rekognition/src/commands/PutProjectPolicyCommand.ts
index 939640c24fc6c..8077404e6c2f5 100644
--- a/clients/client-rekognition/src/commands/PutProjectPolicyCommand.ts
+++ b/clients/client-rekognition/src/commands/PutProjectPolicyCommand.ts
@@ -37,10 +37,14 @@ export interface PutProjectPolicyCommandOutput extends PutProjectPolicyResponse,
/**
* @public
- * Attaches a project policy to a Amazon Rekognition Custom Labels project in a trusting AWS account. A
+ *
+ * This operation applies only to Amazon Rekognition Custom Labels.
+ *
+ *
Attaches a project policy to a Amazon Rekognition Custom Labels project in a trusting AWS account. A
* project policy specifies that a trusted AWS account can copy a model version from a
- * trusting AWS account to a project in the trusted AWS account. To copy a model version you use
- * the CopyProjectVersion operation.
+ * trusting AWS account to a project in the trusted AWS account. To copy a model version
+ * you use the CopyProjectVersion operation. Only applies to Custom Labels
+ * projects.
* For more information about the format of a project policy document, see Attaching a project policy (SDK)
* in the Amazon Rekognition Custom Labels Developer Guide .
*
@@ -91,9 +95,11 @@ export interface PutProjectPolicyCommandOutput extends PutProjectPolicyResponse,
* The supplied revision id for the project policy is invalid.
*
* @throws {@link LimitExceededException} (client fault)
- * An Amazon Rekognition service limit was exceeded. For example, if you start too many Amazon Rekognition Video jobs concurrently, calls to start operations
- * (StartLabelDetection
, for example) will raise a LimitExceededException
exception (HTTP status code: 400) until
- * the number of concurrently running jobs is below the Amazon Rekognition service limit.
+ * An Amazon Rekognition service limit was exceeded. For example, if you start too many jobs
+ * concurrently, subsequent calls to start operations (ex:
+ * StartLabelDetection
) will raise a LimitExceededException
+ * exception (HTTP status code: 400) until the number of concurrently running jobs is below
+ * the Amazon Rekognition service limit.
*
* @throws {@link MalformedPolicyDocumentException} (client fault)
* The format of the project policy document that you supplied to
diff --git a/clients/client-rekognition/src/commands/SearchUsersByImageCommand.ts b/clients/client-rekognition/src/commands/SearchUsersByImageCommand.ts
index 2edb3d0ab1c61..b230fb03f19ba 100644
--- a/clients/client-rekognition/src/commands/SearchUsersByImageCommand.ts
+++ b/clients/client-rekognition/src/commands/SearchUsersByImageCommand.ts
@@ -14,7 +14,8 @@ import {
SMITHY_CONTEXT_KEY,
} from "@smithy/types";
-import { SearchUsersByImageRequest, SearchUsersByImageResponse } from "../models/models_0";
+import { SearchUsersByImageRequest } from "../models/models_0";
+import { SearchUsersByImageResponse } from "../models/models_1";
import { de_SearchUsersByImageCommand, se_SearchUsersByImageCommand } from "../protocols/Aws_json1_1";
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
diff --git a/clients/client-rekognition/src/commands/StartCelebrityRecognitionCommand.ts b/clients/client-rekognition/src/commands/StartCelebrityRecognitionCommand.ts
index e6f8b87f91a85..1bdc9d461656a 100644
--- a/clients/client-rekognition/src/commands/StartCelebrityRecognitionCommand.ts
+++ b/clients/client-rekognition/src/commands/StartCelebrityRecognitionCommand.ts
@@ -14,8 +14,7 @@ import {
SMITHY_CONTEXT_KEY,
} from "@smithy/types";
-import { StartCelebrityRecognitionRequest } from "../models/models_0";
-import { StartCelebrityRecognitionResponse } from "../models/models_1";
+import { StartCelebrityRecognitionRequest, StartCelebrityRecognitionResponse } from "../models/models_1";
import { de_StartCelebrityRecognitionCommand, se_StartCelebrityRecognitionCommand } from "../protocols/Aws_json1_1";
import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient";
@@ -102,9 +101,11 @@ export interface StartCelebrityRecognitionCommandOutput extends StartCelebrityRe
*
Amazon Rekognition is unable to access the S3 object specified in the request.
*
* @throws {@link LimitExceededException} (client fault)
- * An Amazon Rekognition service limit was exceeded. For example, if you start too many Amazon Rekognition Video jobs concurrently, calls to start operations
- * (StartLabelDetection
, for example) will raise a LimitExceededException
exception (HTTP status code: 400) until
- * the number of concurrently running jobs is below the Amazon Rekognition service limit.
+ * An Amazon Rekognition service limit was exceeded. For example, if you start too many jobs
+ * concurrently, subsequent calls to start operations (ex:
+ * StartLabelDetection
) will raise a LimitExceededException
+ * exception (HTTP status code: 400) until the number of concurrently running jobs is below
+ * the Amazon Rekognition service limit.
*
* @throws {@link ProvisionedThroughputExceededException} (client fault)
* The number of requests exceeded your throughput limit. If you want to increase this
diff --git a/clients/client-rekognition/src/commands/StartContentModerationCommand.ts b/clients/client-rekognition/src/commands/StartContentModerationCommand.ts
index e56a4974a2d4e..3fda28ebbadcf 100644
--- a/clients/client-rekognition/src/commands/StartContentModerationCommand.ts
+++ b/clients/client-rekognition/src/commands/StartContentModerationCommand.ts
@@ -102,9 +102,11 @@ export interface StartContentModerationCommandOutput extends StartContentModerat
*
Amazon Rekognition is unable to access the S3 object specified in the request.
*
* @throws {@link LimitExceededException} (client fault)
- * An Amazon Rekognition service limit was exceeded. For example, if you start too many Amazon Rekognition Video jobs concurrently, calls to start operations
- * (StartLabelDetection
, for example) will raise a LimitExceededException
exception (HTTP status code: 400) until
- * the number of concurrently running jobs is below the Amazon Rekognition service limit.
+ * An Amazon Rekognition service limit was exceeded. For example, if you start too many jobs
+ * concurrently, subsequent calls to start operations (ex:
+ * StartLabelDetection
) will raise a LimitExceededException
+ * exception (HTTP status code: 400) until the number of concurrently running jobs is below
+ * the Amazon Rekognition service limit.
*
* @throws {@link ProvisionedThroughputExceededException} (client fault)
* The number of requests exceeded your throughput limit. If you want to increase this
diff --git a/clients/client-rekognition/src/commands/StartFaceDetectionCommand.ts b/clients/client-rekognition/src/commands/StartFaceDetectionCommand.ts
index d4dcbed90fc7d..6650eee14bfed 100644
--- a/clients/client-rekognition/src/commands/StartFaceDetectionCommand.ts
+++ b/clients/client-rekognition/src/commands/StartFaceDetectionCommand.ts
@@ -103,9 +103,11 @@ export interface StartFaceDetectionCommandOutput extends StartFaceDetectionRespo
*
Amazon Rekognition is unable to access the S3 object specified in the request.
*
* @throws {@link LimitExceededException} (client fault)
- * An Amazon Rekognition service limit was exceeded. For example, if you start too many Amazon Rekognition Video jobs concurrently, calls to start operations
- * (StartLabelDetection
, for example) will raise a LimitExceededException
exception (HTTP status code: 400) until
- * the number of concurrently running jobs is below the Amazon Rekognition service limit.
+ * An Amazon Rekognition service limit was exceeded. For example, if you start too many jobs
+ * concurrently, subsequent calls to start operations (ex:
+ * StartLabelDetection
) will raise a LimitExceededException
+ * exception (HTTP status code: 400) until the number of concurrently running jobs is below
+ * the Amazon Rekognition service limit.
*
* @throws {@link ProvisionedThroughputExceededException} (client fault)
* The number of requests exceeded your throughput limit. If you want to increase this
diff --git a/clients/client-rekognition/src/commands/StartFaceSearchCommand.ts b/clients/client-rekognition/src/commands/StartFaceSearchCommand.ts
index c64a0f4d4fd38..8e506b6f8071c 100644
--- a/clients/client-rekognition/src/commands/StartFaceSearchCommand.ts
+++ b/clients/client-rekognition/src/commands/StartFaceSearchCommand.ts
@@ -103,9 +103,11 @@ export interface StartFaceSearchCommandOutput extends StartFaceSearchResponse, _
*
Amazon Rekognition is unable to access the S3 object specified in the request.
*
* @throws {@link LimitExceededException} (client fault)
- * An Amazon Rekognition service limit was exceeded. For example, if you start too many Amazon Rekognition Video jobs concurrently, calls to start operations
- * (StartLabelDetection
, for example) will raise a LimitExceededException
exception (HTTP status code: 400) until
- * the number of concurrently running jobs is below the Amazon Rekognition service limit.
+ * An Amazon Rekognition service limit was exceeded. For example, if you start too many jobs
+ * concurrently, subsequent calls to start operations (ex:
+ * StartLabelDetection
) will raise a LimitExceededException
+ * exception (HTTP status code: 400) until the number of concurrently running jobs is below
+ * the Amazon Rekognition service limit.
*
* @throws {@link ProvisionedThroughputExceededException} (client fault)
* The number of requests exceeded your throughput limit. If you want to increase this
diff --git a/clients/client-rekognition/src/commands/StartLabelDetectionCommand.ts b/clients/client-rekognition/src/commands/StartLabelDetectionCommand.ts
index dce00e71f6085..a46da47243e4a 100644
--- a/clients/client-rekognition/src/commands/StartLabelDetectionCommand.ts
+++ b/clients/client-rekognition/src/commands/StartLabelDetectionCommand.ts
@@ -135,9 +135,11 @@ export interface StartLabelDetectionCommandOutput extends StartLabelDetectionRes
*
Amazon Rekognition is unable to access the S3 object specified in the request.
*
* @throws {@link LimitExceededException} (client fault)
- * An Amazon Rekognition service limit was exceeded. For example, if you start too many Amazon Rekognition Video jobs concurrently, calls to start operations
- * (StartLabelDetection
, for example) will raise a LimitExceededException
exception (HTTP status code: 400) until
- * the number of concurrently running jobs is below the Amazon Rekognition service limit.
+ * An Amazon Rekognition service limit was exceeded. For example, if you start too many jobs
+ * concurrently, subsequent calls to start operations (ex:
+ * StartLabelDetection
) will raise a LimitExceededException
+ * exception (HTTP status code: 400) until the number of concurrently running jobs is below
+ * the Amazon Rekognition service limit.
*
* @throws {@link ProvisionedThroughputExceededException} (client fault)
* The number of requests exceeded your throughput limit. If you want to increase this
diff --git a/clients/client-rekognition/src/commands/StartPersonTrackingCommand.ts b/clients/client-rekognition/src/commands/StartPersonTrackingCommand.ts
index 77a839da933b4..2598736987d90 100644
--- a/clients/client-rekognition/src/commands/StartPersonTrackingCommand.ts
+++ b/clients/client-rekognition/src/commands/StartPersonTrackingCommand.ts
@@ -99,9 +99,11 @@ export interface StartPersonTrackingCommandOutput extends StartPersonTrackingRes
*
Amazon Rekognition is unable to access the S3 object specified in the request.
*
* @throws {@link LimitExceededException} (client fault)
- * An Amazon Rekognition service limit was exceeded. For example, if you start too many Amazon Rekognition Video jobs concurrently, calls to start operations
- * (StartLabelDetection
, for example) will raise a LimitExceededException
exception (HTTP status code: 400) until
- * the number of concurrently running jobs is below the Amazon Rekognition service limit.
+ * An Amazon Rekognition service limit was exceeded. For example, if you start too many jobs
+ * concurrently, subsequent calls to start operations (ex:
+ * StartLabelDetection
) will raise a LimitExceededException
+ * exception (HTTP status code: 400) until the number of concurrently running jobs is below
+ * the Amazon Rekognition service limit.
*
* @throws {@link ProvisionedThroughputExceededException} (client fault)
* The number of requests exceeded your throughput limit. If you want to increase this
diff --git a/clients/client-rekognition/src/commands/StartProjectVersionCommand.ts b/clients/client-rekognition/src/commands/StartProjectVersionCommand.ts
index d59307a8484f9..638e88b8281c5 100644
--- a/clients/client-rekognition/src/commands/StartProjectVersionCommand.ts
+++ b/clients/client-rekognition/src/commands/StartProjectVersionCommand.ts
@@ -37,15 +37,17 @@ export interface StartProjectVersionCommandOutput extends StartProjectVersionRes
/**
* @public
- *
Starts the running of the version of a model. Starting a model takes a while
- * to complete. To check the current state of the model, use DescribeProjectVersions .
+ *
+ * This operation applies only to Amazon Rekognition Custom Labels.
+ *
+ * Starts the running of the version of a model. Starting a model takes a while to
+ * complete. To check the current state of the model, use DescribeProjectVersions .
* Once the model is running, you can detect custom labels in new images by calling
* DetectCustomLabels .
*
* You are charged for the amount of time that the model is running. To stop a running
* model, call StopProjectVersion .
*
- * For more information, see Running a trained Amazon Rekognition Custom Labels model in the Amazon Rekognition Custom Labels Guide.
* This operation requires permissions to perform the
* rekognition:StartProjectVersion
action.
* @example
@@ -62,7 +64,7 @@ export interface StartProjectVersionCommandOutput extends StartProjectVersionRes
* const command = new StartProjectVersionCommand(input);
* const response = await client.send(command);
* // { // StartProjectVersionResponse
- * // Status: "TRAINING_IN_PROGRESS" || "TRAINING_COMPLETED" || "TRAINING_FAILED" || "STARTING" || "RUNNING" || "FAILED" || "STOPPING" || "STOPPED" || "DELETING" || "COPYING_IN_PROGRESS" || "COPYING_COMPLETED" || "COPYING_FAILED",
+ * // Status: "TRAINING_IN_PROGRESS" || "TRAINING_COMPLETED" || "TRAINING_FAILED" || "STARTING" || "RUNNING" || "FAILED" || "STOPPING" || "STOPPED" || "DELETING" || "COPYING_IN_PROGRESS" || "COPYING_COMPLETED" || "COPYING_FAILED" || "DEPRECATED" || "EXPIRED",
* // };
*
* ```
@@ -84,9 +86,11 @@ export interface StartProjectVersionCommandOutput extends StartProjectVersionRes
* operation again.
*
* @throws {@link LimitExceededException} (client fault)
- * An Amazon Rekognition service limit was exceeded. For example, if you start too many Amazon Rekognition Video jobs concurrently, calls to start operations
- * (StartLabelDetection
, for example) will raise a LimitExceededException
exception (HTTP status code: 400) until
- * the number of concurrently running jobs is below the Amazon Rekognition service limit.
+ * An Amazon Rekognition service limit was exceeded. For example, if you start too many jobs
+ * concurrently, subsequent calls to start operations (ex:
+ * StartLabelDetection
) will raise a LimitExceededException
+ * exception (HTTP status code: 400) until the number of concurrently running jobs is below
+ * the Amazon Rekognition service limit.
*
* @throws {@link ProvisionedThroughputExceededException} (client fault)
* The number of requests exceeded your throughput limit. If you want to increase this
diff --git a/clients/client-rekognition/src/commands/StartSegmentDetectionCommand.ts b/clients/client-rekognition/src/commands/StartSegmentDetectionCommand.ts
index 07bfb5ace9ffc..95bcd17d41337 100644
--- a/clients/client-rekognition/src/commands/StartSegmentDetectionCommand.ts
+++ b/clients/client-rekognition/src/commands/StartSegmentDetectionCommand.ts
@@ -119,9 +119,11 @@ export interface StartSegmentDetectionCommandOutput extends StartSegmentDetectio
*
Amazon Rekognition is unable to access the S3 object specified in the request.
*
* @throws {@link LimitExceededException} (client fault)
- * An Amazon Rekognition service limit was exceeded. For example, if you start too many Amazon Rekognition Video jobs concurrently, calls to start operations
- * (StartLabelDetection
, for example) will raise a LimitExceededException
exception (HTTP status code: 400) until
- * the number of concurrently running jobs is below the Amazon Rekognition service limit.
+ * An Amazon Rekognition service limit was exceeded. For example, if you start too many jobs
+ * concurrently, subsequent calls to start operations (ex:
+ * StartLabelDetection
) will raise a LimitExceededException
+ * exception (HTTP status code: 400) until the number of concurrently running jobs is below
+ * the Amazon Rekognition service limit.
*
* @throws {@link ProvisionedThroughputExceededException} (client fault)
* The number of requests exceeded your throughput limit. If you want to increase this
diff --git a/clients/client-rekognition/src/commands/StartTextDetectionCommand.ts b/clients/client-rekognition/src/commands/StartTextDetectionCommand.ts
index f2ec7e6b65ecd..796fd83deac0f 100644
--- a/clients/client-rekognition/src/commands/StartTextDetectionCommand.ts
+++ b/clients/client-rekognition/src/commands/StartTextDetectionCommand.ts
@@ -121,9 +121,11 @@ export interface StartTextDetectionCommandOutput extends StartTextDetectionRespo
*
Amazon Rekognition is unable to access the S3 object specified in the request.
*
* @throws {@link LimitExceededException} (client fault)
- * An Amazon Rekognition service limit was exceeded. For example, if you start too many Amazon Rekognition Video jobs concurrently, calls to start operations
- * (StartLabelDetection
, for example) will raise a LimitExceededException
exception (HTTP status code: 400) until
- * the number of concurrently running jobs is below the Amazon Rekognition service limit.
+ * An Amazon Rekognition service limit was exceeded. For example, if you start too many jobs
+ * concurrently, subsequent calls to start operations (ex:
+ * StartLabelDetection
) will raise a LimitExceededException
+ * exception (HTTP status code: 400) until the number of concurrently running jobs is below
+ * the Amazon Rekognition service limit.
*
* @throws {@link ProvisionedThroughputExceededException} (client fault)
* The number of requests exceeded your throughput limit. If you want to increase this
diff --git a/clients/client-rekognition/src/commands/StopProjectVersionCommand.ts b/clients/client-rekognition/src/commands/StopProjectVersionCommand.ts
index 3b2a817237f83..e30fe67c50dda 100644
--- a/clients/client-rekognition/src/commands/StopProjectVersionCommand.ts
+++ b/clients/client-rekognition/src/commands/StopProjectVersionCommand.ts
@@ -37,8 +37,12 @@ export interface StopProjectVersionCommandOutput extends StopProjectVersionRespo
/**
* @public
- *
Stops a running model. The operation might take a while to complete. To
- * check the current status, call DescribeProjectVersions .
+ *
+ * This operation applies only to Amazon Rekognition Custom Labels.
+ *
+ * Stops a running model. The operation might take a while to complete. To check the
+ * current status, call DescribeProjectVersions . Only applies to Custom
+ * Labels projects.
* This operation requires permissions to perform the rekognition:StopProjectVersion
action.
* @example
* Use a bare-bones client and the command you need to make an API call.
@@ -52,7 +56,7 @@ export interface StopProjectVersionCommandOutput extends StopProjectVersionRespo
* const command = new StopProjectVersionCommand(input);
* const response = await client.send(command);
* // { // StopProjectVersionResponse
- * // Status: "TRAINING_IN_PROGRESS" || "TRAINING_COMPLETED" || "TRAINING_FAILED" || "STARTING" || "RUNNING" || "FAILED" || "STOPPING" || "STOPPED" || "DELETING" || "COPYING_IN_PROGRESS" || "COPYING_COMPLETED" || "COPYING_FAILED",
+ * // Status: "TRAINING_IN_PROGRESS" || "TRAINING_COMPLETED" || "TRAINING_FAILED" || "STARTING" || "RUNNING" || "FAILED" || "STOPPING" || "STOPPED" || "DELETING" || "COPYING_IN_PROGRESS" || "COPYING_COMPLETED" || "COPYING_FAILED" || "DEPRECATED" || "EXPIRED",
* // };
*
* ```
diff --git a/clients/client-rekognition/src/commands/UpdateDatasetEntriesCommand.ts b/clients/client-rekognition/src/commands/UpdateDatasetEntriesCommand.ts
index 114d0d721a911..34d3f580088fc 100644
--- a/clients/client-rekognition/src/commands/UpdateDatasetEntriesCommand.ts
+++ b/clients/client-rekognition/src/commands/UpdateDatasetEntriesCommand.ts
@@ -37,7 +37,10 @@ export interface UpdateDatasetEntriesCommandOutput extends UpdateDatasetEntriesR
/**
* @public
- * Adds or updates one or more entries (images) in a dataset. An entry is a JSON Line which contains the
+ *
+ * This operation applies only to Amazon Rekognition Custom Labels.
+ *
+ *
Adds or updates one or more entries (images) in a dataset. An entry is a JSON Line which contains the
* information for a single image, including
* the image location, assigned labels, and object location bounding boxes. For more information,
* see Image-Level labels in manifest files and Object localization in manifest files in the Amazon Rekognition Custom Labels Developer Guide .
@@ -94,9 +97,11 @@ export interface UpdateDatasetEntriesCommandOutput extends UpdateDatasetEntriesR
* operation again.
*
* @throws {@link LimitExceededException} (client fault)
- * An Amazon Rekognition service limit was exceeded. For example, if you start too many Amazon Rekognition Video jobs concurrently, calls to start operations
- * (StartLabelDetection
, for example) will raise a LimitExceededException
exception (HTTP status code: 400) until
- * the number of concurrently running jobs is below the Amazon Rekognition service limit.
+ * An Amazon Rekognition service limit was exceeded. For example, if you start too many jobs
+ * concurrently, subsequent calls to start operations (ex:
+ * StartLabelDetection
) will raise a LimitExceededException
+ * exception (HTTP status code: 400) until the number of concurrently running jobs is below
+ * the Amazon Rekognition service limit.
*
* @throws {@link ProvisionedThroughputExceededException} (client fault)
* The number of requests exceeded your throughput limit. If you want to increase this
diff --git a/clients/client-rekognition/src/models/models_0.ts b/clients/client-rekognition/src/models/models_0.ts
index 2c9af4d857781..bc5f7ff83ee82 100644
--- a/clients/client-rekognition/src/models/models_0.ts
+++ b/clients/client-rekognition/src/models/models_0.ts
@@ -2130,9 +2130,11 @@ export interface CopyProjectVersionResponse {
/**
* @public
- *
An Amazon Rekognition service limit was exceeded. For example, if you start too many Amazon Rekognition Video jobs concurrently, calls to start operations
- * (StartLabelDetection
, for example) will raise a LimitExceededException
exception (HTTP status code: 400) until
- * the number of concurrently running jobs is below the Amazon Rekognition service limit.
+ * An Amazon Rekognition service limit was exceeded. For example, if you start too many jobs
+ * concurrently, subsequent calls to start operations (ex:
+ * StartLabelDetection
) will raise a LimitExceededException
+ * exception (HTTP status code: 400) until the number of concurrently running jobs is below
+ * the Amazon Rekognition service limit.
*/
export class LimitExceededException extends __BaseException {
readonly name: "LimitExceededException" = "LimitExceededException";
@@ -2438,6 +2440,34 @@ export interface CreateFaceLivenessSessionResponse {
SessionId: string | undefined;
}
+/**
+ * @public
+ * @enum
+ */
+export const ProjectAutoUpdate = {
+ DISABLED: "DISABLED",
+ ENABLED: "ENABLED",
+} as const;
+
+/**
+ * @public
+ */
+export type ProjectAutoUpdate = (typeof ProjectAutoUpdate)[keyof typeof ProjectAutoUpdate];
+
+/**
+ * @public
+ * @enum
+ */
+export const CustomizationFeature = {
+ CONTENT_MODERATION: "CONTENT_MODERATION",
+ CUSTOM_LABELS: "CUSTOM_LABELS",
+} as const;
+
+/**
+ * @public
+ */
+export type CustomizationFeature = (typeof CustomizationFeature)[keyof typeof CustomizationFeature];
+
/**
* @public
*/
@@ -2447,6 +2477,20 @@ export interface CreateProjectRequest {
* The name of the project to create.
*/
ProjectName: string | undefined;
+
+ /**
+ * @public
+ * Specifies feature that is being customized. If no value is provided CUSTOM_LABELS is used as a default.
+ */
+ Feature?: CustomizationFeature | string;
+
+ /**
+ * @public
+ * Specifies whether automatic retraining should be attempted for the versions of the
+ * project. Automatic retraining is done as a best effort. Required argument for Content
+ * Moderation. Applicable only to adapters.
+ */
+ AutoUpdate?: ProjectAutoUpdate | string;
}
/**
@@ -2463,7 +2507,33 @@ export interface CreateProjectResponse {
/**
* @public
- * The dataset used for testing. Optionally, if AutoCreate
is set, Amazon Rekognition Custom Labels uses the
+ *
Configuration options for Content Moderation training.
+ */
+export interface CustomizationFeatureContentModerationConfig {
+ /**
+ * @public
+ * The confidence level you plan to use to identify if unsafe content is present during inference.
+ */
+ ConfidenceThreshold?: number;
+}
+
+/**
+ * @public
+ * Feature specific configuration for the training job. Configuration provided for the job must match
+ * the feature type parameter associated with project. If configuration
+ * and feature type do not match an InvalidParameterException is returned.
+ */
+export interface CustomizationFeatureConfig {
+ /**
+ * @public
+ * Configuration options for Custom Moderation training.
+ */
+ ContentModeration?: CustomizationFeatureContentModerationConfig;
+}
+
+/**
+ * @public
+ * The dataset used for testing. Optionally, if AutoCreate
is set, Amazon Rekognition uses the
* training dataset to create a test dataset with a temporary split of the training dataset.
*/
export interface TestingData {
@@ -2475,8 +2545,8 @@ export interface TestingData {
/**
* @public
- * If specified, Amazon Rekognition Custom Labels temporarily splits the training dataset (80%) to create a test dataset (20%) for the training job.
- * After training completes, the test dataset is not stored and the training dataset reverts to its previous size.
+ * If specified, Rekognition splits training dataset to create a test dataset for
+ * the training job.
*/
AutoCreate?: boolean;
}
@@ -2488,7 +2558,8 @@ export interface TestingData {
export interface TrainingData {
/**
* @public
- * A Sagemaker GroundTruth manifest file that contains the training images (assets).
+ * A manifest file that contains references to the training images and ground-truth
+ * annotations.
*/
Assets?: Asset[];
}
@@ -2499,56 +2570,55 @@ export interface TrainingData {
export interface CreateProjectVersionRequest {
/**
* @public
- * The ARN of the Amazon Rekognition Custom Labels project that
- * manages the model that you want to train.
+ * The ARN of the Amazon Rekognition project that will manage the project version you want to
+ * train.
*/
ProjectArn: string | undefined;
/**
* @public
- * A name for the version of the model. This value must be unique.
+ * A name for the version of the project version. This value must be unique.
*/
VersionName: string | undefined;
/**
* @public
- * The Amazon S3 bucket location to store the results of training.
- * The S3 bucket can be in any AWS account as long as the caller has
- * s3:PutObject
permissions on the S3 bucket.
+ * The Amazon S3 bucket location to store the results of training. The bucket can be any S3
+ * bucket in your AWS account. You need s3:PutObject
permission on the bucket.
+ *
*/
OutputConfig: OutputConfig | undefined;
/**
* @public
- * Specifies an external manifest that the services uses to train the model.
+ *
Specifies an external manifest that the services uses to train the project version.
* If you specify TrainingData
you must also specify TestingData
.
- * The project must not have any associated datasets.
- *
+ * The project must not have any associated datasets.
*/
TrainingData?: TrainingData;
/**
* @public
- * Specifies an external manifest that the service uses to test the model.
- * If you specify TestingData
you must also specify TrainingData
.
- * The project must not have any associated datasets.
+ * Specifies an external manifest that the service uses to test the project version. If
+ * you specify TestingData
you must also specify TrainingData
. The
+ * project must not have any associated datasets.
*/
TestingData?: TestingData;
/**
* @public
- * A set of tags (key-value pairs) that you want to attach to the model.
+ * A set of tags (key-value pairs) that you want to attach to the project version.
*/
Tags?: Record;
/**
* @public
- * The identifier for your AWS Key Management Service key (AWS KMS key).
- * You can supply the Amazon Resource Name (ARN) of your KMS key, the ID of your KMS key,
- * an alias for your KMS key, or an alias ARN.
- * The key is used to encrypt training and test images copied into the service for model training.
- * Your source images are unaffected. The key is also used to encrypt training results
- * and manifest files written to the output Amazon S3 bucket (OutputConfig
).
+ * The identifier for your AWS Key Management Service key (AWS KMS key). You can supply
+ * the Amazon Resource Name (ARN) of your KMS key, the ID of your KMS key, an alias for
+ * your KMS key, or an alias ARN. The key is used to encrypt training images, test images, and manifest files copied
+ * into the service for the project version. Your source images are unaffected. The
+ * key is also used to encrypt training results and manifest files written to the output Amazon S3
+ * bucket (OutputConfig
).
* If you choose to use your own KMS key, you need the following permissions on the KMS key.
*
*
@@ -2568,6 +2638,18 @@ export interface CreateProjectVersionRequest {
* using a key that AWS owns and manages.
*/
KmsKeyId?: string;
+
+ /**
+ * @public
+ * A description applied to the project version being created.
+ */
+ VersionDescription?: string;
+
+ /**
+ * @public
+ * Feature-specific configuration of the training job. If the job configuration does not match the feature type associated with the project, an InvalidParameterException is returned.
+ */
+ FeatureConfig?: CustomizationFeatureConfig;
}
/**
@@ -2576,8 +2658,9 @@ export interface CreateProjectVersionRequest {
export interface CreateProjectVersionResponse {
/**
* @public
- * The ARN of the model version that was created. Use DescribeProjectVersion
- * to get the current status of the training operation.
+ * The ARN of the model or the project version that was created. Use
+ * DescribeProjectVersion
to get the current status of the training
+ * operation.
*/
ProjectVersionArn?: string;
}
@@ -3453,7 +3536,8 @@ export class InvalidPolicyRevisionIdException extends __BaseException {
export interface DeleteProjectVersionRequest {
/**
* @public
- * The Amazon Resource Name (ARN) of the model version that you want to delete.
+ * The Amazon Resource Name (ARN) of the project version that you want to
+ * delete.
*/
ProjectVersionArn: string | undefined;
}
@@ -3467,6 +3551,8 @@ export const ProjectVersionStatus = {
COPYING_FAILED: "COPYING_FAILED",
COPYING_IN_PROGRESS: "COPYING_IN_PROGRESS",
DELETING: "DELETING",
+ DEPRECATED: "DEPRECATED",
+ EXPIRED: "EXPIRED",
FAILED: "FAILED",
RUNNING: "RUNNING",
STARTING: "STARTING",
@@ -3622,7 +3708,7 @@ export interface DescribeProjectsRequest {
/**
* @public
* If the previous response was incomplete (because there is more
- * results to retrieve), Amazon Rekognition Custom Labels returns a pagination token in the response. You can use this pagination
+ * results to retrieve), Rekognition returns a pagination token in the response. You can use this pagination
* token to retrieve the next set of results.
*/
NextToken?: string;
@@ -3637,10 +3723,17 @@ export interface DescribeProjectsRequest {
/**
* @public
- * A list of the projects that you want Amazon Rekognition Custom Labels to describe. If you don't specify a value,
+ *
A list of the projects that you want Rekognition to describe. If you don't specify a value,
* the response includes descriptions for all the projects in your AWS account.
*/
ProjectNames?: string[];
+
+ /**
+ * @public
+ * Specifies the type of customization to filter projects by. If no value is specified,
+ * CUSTOM_LABELS is used as a default.
+ */
+ Features?: (CustomizationFeature | string)[];
}
/**
@@ -3673,6 +3766,18 @@ export interface ProjectDescription {
*
*/
Datasets?: DatasetMetadata[];
+
+ /**
+ * @public
+ * Specifies the project that is being customized.
+ */
+ Feature?: CustomizationFeature | string;
+
+ /**
+ * @public
+ * Indicates whether automatic retraining will be attempted for the versions of the project. Applies only to adapters.
+ */
+ AutoUpdate?: ProjectAutoUpdate | string;
}
/**
@@ -3688,7 +3793,7 @@ export interface DescribeProjectsResponse {
/**
* @public
* If the previous response was incomplete (because there is more
- * results to retrieve), Amazon Rekognition Custom Labels returns a pagination token in the response.
+ * results to retrieve), Amazon Rekognition returns a pagination token in the response.
* You can use this pagination token to retrieve the next set of results.
*/
NextToken?: string;
@@ -3730,15 +3835,17 @@ export class InvalidPaginationTokenException extends __BaseException {
export interface DescribeProjectVersionsRequest {
/**
* @public
- * The Amazon Resource Name (ARN) of the project that contains the models you want to describe.
+ * The Amazon Resource Name (ARN) of the project that contains the model/adapter you want
+ * to describe.
*/
ProjectArn: string | undefined;
/**
* @public
- * A list of model version names that you want to describe. You can add up to 10 model version names
- * to the list. If you don't specify a value, all model descriptions are returned. A version name is part of a
- * model (ProjectVersion) ARN. For example, my-model.2020-01-21T09.10.15
is the version name in the following ARN.
+ *
A list of model or project version names that you want to describe. You can add
+ * up to 10 model or project version names to the list. If you don't specify a value, all
+ * project version descriptions are returned. A version name is part of a project version ARN. For example, my-model.2020-01-21T09.10.15
is
+ * the version name in the following ARN.
* arn:aws:rekognition:us-east-1:123456789012:project/getting-started/version/my-model.2020-01-21T09.10.15 /1234567890123
.
*/
VersionNames?: string[];
@@ -3746,7 +3853,7 @@ export interface DescribeProjectVersionsRequest {
/**
* @public
* If the previous response was incomplete (because there is more
- * results to retrieve), Amazon Rekognition Custom Labels returns a pagination token in the response.
+ * results to retrieve), Amazon Rekognition returns a pagination token in the response.
* You can use this pagination token to retrieve the next set of results.
*/
NextToken?: string;
@@ -3826,7 +3933,8 @@ export interface ValidationData {
/**
* @public
- * Sagemaker Groundtruth format manifest files for the input, output and validation datasets that are used and created during testing.
+ * Sagemaker Groundtruth format manifest files for the input, output and validation
+ * datasets that are used and created during testing.
*/
export interface TestingDataResult {
/**
@@ -3851,36 +3959,39 @@ export interface TestingDataResult {
/**
* @public
- * Sagemaker Groundtruth format manifest files for the input, output and validation datasets that are used and created during testing.
+ * The data
+ * validation manifest created for the training dataset during model training.
*/
export interface TrainingDataResult {
/**
* @public
- * The training assets that you supplied for training.
+ * The training data that you supplied.
*/
Input?: TrainingData;
/**
* @public
- * The images (assets) that were actually trained by Amazon Rekognition Custom Labels.
+ * Reference to images (assets) that were actually used during training with trained model
+ * predictions.
*/
Output?: TrainingData;
/**
* @public
- * The location of the data validation manifest. The data validation manifest is created for the training dataset during model training.
+ * A manifest that you supplied for training, with validation results for each
+ * line.
*/
Validation?: ValidationData;
}
/**
* @public
- * A description of a version of an Amazon Rekognition Custom Labels model.
+ * A description of a version of a Amazon Rekognition project version.
*/
export interface ProjectVersionDescription {
/**
* @public
- * The Amazon Resource Name (ARN) of the model version.
+ * The Amazon Resource Name (ARN) of the project version.
*/
ProjectVersionArn?: string;
@@ -3892,8 +4003,8 @@ export interface ProjectVersionDescription {
/**
* @public
- * The minimum number of inference units used by the model. For more information,
- * see StartProjectVersion .
+ * The minimum number of inference units used by the model. Applies only to Custom Labels
+ * projects. For more information, see StartProjectVersion .
*/
MinInferenceUnits?: number;
@@ -3961,8 +4072,8 @@ export interface ProjectVersionDescription {
/**
* @public
- * The maximum number of inference units Amazon Rekognition Custom Labels uses to auto-scale the model.
- * For more information, see StartProjectVersion .
+ * The maximum number of inference units Amazon Rekognition uses to auto-scale the model. Applies
+ * only to Custom Labels projects. For more information, see StartProjectVersion .
*/
MaxInferenceUnits?: number;
@@ -3971,6 +4082,30 @@ export interface ProjectVersionDescription {
* If the model version was copied from a different project, SourceProjectVersionArn
contains the ARN of the source model version.
*/
SourceProjectVersionArn?: string;
+
+ /**
+ * @public
+ * A user-provided description of the project version.
+ */
+ VersionDescription?: string;
+
+ /**
+ * @public
+ * The feature that was customized.
+ */
+ Feature?: CustomizationFeature | string;
+
+ /**
+ * @public
+ * The base detection model version used to create the project version.
+ */
+ BaseModelVersion?: string;
+
+ /**
+ * @public
+ * Feature specific configuration that was applied during training.
+ */
+ FeatureConfig?: CustomizationFeatureConfig;
}
/**
@@ -3979,15 +4114,15 @@ export interface ProjectVersionDescription {
export interface DescribeProjectVersionsResponse {
/**
* @public
- * A list of model descriptions. The list is sorted by the creation date and time of
- * the model versions, latest to earliest.
+ * A list of project version descriptions. The list is sorted by the creation date and
+ * time of the project versions, latest to earliest.
*/
ProjectVersionDescriptions?: ProjectVersionDescription[];
/**
* @public
* If the previous response was incomplete (because there is more
- * results to retrieve), Amazon Rekognition Custom Labels returns a pagination token in the response.
+ * results to retrieve), Amazon Rekognition returns a pagination token in the response.
* You can use this pagination token to retrieve the next set of results.
*/
NextToken?: string;
@@ -4130,7 +4265,10 @@ export interface DescribeStreamProcessorResponse {
export interface DetectCustomLabelsRequest {
/**
* @public
- * The ARN of the model version that you want to use.
+ * The ARN of the model version that you want to use. Only models associated with Custom
+ * Labels projects accepted by the operation. If a provided ARN refers to a model version
+ * associated with a project for a different feature type, then an InvalidParameterException
+ * is returned.
*/
ProjectVersionArn: string | undefined;
@@ -4802,6 +4940,13 @@ export interface DetectModerationLabelsRequest {
* will be sent to.
*/
HumanLoopConfig?: HumanLoopConfig;
+
+ /**
+ * @public
+ * Identifier for the custom adapter. Expects the ProjectVersionArn as a value.
+ * Use the CreateProject or CreateProjectVersion APIs to create a custom adapter.
+ */
+ ProjectVersion?: string;
}
/**
@@ -4843,7 +4988,7 @@ export interface DetectModerationLabelsResponse {
/**
* @public
- * Version number of the moderation detection model that was used to detect unsafe
+ *
Version number of the base moderation detection model that was used to detect unsafe
* content.
*/
ModerationModelVersion?: string;
@@ -4853,6 +4998,14 @@ export interface DetectModerationLabelsResponse {
* Shows the results of the human in the loop evaluation.
*/
HumanLoopActivationOutput?: HumanLoopActivationOutput;
+
+ /**
+ * @public
+ * Identifier of the custom adapter that was used during inference. If
+ * during inference the adapter was EXPIRED, then the parameter will not be returned,
+ * indicating that a base moderation detection project version was used.
+ */
+ ProjectVersion?: string;
}
/**
@@ -8125,140 +8278,6 @@ export interface SearchedFaceDetails {
FaceDetail?: FaceDetail;
}
-/**
- * @public
- * @enum
- */
-export const UnsearchedFaceReason = {
- EXCEEDS_MAX_FACES: "EXCEEDS_MAX_FACES",
- EXTREME_POSE: "EXTREME_POSE",
- FACE_NOT_LARGEST: "FACE_NOT_LARGEST",
- LOW_BRIGHTNESS: "LOW_BRIGHTNESS",
- LOW_CONFIDENCE: "LOW_CONFIDENCE",
- LOW_FACE_QUALITY: "LOW_FACE_QUALITY",
- LOW_SHARPNESS: "LOW_SHARPNESS",
- SMALL_BOUNDING_BOX: "SMALL_BOUNDING_BOX",
-} as const;
-
-/**
- * @public
- */
-export type UnsearchedFaceReason = (typeof UnsearchedFaceReason)[keyof typeof UnsearchedFaceReason];
-
-/**
- * @public
- * Face details inferred from the image but not used for search. The response attribute
- * contains reasons for why a face wasn't used for Search.
- */
-export interface UnsearchedFace {
- /**
- * @public
- * Structure containing attributes of the face that the algorithm detected.
- * A FaceDetail
object contains either the default facial attributes or all
- * facial attributes. The default attributes are BoundingBox
,
- * Confidence
, Landmarks
, Pose
, and
- * Quality
.
- *
- * GetFaceDetection is the only Amazon Rekognition Video stored video operation that can
- * return a FaceDetail
object with all attributes. To specify which attributes to
- * return, use the FaceAttributes
input parameter for StartFaceDetection . The following Amazon Rekognition Video operations return only the default
- * attributes. The corresponding Start operations don't have a FaceAttributes
input
- * parameter:
- *
- *
- * GetCelebrityRecognition
- *
- *
- * GetPersonTracking
- *
- *
- * GetFaceSearch
- *
- *
- * The Amazon Rekognition Image DetectFaces and IndexFaces operations
- * can return all facial attributes. To specify which attributes to return, use the
- * Attributes
input parameter for DetectFaces
. For
- * IndexFaces
, use the DetectAttributes
input parameter.
- */
- FaceDetails?: FaceDetail;
-
- /**
- * @public
- * Reasons why a face wasn't used for Search.
- */
- Reasons?: (UnsearchedFaceReason | string)[];
-}
-
-/**
- * @public
- */
-export interface SearchUsersByImageResponse {
- /**
- * @public
- * An array of UserID objects that matched the input face, along with the confidence in the
- * match. The returned structure will be empty if there are no matches. Returned if the
- * SearchUsersByImageResponse action is successful.
- */
- UserMatches?: UserMatch[];
-
- /**
- * @public
- * Version number of the face detection model associated with the input collection
- * CollectionId.
- */
- FaceModelVersion?: string;
-
- /**
- * @public
- * A list of FaceDetail objects containing the BoundingBox for the largest face in image, as
- * well as the confidence in the bounding box, that was searched for matches. If no valid face is
- * detected in the image the response will contain no SearchedFace object.
- */
- SearchedFace?: SearchedFaceDetails;
-
- /**
- * @public
- * List of UnsearchedFace objects. Contains the face details infered from the specified image
- * but not used for search. Contains reasons that describe why a face wasn't used for Search.
- *
- */
- UnsearchedFaces?: UnsearchedFace[];
-}
-
-/**
- * @public
- */
-export interface StartCelebrityRecognitionRequest {
- /**
- * @public
- * The video in which you want to recognize celebrities. The video must be stored
- * in an Amazon S3 bucket.
- */
- Video: Video | undefined;
-
- /**
- * @public
- * Idempotent token used to identify the start request. If you use the same token with multiple
- * StartCelebrityRecognition
requests, the same JobId
is returned. Use
- * ClientRequestToken
to prevent the same job from being accidently started more than once.
- */
- ClientRequestToken?: string;
-
- /**
- * @public
- * The Amazon SNS topic ARN that you want Amazon Rekognition Video to publish the completion status of the
- * celebrity recognition analysis to. The Amazon SNS topic must have a topic name that begins with AmazonRekognition if you are using the AmazonRekognitionServiceRole permissions policy.
- */
- NotificationChannel?: NotificationChannel;
-
- /**
- * @public
- * An identifier you specify that's returned in the completion notification that's published to your Amazon Simple Notification Service topic.
- * For example, you can use JobTag
to group related jobs and identify them in the completion notification.
- */
- JobTag?: string;
-}
-
/**
* @internal
*/
diff --git a/clients/client-rekognition/src/models/models_1.ts b/clients/client-rekognition/src/models/models_1.ts
index 30965097a4ced..02b0e6e9d18f9 100644
--- a/clients/client-rekognition/src/models/models_1.ts
+++ b/clients/client-rekognition/src/models/models_1.ts
@@ -7,18 +7,155 @@ import {
DatasetChanges,
DetectionFilter,
FaceAttributes,
+ FaceDetail,
KinesisVideoStreamStartSelector,
LabelDetectionFeatureName,
LabelDetectionSettings,
NotificationChannel,
ProjectVersionStatus,
RegionOfInterest,
+ SearchedFaceDetails,
SegmentType,
StreamProcessorDataSharingPreference,
+ UserMatch,
Video,
} from "./models_0";
import { RekognitionServiceException as __BaseException } from "./RekognitionServiceException";
+/**
+ * @public
+ * @enum
+ */
+export const UnsearchedFaceReason = {
+ EXCEEDS_MAX_FACES: "EXCEEDS_MAX_FACES",
+ EXTREME_POSE: "EXTREME_POSE",
+ FACE_NOT_LARGEST: "FACE_NOT_LARGEST",
+ LOW_BRIGHTNESS: "LOW_BRIGHTNESS",
+ LOW_CONFIDENCE: "LOW_CONFIDENCE",
+ LOW_FACE_QUALITY: "LOW_FACE_QUALITY",
+ LOW_SHARPNESS: "LOW_SHARPNESS",
+ SMALL_BOUNDING_BOX: "SMALL_BOUNDING_BOX",
+} as const;
+
+/**
+ * @public
+ */
+export type UnsearchedFaceReason = (typeof UnsearchedFaceReason)[keyof typeof UnsearchedFaceReason];
+
+/**
+ * @public
+ * Face details inferred from the image but not used for search. The response attribute
+ * contains reasons for why a face wasn't used for Search.
+ */
+export interface UnsearchedFace {
+ /**
+ * @public
+ * Structure containing attributes of the face that the algorithm detected.
+ * A FaceDetail
object contains either the default facial attributes or all
+ * facial attributes. The default attributes are BoundingBox
,
+ * Confidence
, Landmarks
, Pose
, and
+ * Quality
.
+ *
+ * GetFaceDetection is the only Amazon Rekognition Video stored video operation that can
+ * return a FaceDetail
object with all attributes. To specify which attributes to
+ * return, use the FaceAttributes
input parameter for StartFaceDetection . The following Amazon Rekognition Video operations return only the default
+ * attributes. The corresponding Start operations don't have a FaceAttributes
input
+ * parameter:
+ *
+ *
+ * GetCelebrityRecognition
+ *
+ *
+ * GetPersonTracking
+ *
+ *
+ * GetFaceSearch
+ *
+ *
+ * The Amazon Rekognition Image DetectFaces and IndexFaces operations
+ * can return all facial attributes. To specify which attributes to return, use the
+ * Attributes
input parameter for DetectFaces
. For
+ * IndexFaces
, use the DetectAttributes
input parameter.
+ */
+ FaceDetails?: FaceDetail;
+
+ /**
+ * @public
+ * Reasons why a face wasn't used for Search.
+ */
+ Reasons?: (UnsearchedFaceReason | string)[];
+}
+
+/**
+ * @public
+ */
+export interface SearchUsersByImageResponse {
+ /**
+ * @public
+ * An array of UserID objects that matched the input face, along with the confidence in the
+ * match. The returned structure will be empty if there are no matches. Returned if the
+ * SearchUsersByImageResponse action is successful.
+ */
+ UserMatches?: UserMatch[];
+
+ /**
+ * @public
+ * Version number of the face detection model associated with the input collection
+ * CollectionId.
+ */
+ FaceModelVersion?: string;
+
+ /**
+ * @public
+ * A list of FaceDetail objects containing the BoundingBox for the largest face in image, as
+ * well as the confidence in the bounding box, that was searched for matches. If no valid face is
+ * detected in the image the response will contain no SearchedFace object.
+ */
+ SearchedFace?: SearchedFaceDetails;
+
+ /**
+ * @public
+ * List of UnsearchedFace objects. Contains the face details infered from the specified image
+ * but not used for search. Contains reasons that describe why a face wasn't used for Search.
+ *
+ */
+ UnsearchedFaces?: UnsearchedFace[];
+}
+
+/**
+ * @public
+ */
+export interface StartCelebrityRecognitionRequest {
+ /**
+ * @public
+ * The video in which you want to recognize celebrities. The video must be stored
+ * in an Amazon S3 bucket.
+ */
+ Video: Video | undefined;
+
+ /**
+ * @public
+ * Idempotent token used to identify the start request. If you use the same token with multiple
+ * StartCelebrityRecognition
requests, the same JobId
is returned. Use
+ * ClientRequestToken
to prevent the same job from being accidently started more than once.
+ */
+ ClientRequestToken?: string;
+
+ /**
+ * @public
+ * The Amazon SNS topic ARN that you want Amazon Rekognition Video to publish the completion status of the
+ * celebrity recognition analysis to. The Amazon SNS topic must have a topic name that begins with AmazonRekognition if you are using the AmazonRekognitionServiceRole permissions policy.
+ */
+ NotificationChannel?: NotificationChannel;
+
+ /**
+ * @public
+ * An identifier you specify that's returned in the completion notification that's published to your Amazon Simple Notification Service topic.
+ * For example, you can use JobTag
to group related jobs and identify them in the completion notification.
+ */
+ JobTag?: string;
+}
+
/**
* @public
*/
@@ -361,11 +498,6 @@ export interface StartProjectVersionRequest {
* @public
* The minimum number of inference units to use. A single
* inference unit represents 1 hour of processing.
- * For information about the number
- * of transactions per second (TPS) that an inference unit can support, see
- * Running a trained Amazon Rekognition Custom Labels model in the
- * Amazon Rekognition Custom Labels Guide.
- *
* Use a higher number to increase the TPS throughput of your model. You are charged for the number
* of inference units that you use.
*
@@ -670,7 +802,7 @@ export interface StartTextDetectionResponse {
export interface StopProjectVersionRequest {
/**
* @public
- * The Amazon Resource Name (ARN) of the model version that you want to delete.
+ * The Amazon Resource Name (ARN) of the model version that you want to stop.
* This operation requires permissions to perform the rekognition:StopProjectVersion
action.
*/
ProjectVersionArn: string | undefined;
diff --git a/clients/client-rekognition/src/protocols/Aws_json1_1.ts b/clients/client-rekognition/src/protocols/Aws_json1_1.ts
index ac27d9e456c2f..bb536d3ecf457 100644
--- a/clients/client-rekognition/src/protocols/Aws_json1_1.ts
+++ b/clients/client-rekognition/src/protocols/Aws_json1_1.ts
@@ -217,6 +217,9 @@ import {
CreateProjectVersionRequest,
CreateStreamProcessorRequest,
CreateUserRequest,
+ CustomizationFeature,
+ CustomizationFeatureConfig,
+ CustomizationFeatureContentModerationConfig,
CustomLabel,
DatasetChanges,
DatasetDescription,
@@ -373,7 +376,6 @@ import {
SearchFacesRequest,
SearchFacesResponse,
SearchUsersByImageRequest,
- SearchUsersByImageResponse,
SearchUsersRequest,
SearchUsersResponse,
SegmentDetection,
@@ -382,7 +384,6 @@ import {
SessionNotFoundException,
ShotSegment,
Smile,
- StartCelebrityRecognitionRequest,
StreamProcessorDataSharingPreference,
StreamProcessorInput,
StreamProcessorNotificationChannel,
@@ -396,13 +397,14 @@ import {
ThrottlingException,
TrainingData,
UnindexedFace,
- UnsearchedFace,
UnsuccessfulFaceAssociation,
UserMatch,
Video,
VideoMetadata,
} from "../models/models_0";
import {
+ SearchUsersByImageResponse,
+ StartCelebrityRecognitionRequest,
StartContentModerationRequest,
StartFaceDetectionRequest,
StartFaceSearchRequest,
@@ -423,6 +425,7 @@ import {
StreamProcessorParameterToDelete,
StreamProcessorSettingsForUpdate,
TagResourceRequest,
+ UnsearchedFace,
UntagResourceRequest,
UpdateDatasetEntriesRequest,
UpdateStreamProcessorRequest,
@@ -530,7 +533,7 @@ export const se_CreateProjectVersionCommand = async (
): Promise<__HttpRequest> => {
const headers: __HeaderBag = sharedHeaders("CreateProjectVersion");
let body: any;
- body = JSON.stringify(_json(input));
+ body = JSON.stringify(se_CreateProjectVersionRequest(input, context));
return buildHttpRpcRequest(context, headers, "/", undefined, body);
};
@@ -3123,6 +3126,12 @@ const de_DetectModerationLabelsCommandError = async (
case "ProvisionedThroughputExceededException":
case "com.amazonaws.rekognition#ProvisionedThroughputExceededException":
throw await de_ProvisionedThroughputExceededExceptionRes(parsedOutput, context);
+ case "ResourceNotFoundException":
+ case "com.amazonaws.rekognition#ResourceNotFoundException":
+ throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
+ case "ResourceNotReadyException":
+ case "com.amazonaws.rekognition#ResourceNotReadyException":
+ throw await de_ResourceNotReadyExceptionRes(parsedOutput, context);
case "ThrottlingException":
case "com.amazonaws.rekognition#ThrottlingException":
throw await de_ThrottlingExceptionRes(parsedOutput, context);
@@ -6541,7 +6550,22 @@ const se_ConnectedHomeSettingsForUpdate = (input: ConnectedHomeSettingsForUpdate
// se_CreateProjectRequest omitted.
-// se_CreateProjectVersionRequest omitted.
+/**
+ * serializeAws_json1_1CreateProjectVersionRequest
+ */
+const se_CreateProjectVersionRequest = (input: CreateProjectVersionRequest, context: __SerdeContext): any => {
+ return take(input, {
+ FeatureConfig: (_) => se_CustomizationFeatureConfig(_, context),
+ KmsKeyId: [],
+ OutputConfig: _json,
+ ProjectArn: [],
+ Tags: _json,
+ TestingData: _json,
+ TrainingData: _json,
+ VersionDescription: [],
+ VersionName: [],
+ });
+};
/**
* serializeAws_json1_1CreateStreamProcessorRequest
@@ -6572,6 +6596,29 @@ const se_CreateUserRequest = (input: CreateUserRequest, context: __SerdeContext)
});
};
+/**
+ * serializeAws_json1_1CustomizationFeatureConfig
+ */
+const se_CustomizationFeatureConfig = (input: CustomizationFeatureConfig, context: __SerdeContext): any => {
+ return take(input, {
+ ContentModeration: (_) => se_CustomizationFeatureContentModerationConfig(_, context),
+ });
+};
+
+/**
+ * serializeAws_json1_1CustomizationFeatureContentModerationConfig
+ */
+const se_CustomizationFeatureContentModerationConfig = (
+ input: CustomizationFeatureContentModerationConfig,
+ context: __SerdeContext
+): any => {
+ return take(input, {
+ ConfidenceThreshold: __serializeFloat,
+ });
+};
+
+// se_CustomizationFeatures omitted.
+
/**
* serializeAws_json1_1DatasetChanges
*/
@@ -6680,6 +6727,7 @@ const se_DetectModerationLabelsRequest = (input: DetectModerationLabelsRequest,
HumanLoopConfig: _json,
Image: (_) => se_Image(_, context),
MinConfidence: __serializeFloat,
+ ProjectVersion: [],
});
};
@@ -7450,6 +7498,27 @@ const de_CoversBodyPart = (output: any, context: __SerdeContext): CoversBodyPart
// de_CreateUserResponse omitted.
+/**
+ * deserializeAws_json1_1CustomizationFeatureConfig
+ */
+const de_CustomizationFeatureConfig = (output: any, context: __SerdeContext): CustomizationFeatureConfig => {
+ return take(output, {
+ ContentModeration: (_: any) => de_CustomizationFeatureContentModerationConfig(_, context),
+ }) as any;
+};
+
+/**
+ * deserializeAws_json1_1CustomizationFeatureContentModerationConfig
+ */
+const de_CustomizationFeatureContentModerationConfig = (
+ output: any,
+ context: __SerdeContext
+): CustomizationFeatureContentModerationConfig => {
+ return take(output, {
+ ConfidenceThreshold: __limitedParseFloat32,
+ }) as any;
+};
+
/**
* deserializeAws_json1_1CustomLabel
*/
@@ -7685,6 +7754,7 @@ const de_DetectModerationLabelsResponse = (output: any, context: __SerdeContext)
HumanLoopActivationOutput: (_: any) => de_HumanLoopActivationOutput(_, context),
ModerationLabels: (_: any) => de_ModerationLabels(_, context),
ModerationModelVersion: __expectString,
+ ProjectVersion: __expectString,
}) as any;
};
@@ -8513,8 +8583,10 @@ const de_Pose = (output: any, context: __SerdeContext): Pose => {
*/
const de_ProjectDescription = (output: any, context: __SerdeContext): ProjectDescription => {
return take(output, {
+ AutoUpdate: __expectString,
CreationTimestamp: (_: any) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
Datasets: (_: any) => de_DatasetMetadataList(_, context),
+ Feature: __expectString,
ProjectArn: __expectString,
Status: __expectString,
}) as any;
@@ -8563,9 +8635,12 @@ const de_ProjectPolicy = (output: any, context: __SerdeContext): ProjectPolicy =
*/
const de_ProjectVersionDescription = (output: any, context: __SerdeContext): ProjectVersionDescription => {
return take(output, {
+ BaseModelVersion: __expectString,
BillableTrainingTimeInSeconds: __expectLong,
CreationTimestamp: (_: any) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
EvaluationResult: (_: any) => de_EvaluationResult(_, context),
+ Feature: __expectString,
+ FeatureConfig: (_: any) => de_CustomizationFeatureConfig(_, context),
KmsKeyId: __expectString,
ManifestSummary: _json,
MaxInferenceUnits: __expectInt32,
@@ -8578,6 +8653,7 @@ const de_ProjectVersionDescription = (output: any, context: __SerdeContext): Pro
TestingDataResult: _json,
TrainingDataResult: _json,
TrainingEndTimestamp: (_: any) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
+ VersionDescription: __expectString,
}) as any;
};
diff --git a/codegen/sdk-codegen/aws-models/rekognition.json b/codegen/sdk-codegen/aws-models/rekognition.json
index e5a608c2bf302..80c82dfc6d15c 100644
--- a/codegen/sdk-codegen/aws-models/rekognition.json
+++ b/codegen/sdk-codegen/aws-models/rekognition.json
@@ -144,16 +144,12 @@
"output": {
"UnsuccessfulFaceAssociations": [
{
- "Reasons": [
- "LOW_MATCH_CONFIDENCE"
- ],
+ "Reasons": ["LOW_MATCH_CONFIDENCE"],
"FaceId": "f5817d37-94f6-4335-bfee-6cf79a3d806e",
"Confidence": 0.9375374913215637
},
{
- "Reasons": [
- "ASSOCIATED_TO_A_DIFFERENT_USER"
- ],
+ "Reasons": ["ASSOCIATED_TO_A_DIFFERENT_USER"],
"FaceId": "851cb847-dccc-4fea-9309-9f4805967855",
"UserId": "demoUser2"
}
@@ -1217,7 +1213,7 @@
}
],
"traits": {
- "smithy.api#documentation": "Copies a version of an Amazon Rekognition Custom Labels model from a source project to a destination project. The source and\n destination projects can be in different AWS accounts but must be in the same AWS Region.\n You can't copy a model to another AWS service.\n \n
\n To copy a model version to a different AWS account, you need to create a resource-based policy known as a\n project policy . You attach the project policy to the\n source project by calling PutProjectPolicy . The project policy\n gives permission to copy the model version from a trusting AWS account to a trusted account.
\n For more information creating and attaching a project policy, see Attaching a project policy (SDK)\n in the Amazon Rekognition Custom Labels Developer Guide .\n
\n If you are copying a model version to a project in the same AWS account, you don't need to create a project policy.
\n \n To copy a model, the destination project, source project, and source model version must already exist.
\n \n Copying a model version takes a while to complete. To get the current status, call DescribeProjectVersions and check the value of Status
in the\n ProjectVersionDescription object. The copy operation has finished when\n the value of Status
is COPYING_COMPLETED
.
\n This operation requires permissions to perform the rekognition:CopyProjectVersion
action.
",
+ "smithy.api#documentation": "\n This operation applies only to Amazon Rekognition Custom Labels.
\n \n Copies a version of an Amazon Rekognition Custom Labels model from a source project to a destination project. The source and\n destination projects can be in different AWS accounts but must be in the same AWS Region.\n You can't copy a model to another AWS service.\n \n
\n To copy a model version to a different AWS account, you need to create a resource-based policy known as a\n project policy . You attach the project policy to the\n source project by calling PutProjectPolicy . The project policy\n gives permission to copy the model version from a trusting AWS account to a trusted account.
\n For more information creating and attaching a project policy, see Attaching a project policy (SDK)\n in the Amazon Rekognition Custom Labels Developer Guide .\n
\n If you are copying a model version to a project in the same AWS account, you don't need to create a project policy.
\n \n Copying project versions is supported only for Custom Labels models.
\n To copy a model, the destination project, source project, and source model version\n must already exist.
\n \n Copying a model version takes a while to complete. To get the current status, call DescribeProjectVersions and check the value of Status
in the\n ProjectVersionDescription object. The copy operation has finished when\n the value of Status
is COPYING_COMPLETED
.
\n This operation requires permissions to perform the rekognition:CopyProjectVersion
action.
",
"smithy.api#examples": [
{
"title": "CopyProjectVersion",
@@ -1466,7 +1462,7 @@
}
],
"traits": {
- "smithy.api#documentation": "Creates a new Amazon Rekognition Custom Labels dataset. You can create a dataset by using\n an Amazon Sagemaker format manifest file or by copying an existing Amazon Rekognition Custom Labels dataset.
\n To create a training dataset for a project, specify TRAIN
for the value of \n DatasetType
. To create the test dataset for a project,\n specify TEST
for the value of DatasetType
.\n
\n The response from CreateDataset
is the Amazon Resource Name (ARN) for the dataset.\n Creating a dataset takes a while to complete. Use DescribeDataset to check the \n current status. The dataset created successfully if the value of Status
is\n CREATE_COMPLETE
.
\n To check if any non-terminal errors occurred, call ListDatasetEntries \nand check for the presence of errors
lists in the JSON Lines.
\n Dataset creation fails if a terminal error occurs (Status
= CREATE_FAILED
). \n Currently, you can't access the terminal error information.\n \n
\n For more information, see Creating dataset in the Amazon Rekognition Custom Labels Developer Guide .
\n This operation requires permissions to perform the rekognition:CreateDataset
action.\n If you want to copy an existing dataset, you also require permission to perform the rekognition:ListDatasetEntries
action.
",
+ "smithy.api#documentation": "\n This operation applies only to Amazon Rekognition Custom Labels.
\n \n Creates a new Amazon Rekognition Custom Labels dataset. You can create a dataset by using\n an Amazon Sagemaker format manifest file or by copying an existing Amazon Rekognition Custom Labels dataset.
\n To create a training dataset for a project, specify TRAIN
for the value of \n DatasetType
. To create the test dataset for a project,\n specify TEST
for the value of DatasetType
.\n
\n The response from CreateDataset
is the Amazon Resource Name (ARN) for the dataset.\n Creating a dataset takes a while to complete. Use DescribeDataset to check the \n current status. The dataset created successfully if the value of Status
is\n CREATE_COMPLETE
.
\n To check if any non-terminal errors occurred, call ListDatasetEntries \nand check for the presence of errors
lists in the JSON Lines.
\n Dataset creation fails if a terminal error occurs (Status
= CREATE_FAILED
). \n Currently, you can't access the terminal error information.\n \n
\n For more information, see Creating dataset in the Amazon Rekognition Custom Labels Developer Guide .
\n This operation requires permissions to perform the rekognition:CreateDataset
action.\n If you want to copy an existing dataset, you also require permission to perform the rekognition:ListDatasetEntries
action.
",
"smithy.api#examples": [
{
"title": "To create an Amazon Rekognition Custom Labels dataset",
@@ -1655,7 +1651,7 @@
}
],
"traits": {
- "smithy.api#documentation": "Creates a new Amazon Rekognition Custom Labels project. A project is a group of resources (datasets, model versions) \n that you use to create and manage Amazon Rekognition Custom Labels models.
\n This operation requires permissions to perform the rekognition:CreateProject
action.
",
+ "smithy.api#documentation": "Creates a new Amazon Rekognition project. A project is a group of resources (datasets, model\n versions) that you use to create and manage a Amazon Rekognition Custom Labels Model or custom adapter. You can\n specify a feature to create the project with, if no feature is specified then Custom Labels\n is used by default. For adapters, you can also choose whether or not to have the project\n auto update by using the AutoUpdate argument. This operation requires permissions to\n perform the rekognition:CreateProject
action.
",
"smithy.api#examples": [
{
"title": "To create an Amazon Rekognition Custom Labels project",
@@ -1679,6 +1675,18 @@
"smithy.api#documentation": "The name of the project to create.
",
"smithy.api#required": {}
}
+ },
+ "Feature": {
+ "target": "com.amazonaws.rekognition#CustomizationFeature",
+ "traits": {
+ "smithy.api#documentation": "Specifies feature that is being customized. If no value is provided CUSTOM_LABELS is used as a default.
"
+ }
+ },
+ "AutoUpdate": {
+ "target": "com.amazonaws.rekognition#ProjectAutoUpdate",
+ "traits": {
+ "smithy.api#documentation": "Specifies whether automatic retraining should be attempted for the versions of the\n project. Automatic retraining is done as a best effort. Required argument for Content\n Moderation. Applicable only to adapters.
"
+ }
}
},
"traits": {
@@ -1737,7 +1745,7 @@
}
],
"traits": {
- "smithy.api#documentation": "Creates a new version of a model and begins training. \n Models are managed as part of an Amazon Rekognition Custom Labels project. \n The response from CreateProjectVersion
\n is an Amazon Resource Name (ARN) for the version of the model.
\n Training uses the training and test datasets associated with the project. \n For more information, see Creating training and test dataset in the Amazon Rekognition Custom Labels Developer Guide .\n
\n \n You can train a model in a project that doesn't have associated datasets by specifying manifest files in the\n TrainingData
and TestingData
fields.\n
\n If you open the console after training a model with manifest files, Amazon Rekognition Custom Labels creates\n the datasets for you using the most recent manifest files. You can no longer train\n a model version for the project by specifying manifest files.
\n Instead of training with a project without associated datasets,\n we recommend that you use the manifest\n files to create training and test datasets for the project.
\n \n Training takes a while to complete. You can get the current status by calling\n DescribeProjectVersions . Training completed successfully if\n the value of the Status
field is TRAINING_COMPLETED
.
\n If training \n fails, see Debugging a failed model training in the Amazon Rekognition Custom Labels developer guide.
\n Once training has successfully completed, call DescribeProjectVersions to\n get the training results and evaluate the model. For more information, see Improving a trained Amazon Rekognition Custom Labels model\n in the Amazon Rekognition Custom Labels developers guide.\n
\n After evaluating the model, you start the model\n by calling StartProjectVersion .
\n This operation requires permissions to perform the rekognition:CreateProjectVersion
action.
",
+ "smithy.api#documentation": "Creates a new version of Amazon Rekognition project (like a Custom Labels model or a custom adapter)\n and begins training. Models and adapters are managed as part of a Rekognition project. The\n response from CreateProjectVersion
is an Amazon Resource Name (ARN) for the\n project version.
\n The FeatureConfig operation argument allows you to configure specific model or adapter\n settings. You can provide a description to the project version by using the\n VersionDescription argment. Training can take a while to complete. You can get the current\n status by calling DescribeProjectVersions . Training completed\n successfully if the value of the Status
field is\n TRAINING_COMPLETED
. Once training has successfully completed, call DescribeProjectVersions to get the training results and evaluate the\n model.
\n This operation requires permissions to perform the\n rekognition:CreateProjectVersion
action.
\n \n \n The following applies only to projects with Amazon Rekognition Custom Labels as the chosen\n feature: \n
\n You can train a model in a project that doesn't have associated datasets by specifying manifest files in the\n TrainingData
and TestingData
fields.\n
\n If you open the console after training a model with manifest files, Amazon Rekognition Custom Labels creates\n the datasets for you using the most recent manifest files. You can no longer train\n a model version for the project by specifying manifest files.
\n Instead of training with a project without associated datasets,\n we recommend that you use the manifest\n files to create training and test datasets for the project.
\n \n
",
"smithy.api#examples": [
{
"title": "To train an Amazon Rekognition Custom Labels model",
@@ -1763,46 +1771,58 @@
"ProjectArn": {
"target": "com.amazonaws.rekognition#ProjectArn",
"traits": {
- "smithy.api#documentation": "The ARN of the Amazon Rekognition Custom Labels project that \n manages the model that you want to train.
",
+ "smithy.api#documentation": "The ARN of the Amazon Rekognition project that will manage the project version you want to\n train.
",
"smithy.api#required": {}
}
},
"VersionName": {
"target": "com.amazonaws.rekognition#VersionName",
"traits": {
- "smithy.api#documentation": "A name for the version of the model. This value must be unique.
",
+ "smithy.api#documentation": "A name for the version of the project version. This value must be unique.
",
"smithy.api#required": {}
}
},
"OutputConfig": {
"target": "com.amazonaws.rekognition#OutputConfig",
"traits": {
- "smithy.api#documentation": "The Amazon S3 bucket location to store the results of training.\n The S3 bucket can be in any AWS account as long as the caller has\n s3:PutObject
permissions on the S3 bucket.
",
+ "smithy.api#documentation": "The Amazon S3 bucket location to store the results of training. The bucket can be any S3\n bucket in your AWS account. You need s3:PutObject
permission on the bucket.\n
",
"smithy.api#required": {}
}
},
"TrainingData": {
"target": "com.amazonaws.rekognition#TrainingData",
"traits": {
- "smithy.api#documentation": "Specifies an external manifest that the services uses to train the model.\n If you specify TrainingData
you must also specify TestingData
.\n The project must not have any associated datasets.\n
"
+ "smithy.api#documentation": "Specifies an external manifest that the services uses to train the project version.\n If you specify TrainingData
you must also specify TestingData
.\n The project must not have any associated datasets.
"
}
},
"TestingData": {
"target": "com.amazonaws.rekognition#TestingData",
"traits": {
- "smithy.api#documentation": "Specifies an external manifest that the service uses to test the model.\n If you specify TestingData
you must also specify TrainingData
.\n The project must not have any associated datasets.
"
+ "smithy.api#documentation": "Specifies an external manifest that the service uses to test the project version. If\n you specify TestingData
you must also specify TrainingData
. The\n project must not have any associated datasets.
"
}
},
"Tags": {
"target": "com.amazonaws.rekognition#TagMap",
"traits": {
- "smithy.api#documentation": " A set of tags (key-value pairs) that you want to attach to the model.
"
+ "smithy.api#documentation": " A set of tags (key-value pairs) that you want to attach to the project version.
"
}
},
"KmsKeyId": {
"target": "com.amazonaws.rekognition#KmsKeyId",
"traits": {
- "smithy.api#documentation": "The identifier for your AWS Key Management Service key (AWS KMS key).\n You can supply the Amazon Resource Name (ARN) of your KMS key, the ID of your KMS key,\n an alias for your KMS key, or an alias ARN.\n The key is used to encrypt training and test images copied into the service for model training.\n Your source images are unaffected. The key is also used to encrypt training results\n and manifest files written to the output Amazon S3 bucket (OutputConfig
).
\n If you choose to use your own KMS key, you need the following permissions on the KMS key.
\n \n \n kms:CreateGrant
\n \n \n kms:DescribeKey
\n \n \n kms:GenerateDataKey
\n \n \n kms:Decrypt
\n \n \n If you don't specify a value for KmsKeyId
, images copied into the service are encrypted\n using a key that AWS owns and manages.
"
+ "smithy.api#documentation": "The identifier for your AWS Key Management Service key (AWS KMS key). You can supply\n the Amazon Resource Name (ARN) of your KMS key, the ID of your KMS key, an alias for\n your KMS key, or an alias ARN. The key is used to encrypt training images, test images, and manifest files copied\n into the service for the project version. Your source images are unaffected. The\n key is also used to encrypt training results and manifest files written to the output Amazon S3\n bucket (OutputConfig
).
\n If you choose to use your own KMS key, you need the following permissions on the KMS key.
\n \n \n kms:CreateGrant
\n \n \n kms:DescribeKey
\n \n \n kms:GenerateDataKey
\n \n \n kms:Decrypt
\n \n \n If you don't specify a value for KmsKeyId
, images copied into the service are encrypted\n using a key that AWS owns and manages.
"
+ }
+ },
+ "VersionDescription": {
+ "target": "com.amazonaws.rekognition#VersionDescription",
+ "traits": {
+ "smithy.api#documentation": "A description applied to the project version being created.
"
+ }
+ },
+ "FeatureConfig": {
+ "target": "com.amazonaws.rekognition#CustomizationFeatureConfig",
+ "traits": {
+ "smithy.api#documentation": "Feature-specific configuration of the training job. If the job configuration does not match the feature type associated with the project, an InvalidParameterException is returned.
"
}
}
},
@@ -1816,7 +1836,7 @@
"ProjectVersionArn": {
"target": "com.amazonaws.rekognition#ProjectVersionArn",
"traits": {
- "smithy.api#documentation": "The ARN of the model version that was created. Use DescribeProjectVersion
\n to get the current status of the training operation.
"
+ "smithy.api#documentation": "The ARN of the model or the project version that was created. Use\n DescribeProjectVersion
to get the current status of the training\n operation.
"
}
}
},
@@ -2065,6 +2085,63 @@
"target": "com.amazonaws.rekognition#CustomLabel"
}
},
+ "com.amazonaws.rekognition#CustomizationFeature": {
+ "type": "enum",
+ "members": {
+ "CONTENT_MODERATION": {
+ "target": "smithy.api#Unit",
+ "traits": {
+ "smithy.api#enumValue": "CONTENT_MODERATION"
+ }
+ },
+ "CUSTOM_LABELS": {
+ "target": "smithy.api#Unit",
+ "traits": {
+ "smithy.api#enumValue": "CUSTOM_LABELS"
+ }
+ }
+ }
+ },
+ "com.amazonaws.rekognition#CustomizationFeatureConfig": {
+ "type": "structure",
+ "members": {
+ "ContentModeration": {
+ "target": "com.amazonaws.rekognition#CustomizationFeatureContentModerationConfig",
+ "traits": {
+ "smithy.api#documentation": "Configuration options for Custom Moderation training.
"
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#documentation": "Feature specific configuration for the training job. Configuration provided for the job must match \n the feature type parameter associated with project. If configuration \n and feature type do not match an InvalidParameterException is returned.
"
+ }
+ },
+ "com.amazonaws.rekognition#CustomizationFeatureContentModerationConfig": {
+ "type": "structure",
+ "members": {
+ "ConfidenceThreshold": {
+ "target": "com.amazonaws.rekognition#Percent",
+ "traits": {
+ "smithy.api#documentation": "The confidence level you plan to use to identify if unsafe content is present during inference.
"
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#documentation": "Configuration options for Content Moderation training.
"
+ }
+ },
+ "com.amazonaws.rekognition#CustomizationFeatures": {
+ "type": "list",
+ "member": {
+ "target": "com.amazonaws.rekognition#CustomizationFeature"
+ },
+ "traits": {
+ "smithy.api#length": {
+ "min": 1,
+ "max": 2
+ }
+ }
+ },
"com.amazonaws.rekognition#DatasetArn": {
"type": "string",
"traits": {
@@ -2524,7 +2601,7 @@
}
],
"traits": {
- "smithy.api#documentation": "Deletes an existing Amazon Rekognition Custom Labels dataset.\n Deleting a dataset might take while. Use DescribeDataset to check the \n current status. The dataset is still deleting if the value of Status
is\n DELETE_IN_PROGRESS
. If you try to access the dataset after it is deleted, you get\n a ResourceNotFoundException
exception.\n\n
\n You can't delete a dataset while it is creating (Status
= CREATE_IN_PROGRESS
)\n or if the dataset is updating (Status
= UPDATE_IN_PROGRESS
).
\n This operation requires permissions to perform the rekognition:DeleteDataset
action.
",
+ "smithy.api#documentation": "\n This operation applies only to Amazon Rekognition Custom Labels.
\n \n Deletes an existing Amazon Rekognition Custom Labels dataset.\n Deleting a dataset might take while. Use DescribeDataset to check the \n current status. The dataset is still deleting if the value of Status
is\n DELETE_IN_PROGRESS
. If you try to access the dataset after it is deleted, you get\n a ResourceNotFoundException
exception.\n\n
\n You can't delete a dataset while it is creating (Status
= CREATE_IN_PROGRESS
)\n or if the dataset is updating (Status
= UPDATE_IN_PROGRESS
).
\n This operation requires permissions to perform the rekognition:DeleteDataset
action.
",
"smithy.api#examples": [
{
"title": "To delete an Amazon Rekognition Custom Labels dataset",
@@ -2595,14 +2672,10 @@
"documentation": "This operation deletes one or more faces from a Rekognition collection.",
"input": {
"CollectionId": "myphotos",
- "FaceIds": [
- "ff43d742-0c13-5d16-a3e8-03d3f58e980b"
- ]
+ "FaceIds": ["ff43d742-0c13-5d16-a3e8-03d3f58e980b"]
},
"output": {
- "DeletedFaces": [
- "ff43d742-0c13-5d16-a3e8-03d3f58e980b"
- ]
+ "DeletedFaces": ["ff43d742-0c13-5d16-a3e8-03d3f58e980b"]
}
}
]
@@ -2682,7 +2755,7 @@
}
],
"traits": {
- "smithy.api#documentation": "Deletes an Amazon Rekognition Custom Labels project. To delete a project you must first delete all models associated \n with the project. To delete a model, see DeleteProjectVersion .
\n \n DeleteProject
is an asynchronous operation. To check if the project is\n deleted, call DescribeProjects . The project is deleted when the project\n no longer appears in the response. Be aware that deleting a given project will also delete\n any ProjectPolicies
associated with that project.
\n This operation requires permissions to perform the\n rekognition:DeleteProject
action.
",
+ "smithy.api#documentation": "Deletes a Amazon Rekognition project. To delete a project you must first delete all models or\n adapters associated with the project. To delete a model or adapter, see DeleteProjectVersion .
\n \n DeleteProject
is an asynchronous operation. To check if the project is\n deleted, call DescribeProjects . The project is deleted when the project\n no longer appears in the response. Be aware that deleting a given project will also delete\n any ProjectPolicies
associated with that project.
\n This operation requires permissions to perform the\n rekognition:DeleteProject
action.
",
"smithy.api#examples": [
{
"title": "To delete an Amazon Rekognition Custom Labels project",
@@ -2729,7 +2802,7 @@
}
],
"traits": {
- "smithy.api#documentation": "Deletes an existing project policy.
\n To get a list of project policies attached to a project, call ListProjectPolicies . To attach a project policy to a project, call PutProjectPolicy .
\n This operation requires permissions to perform the rekognition:DeleteProjectPolicy
action.
",
+ "smithy.api#documentation": "\n This operation applies only to Amazon Rekognition Custom Labels.
\n \n Deletes an existing project policy.
\n To get a list of project policies attached to a project, call ListProjectPolicies . To attach a project policy to a project, call PutProjectPolicy .
\n This operation requires permissions to perform the rekognition:DeleteProjectPolicy
action.
",
"smithy.api#examples": [
{
"title": "DeleteProjectPolicy",
@@ -2840,7 +2913,7 @@
}
],
"traits": {
- "smithy.api#documentation": "Deletes an Amazon Rekognition Custom Labels model.
\n You can't delete a model if it is running or if it is training. \n To check the status of a model, use the Status
field returned\n from DescribeProjectVersions .\n To stop a running model call StopProjectVersion . If the model\n is training, wait until it finishes.
\n This operation requires permissions to perform the\n rekognition:DeleteProjectVersion
action.
",
+ "smithy.api#documentation": "Deletes a Rekognition project model or project version, like a Amazon Rekognition Custom Labels model or a custom\n adapter.
\n You can't delete a project version if it is running or if it is training. To check\n the status of a project version, use the Status field returned from DescribeProjectVersions . To stop a project version call StopProjectVersion . If the project version is training, wait until it\n finishes.
\n This operation requires permissions to perform the\n rekognition:DeleteProjectVersion
action.
",
"smithy.api#examples": [
{
"title": "To delete an Amazon Rekognition Custom Labels model",
@@ -2861,7 +2934,7 @@
"ProjectVersionArn": {
"target": "com.amazonaws.rekognition#ProjectVersionArn",
"traits": {
- "smithy.api#documentation": "The Amazon Resource Name (ARN) of the model version that you want to delete.
",
+ "smithy.api#documentation": "The Amazon Resource Name (ARN) of the project version that you want to\n delete.
",
"smithy.api#required": {}
}
}
@@ -3140,7 +3213,7 @@
}
],
"traits": {
- "smithy.api#documentation": "\nDescribes an Amazon Rekognition Custom Labels dataset. You can get information such as the current status of a dataset and\nstatistics about the images and labels in a dataset. \n
\n This operation requires permissions to perform the rekognition:DescribeDataset
action.
"
+ "smithy.api#documentation": "\n This operation applies only to Amazon Rekognition Custom Labels.
\n \n \nDescribes an Amazon Rekognition Custom Labels dataset. You can get information such as the current status of a dataset and\nstatistics about the images and labels in a dataset. \n
\n This operation requires permissions to perform the rekognition:DescribeDataset
action.
"
}
},
"com.amazonaws.rekognition#DescribeDatasetRequest": {
@@ -3204,7 +3277,7 @@
}
],
"traits": {
- "smithy.api#documentation": "Lists and describes the versions of a model in an Amazon Rekognition Custom Labels project. You \n can specify up to 10 model versions in ProjectVersionArns
. If\n you don't specify a value, descriptions for all model versions in the project are returned.
\n This operation requires permissions to perform the rekognition:DescribeProjectVersions
\n action.
",
+ "smithy.api#documentation": "Lists and describes the versions of an Amazon Rekognition project. You can specify up to 10 model or\n adapter versions in ProjectVersionArns
. If you don't specify a value,\n descriptions for all model/adapter versions in the project are returned.
\n This operation requires permissions to perform the rekognition:DescribeProjectVersions
\n action.
",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
@@ -3273,20 +3346,20 @@
"ProjectArn": {
"target": "com.amazonaws.rekognition#ProjectArn",
"traits": {
- "smithy.api#documentation": "The Amazon Resource Name (ARN) of the project that contains the models you want to describe.
",
+ "smithy.api#documentation": "The Amazon Resource Name (ARN) of the project that contains the model/adapter you want\n to describe.
",
"smithy.api#required": {}
}
},
"VersionNames": {
"target": "com.amazonaws.rekognition#VersionNames",
"traits": {
- "smithy.api#documentation": "A list of model version names that you want to describe. You can add up to 10 model version names\n to the list. If you don't specify a value, all model descriptions are returned. A version name is part of a\n model (ProjectVersion) ARN. For example, my-model.2020-01-21T09.10.15
is the version name in the following ARN.\n arn:aws:rekognition:us-east-1:123456789012:project/getting-started/version/my-model.2020-01-21T09.10.15 /1234567890123
.
"
+ "smithy.api#documentation": "A list of model or project version names that you want to describe. You can add\n up to 10 model or project version names to the list. If you don't specify a value, all\n project version descriptions are returned. A version name is part of a project version ARN. For example, my-model.2020-01-21T09.10.15
is\n the version name in the following ARN.\n arn:aws:rekognition:us-east-1:123456789012:project/getting-started/version/my-model.2020-01-21T09.10.15 /1234567890123
.
"
}
},
"NextToken": {
"target": "com.amazonaws.rekognition#ExtendedPaginationToken",
"traits": {
- "smithy.api#documentation": "If the previous response was incomplete (because there is more\n results to retrieve), Amazon Rekognition Custom Labels returns a pagination token in the response. \n You can use this pagination token to retrieve the next set of results.
"
+ "smithy.api#documentation": "If the previous response was incomplete (because there is more\n results to retrieve), Amazon Rekognition returns a pagination token in the response. \n You can use this pagination token to retrieve the next set of results.
"
}
},
"MaxResults": {
@@ -3306,13 +3379,13 @@
"ProjectVersionDescriptions": {
"target": "com.amazonaws.rekognition#ProjectVersionDescriptions",
"traits": {
- "smithy.api#documentation": "A list of model descriptions. The list is sorted by the creation date and time of\n the model versions, latest to earliest.
"
+ "smithy.api#documentation": "A list of project version descriptions. The list is sorted by the creation date and\n time of the project versions, latest to earliest.
"
}
},
"NextToken": {
"target": "com.amazonaws.rekognition#ExtendedPaginationToken",
"traits": {
- "smithy.api#documentation": "If the previous response was incomplete (because there is more\n results to retrieve), Amazon Rekognition Custom Labels returns a pagination token in the response. \n You can use this pagination token to retrieve the next set of results.
"
+ "smithy.api#documentation": "If the previous response was incomplete (because there is more\n results to retrieve), Amazon Rekognition returns a pagination token in the response. \n You can use this pagination token to retrieve the next set of results.
"
}
}
},
@@ -3349,7 +3422,7 @@
}
],
"traits": {
- "smithy.api#documentation": "Gets information about your Amazon Rekognition Custom Labels projects.
\n This operation requires permissions to perform the rekognition:DescribeProjects
action.
",
+ "smithy.api#documentation": "Gets information about your Rekognition projects.
\n This operation requires permissions to perform the rekognition:DescribeProjects
action.
",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
@@ -3364,7 +3437,7 @@
"NextToken": {
"target": "com.amazonaws.rekognition#ExtendedPaginationToken",
"traits": {
- "smithy.api#documentation": "If the previous response was incomplete (because there is more\n results to retrieve), Amazon Rekognition Custom Labels returns a pagination token in the response. You can use this pagination \n token to retrieve the next set of results.
"
+ "smithy.api#documentation": "If the previous response was incomplete (because there is more\n results to retrieve), Rekognition returns a pagination token in the response. You can use this pagination \n token to retrieve the next set of results.
"
}
},
"MaxResults": {
@@ -3376,7 +3449,13 @@
"ProjectNames": {
"target": "com.amazonaws.rekognition#ProjectNames",
"traits": {
- "smithy.api#documentation": "A list of the projects that you want Amazon Rekognition Custom Labels to describe. If you don't specify a value, \n the response includes descriptions for all the projects in your AWS account.
"
+ "smithy.api#documentation": "A list of the projects that you want Rekognition to describe. If you don't specify a value, \n the response includes descriptions for all the projects in your AWS account.
"
+ }
+ },
+ "Features": {
+ "target": "com.amazonaws.rekognition#CustomizationFeatures",
+ "traits": {
+ "smithy.api#documentation": "Specifies the type of customization to filter projects by. If no value is specified, \n CUSTOM_LABELS is used as a default.
"
}
}
},
@@ -3396,7 +3475,7 @@
"NextToken": {
"target": "com.amazonaws.rekognition#ExtendedPaginationToken",
"traits": {
- "smithy.api#documentation": "If the previous response was incomplete (because there is more\n results to retrieve), Amazon Rekognition Custom Labels returns a pagination token in the response. \n You can use this pagination token to retrieve the next set of results.
"
+ "smithy.api#documentation": "If the previous response was incomplete (because there is more\n results to retrieve), Amazon Rekognition returns a pagination token in the response. \n You can use this pagination token to retrieve the next set of results.
"
}
}
},
@@ -3584,7 +3663,7 @@
}
],
"traits": {
- "smithy.api#documentation": "Detects custom labels in a supplied image by using an Amazon Rekognition Custom Labels model.
\n You specify which version of a model version to use by using the ProjectVersionArn
input\n parameter.
\n You pass the input image as base64-encoded image bytes or as a reference to an image in\n an Amazon S3 bucket. If you use the AWS CLI to call Amazon Rekognition operations, passing\n image bytes is not supported. The image must be either a PNG or JPEG formatted file.
\n For each object that the model version detects on an image, the API returns a \n (CustomLabel
) object in an array (CustomLabels
).\n Each CustomLabel
object provides the label name (Name
), the level\n of confidence that the image contains the object (Confidence
), and \n object location information, if it exists, for the label on the image (Geometry
).
\n To filter labels that are returned, specify a value for MinConfidence
.\n DetectCustomLabelsLabels
only returns labels with a confidence that's higher than\n the specified value.\n\n The value of MinConfidence
maps to the assumed threshold values\n created during training. For more information, see Assumed threshold \n in the Amazon Rekognition Custom Labels Developer Guide. \n Amazon Rekognition Custom Labels metrics expresses an assumed threshold as a floating point value between 0-1. The range of\n MinConfidence
normalizes the threshold value to a percentage value (0-100). Confidence\n responses from DetectCustomLabels
are also returned as a percentage. \n You can use MinConfidence
to change the precision and recall or your model. \n For more information, see \n Analyzing an image in the Amazon Rekognition Custom Labels Developer Guide.
\n If you don't specify a value for MinConfidence
, DetectCustomLabels
\n returns labels based on the assumed threshold of each label.
\n This is a stateless API operation. That is, the operation does not persist any\n data.
\n This operation requires permissions to perform the\n rekognition:DetectCustomLabels
action.
\n For more information, see \n Analyzing an image in the Amazon Rekognition Custom Labels Developer Guide.
",
+ "smithy.api#documentation": "\n This operation applies only to Amazon Rekognition Custom Labels.
\n \n Detects custom labels in a supplied image by using an Amazon Rekognition Custom Labels model.
\n You specify which version of a model version to use by using the ProjectVersionArn
input\n parameter.
\n You pass the input image as base64-encoded image bytes or as a reference to an image in\n an Amazon S3 bucket. If you use the AWS CLI to call Amazon Rekognition operations, passing\n image bytes is not supported. The image must be either a PNG or JPEG formatted file.
\n For each object that the model version detects on an image, the API returns a \n (CustomLabel
) object in an array (CustomLabels
).\n Each CustomLabel
object provides the label name (Name
), the level\n of confidence that the image contains the object (Confidence
), and \n object location information, if it exists, for the label on the image (Geometry
).
\n To filter labels that are returned, specify a value for MinConfidence
.\n DetectCustomLabelsLabels
only returns labels with a confidence that's higher than\n the specified value.\n\n The value of MinConfidence
maps to the assumed threshold values\n created during training. For more information, see Assumed threshold \n in the Amazon Rekognition Custom Labels Developer Guide. \n Amazon Rekognition Custom Labels metrics expresses an assumed threshold as a floating point value between 0-1. The range of\n MinConfidence
normalizes the threshold value to a percentage value (0-100). Confidence\n responses from DetectCustomLabels
are also returned as a percentage. \n You can use MinConfidence
to change the precision and recall or your model. \n For more information, see \n Analyzing an image in the Amazon Rekognition Custom Labels Developer Guide.
\n If you don't specify a value for MinConfidence
, DetectCustomLabels
\n returns labels based on the assumed threshold of each label.
\n This is a stateless API operation. That is, the operation does not persist any\n data.
\n This operation requires permissions to perform the\n rekognition:DetectCustomLabels
action.
\n For more information, see \n Analyzing an image in the Amazon Rekognition Custom Labels Developer Guide.
",
"smithy.api#examples": [
{
"title": "To detect custom labels in an image with an Amazon Rekognition Custom Labels model",
@@ -3622,7 +3701,7 @@
"ProjectVersionArn": {
"target": "com.amazonaws.rekognition#ProjectVersionArn",
"traits": {
- "smithy.api#documentation": "The ARN of the model version that you want to use.
",
+ "smithy.api#documentation": "The ARN of the model version that you want to use. Only models associated with Custom\n Labels projects accepted by the operation. If a provided ARN refers to a model version\n associated with a project for a different feature type, then an InvalidParameterException\n is returned.
",
"smithy.api#required": {}
}
},
@@ -4148,12 +4227,18 @@
{
"target": "com.amazonaws.rekognition#ProvisionedThroughputExceededException"
},
+ {
+ "target": "com.amazonaws.rekognition#ResourceNotFoundException"
+ },
+ {
+ "target": "com.amazonaws.rekognition#ResourceNotReadyException"
+ },
{
"target": "com.amazonaws.rekognition#ThrottlingException"
}
],
"traits": {
- "smithy.api#documentation": "Detects unsafe content in a specified JPEG or PNG format image. Use\n DetectModerationLabels
to moderate images depending on your requirements. For\n example, you might want to filter images that contain nudity, but not images containing\n suggestive content.
\n To filter images, use the labels returned by DetectModerationLabels
to\n determine which types of content are appropriate.
\n For information about moderation labels, see Detecting Unsafe Content in the\n Amazon Rekognition Developer Guide.
\n You pass the input image either as base64-encoded image bytes or as a reference to an\n image in an Amazon S3 bucket. If you use the\n AWS\n CLI to call Amazon Rekognition operations, passing image bytes is not\n supported. The image must be either a PNG or JPEG formatted file.
"
+ "smithy.api#documentation": "Detects unsafe content in a specified JPEG or PNG format image. Use\n DetectModerationLabels
to moderate images depending on your requirements. For\n example, you might want to filter images that contain nudity, but not images containing\n suggestive content.
\n To filter images, use the labels returned by DetectModerationLabels
to\n determine which types of content are appropriate.
\n For information about moderation labels, see Detecting Unsafe Content in the\n Amazon Rekognition Developer Guide.
\n You pass the input image either as base64-encoded image bytes or as a reference to an\n image in an Amazon S3 bucket. If you use the\n AWS\n CLI to call Amazon Rekognition operations, passing image bytes is not\n supported. The image must be either a PNG or JPEG formatted file.
\n You can specify an adapter to use when retrieving label predictions by providing a\n ProjectVersionArn
to the ProjectVersion
argument.
"
}
},
"com.amazonaws.rekognition#DetectModerationLabelsRequest": {
@@ -4177,6 +4262,12 @@
"traits": {
"smithy.api#documentation": "Sets up the configuration for human evaluation, including the FlowDefinition the image\n will be sent to.
"
}
+ },
+ "ProjectVersion": {
+ "target": "com.amazonaws.rekognition#ProjectVersionId",
+ "traits": {
+ "smithy.api#documentation": "Identifier for the custom adapter. Expects the ProjectVersionArn as a value. \n Use the CreateProject or CreateProjectVersion APIs to create a custom adapter.
"
+ }
}
},
"traits": {
@@ -4195,7 +4286,7 @@
"ModerationModelVersion": {
"target": "com.amazonaws.rekognition#String",
"traits": {
- "smithy.api#documentation": "Version number of the moderation detection model that was used to detect unsafe\n content.
"
+ "smithy.api#documentation": "Version number of the base moderation detection model that was used to detect unsafe\n content.
"
}
},
"HumanLoopActivationOutput": {
@@ -4203,6 +4294,12 @@
"traits": {
"smithy.api#documentation": "Shows the results of the human in the loop evaluation.
"
}
+ },
+ "ProjectVersion": {
+ "target": "com.amazonaws.rekognition#ProjectVersionId",
+ "traits": {
+ "smithy.api#documentation": "Identifier of the custom adapter that was used during inference. If\n during inference the adapter was EXPIRED, then the parameter will not be returned,\n indicating that a base moderation detection project version was used.
"
+ }
}
},
"traits": {
@@ -4459,10 +4556,7 @@
"input": {
"CollectionId": "MyCollection",
"UserId": "DemoUser",
- "FaceIds": [
- "f5817d37-94f6-4335-bfee-6cf79a3d806e",
- "c92265d4-5f9c-43af-a58e-12be0ce02bc3"
- ],
+ "FaceIds": ["f5817d37-94f6-4335-bfee-6cf79a3d806e", "c92265d4-5f9c-43af-a58e-12be0ce02bc3"],
"ClientRequestToken": "550e8400-e29b-41d4-a716-446655440003"
},
"output": {
@@ -4474,9 +4568,7 @@
],
"UnsuccessfulFaceDisassociations": [
{
- "Reasons": [
- "ASSOCIATED_TO_A_DIFFERENT_USER"
- ],
+ "Reasons": ["ASSOCIATED_TO_A_DIFFERENT_USER"],
"FaceId": "f5817d37-94f6-4335-bfee-6cf79a3d806e",
"UserId": "demoUser1"
}
@@ -4621,7 +4713,7 @@
}
],
"traits": {
- "smithy.api#documentation": "Distributes the entries (images) in a training dataset across the training dataset and the test dataset for a project.\n DistributeDatasetEntries
moves 20% of the training dataset images to the test dataset.\n An entry is a JSON Line that describes an image.\n
\n You supply the Amazon Resource Names (ARN) of a project's training dataset and test dataset. \n The training dataset must contain the images that you want to split. The test dataset \n must be empty. The datasets must belong to the same project. To create training and test datasets for a project, call CreateDataset .
\n Distributing a dataset takes a while to complete. To check the status call DescribeDataset
. The operation\n is complete when the Status
field for the training dataset and the test dataset is UPDATE_COMPLETE
. \n If the dataset split fails, the value of Status
is UPDATE_FAILED
.
\n This operation requires permissions to perform the rekognition:DistributeDatasetEntries
action.
",
+ "smithy.api#documentation": "\n This operation applies only to Amazon Rekognition Custom Labels.
\n \n Distributes the entries (images) in a training dataset across the training dataset and the test dataset for a project.\n DistributeDatasetEntries
moves 20% of the training dataset images to the test dataset.\n An entry is a JSON Line that describes an image.\n
\n You supply the Amazon Resource Names (ARN) of a project's training dataset and test dataset. \n The training dataset must contain the images that you want to split. The test dataset \n must be empty. The datasets must belong to the same project. To create training and test datasets for a project, call CreateDataset .
\n Distributing a dataset takes a while to complete. To check the status call DescribeDataset
. The operation\n is complete when the Status
field for the training dataset and the test dataset is UPDATE_COMPLETE
. \n If the dataset split fails, the value of Status
is UPDATE_FAILED
.
\n This operation requires permissions to perform the rekognition:DistributeDatasetEntries
action.
",
"smithy.api#examples": [
{
"title": "To distribute an Amazon Rekognition Custom Labels dataset",
@@ -7954,7 +8046,7 @@
}
},
"traits": {
- "smithy.api#documentation": "An Amazon Rekognition service limit was exceeded. For example, if you start too many Amazon Rekognition Video jobs concurrently, calls to start operations \n (StartLabelDetection
, for example) will raise a LimitExceededException
exception (HTTP status code: 400) until\n the number of concurrently running jobs is below the Amazon Rekognition service limit.
",
+ "smithy.api#documentation": "An Amazon Rekognition service limit was exceeded. For example, if you start too many jobs\n concurrently, subsequent calls to start operations (ex:\n StartLabelDetection
) will raise a LimitExceededException
\n exception (HTTP status code: 400) until the number of concurrently running jobs is below\n the Amazon Rekognition service limit.
",
"smithy.api#error": "client"
}
},
@@ -7996,9 +8088,7 @@
"title": "To list the collections",
"documentation": "This operation returns a list of Rekognition collections.",
"output": {
- "CollectionIds": [
- "myphotos"
- ]
+ "CollectionIds": ["myphotos"]
}
}
],
@@ -8094,16 +8184,14 @@
}
],
"traits": {
- "smithy.api#documentation": "\nLists the entries (images) within a dataset. An entry is a\nJSON Line that contains the information for a single image, including\nthe image location, assigned labels, and object location bounding boxes. For \nmore information, see Creating a manifest file .
\n JSON Lines in the response include information about non-terminal\n errors found in the dataset. \n Non terminal errors are reported in errors
lists within each JSON Line. The\n same information is reported in the training and testing validation result manifests that\n Amazon Rekognition Custom Labels creates during model training.\n
\n You can filter the response in variety of ways, such as choosing which labels to return and returning JSON Lines created after a specific date.\n
\n This operation requires permissions to perform the rekognition:ListDatasetEntries
action.
",
+ "smithy.api#documentation": "\n This operation applies only to Amazon Rekognition Custom Labels.
\n \n \nLists the entries (images) within a dataset. An entry is a\nJSON Line that contains the information for a single image, including\nthe image location, assigned labels, and object location bounding boxes. For \nmore information, see Creating a manifest file .
\n JSON Lines in the response include information about non-terminal\n errors found in the dataset. \n Non terminal errors are reported in errors
lists within each JSON Line. The\n same information is reported in the training and testing validation result manifests that\n Amazon Rekognition Custom Labels creates during model training.\n
\n You can filter the response in variety of ways, such as choosing which labels to return and returning JSON Lines created after a specific date.\n
\n This operation requires permissions to perform the rekognition:ListDatasetEntries
action.
",
"smithy.api#examples": [
{
"title": "To list the entries in an Amazon Rekognition Custom Labels dataset",
"documentation": "Lists the JSON line entries in an Amazon Rekognition Custom Labels dataset.",
"input": {
"DatasetArn": "arn:aws:rekognition:us-east-1:111122223333:project/my-proj-2/dataset/train/1690564858106",
- "ContainsLabels": [
- "camellia"
- ],
+ "ContainsLabels": ["camellia"],
"Labeled": true,
"SourceRefContains": "camellia4.jpg",
"HasErrors": true,
@@ -8244,7 +8332,7 @@
}
],
"traits": {
- "smithy.api#documentation": "Lists the labels in a dataset. Amazon Rekognition Custom Labels uses labels to describe images. For more information, see \n Labeling images .\n
\n \n Lists the labels in a dataset. Amazon Rekognition Custom Labels uses labels to describe images. For more information, see Labeling images\n in the Amazon Rekognition Custom Labels Developer Guide .
",
+ "smithy.api#documentation": "\n This operation applies only to Amazon Rekognition Custom Labels.
\n \n Lists the labels in a dataset. Amazon Rekognition Custom Labels uses labels to describe images. For more information, see \n Labeling images .\n
\n \n Lists the labels in a dataset. Amazon Rekognition Custom Labels uses labels to describe images. For more information, see Labeling images\n in the Amazon Rekognition Custom Labels Developer Guide .
",
"smithy.api#examples": [
{
"title": "To list the entries in an Amazon Rekognition Custom Labels dataset",
@@ -8532,7 +8620,7 @@
}
],
"traits": {
- "smithy.api#documentation": "Gets a list of the project policies attached to a project.
\n To attach a project policy to a project, call PutProjectPolicy . To remove a project policy from a project, call DeleteProjectPolicy .
\n This operation requires permissions to perform the rekognition:ListProjectPolicies
action.
",
+ "smithy.api#documentation": "\n This operation applies only to Amazon Rekognition Custom Labels.
\n \n Gets a list of the project policies attached to a project.
\n To attach a project policy to a project, call PutProjectPolicy . To remove a project policy from a project, call DeleteProjectPolicy .
\n This operation requires permissions to perform the rekognition:ListProjectPolicies
action.
",
"smithy.api#paginated": {
"inputToken": "NextToken",
"outputToken": "NextToken",
@@ -9397,6 +9485,23 @@
"smithy.api#pattern": "^(^arn:[a-z\\d-]+:rekognition:[a-z\\d-]+:\\d{12}:project\\/[a-zA-Z0-9_.\\-]{1,255}\\/[0-9]+$)$"
}
},
+ "com.amazonaws.rekognition#ProjectAutoUpdate": {
+ "type": "enum",
+ "members": {
+ "ENABLED": {
+ "target": "smithy.api#Unit",
+ "traits": {
+ "smithy.api#enumValue": "ENABLED"
+ }
+ },
+ "DISABLED": {
+ "target": "smithy.api#Unit",
+ "traits": {
+ "smithy.api#enumValue": "DISABLED"
+ }
+ }
+ }
+ },
"com.amazonaws.rekognition#ProjectDescription": {
"type": "structure",
"members": {
@@ -9423,6 +9528,18 @@
"traits": {
"smithy.api#documentation": "\n Information about the training and test datasets in the project.\n
"
}
+ },
+ "Feature": {
+ "target": "com.amazonaws.rekognition#CustomizationFeature",
+ "traits": {
+ "smithy.api#documentation": "Specifies the project that is being customized.
"
+ }
+ },
+ "AutoUpdate": {
+ "target": "com.amazonaws.rekognition#ProjectAutoUpdate",
+ "traits": {
+ "smithy.api#documentation": "Indicates whether automatic retraining will be attempted for the versions of the project. Applies only to adapters.
"
+ }
}
},
"traits": {
@@ -9576,7 +9693,7 @@
"ProjectVersionArn": {
"target": "com.amazonaws.rekognition#ProjectVersionArn",
"traits": {
- "smithy.api#documentation": "The Amazon Resource Name (ARN) of the model version.
"
+ "smithy.api#documentation": "The Amazon Resource Name (ARN) of the project version.
"
}
},
"CreationTimestamp": {
@@ -9588,7 +9705,7 @@
"MinInferenceUnits": {
"target": "com.amazonaws.rekognition#InferenceUnits",
"traits": {
- "smithy.api#documentation": "The minimum number of inference units used by the model. For more information,\n see StartProjectVersion .
"
+ "smithy.api#documentation": "The minimum number of inference units used by the model. Applies only to Custom Labels\n projects. For more information, see StartProjectVersion .
"
}
},
"Status": {
@@ -9654,7 +9771,7 @@
"MaxInferenceUnits": {
"target": "com.amazonaws.rekognition#InferenceUnits",
"traits": {
- "smithy.api#documentation": "The maximum number of inference units Amazon Rekognition Custom Labels uses to auto-scale the model.\n For more information, see StartProjectVersion .
"
+ "smithy.api#documentation": "The maximum number of inference units Amazon Rekognition uses to auto-scale the model. Applies\n only to Custom Labels projects. For more information, see StartProjectVersion .
"
}
},
"SourceProjectVersionArn": {
@@ -9662,10 +9779,34 @@
"traits": {
"smithy.api#documentation": "If the model version was copied from a different project, SourceProjectVersionArn
contains the ARN of the source model version.
"
}
+ },
+ "VersionDescription": {
+ "target": "com.amazonaws.rekognition#VersionDescription",
+ "traits": {
+ "smithy.api#documentation": "A user-provided description of the project version.
"
+ }
+ },
+ "Feature": {
+ "target": "com.amazonaws.rekognition#CustomizationFeature",
+ "traits": {
+ "smithy.api#documentation": "The feature that was customized.
"
+ }
+ },
+ "BaseModelVersion": {
+ "target": "com.amazonaws.rekognition#String",
+ "traits": {
+ "smithy.api#documentation": "The base detection model version used to create the project version.
"
+ }
+ },
+ "FeatureConfig": {
+ "target": "com.amazonaws.rekognition#CustomizationFeatureConfig",
+ "traits": {
+ "smithy.api#documentation": "Feature specific configuration that was applied during training.
"
+ }
}
},
"traits": {
- "smithy.api#documentation": "A description of a version of an Amazon Rekognition Custom Labels model.
"
+ "smithy.api#documentation": "A description of a version of a Amazon Rekognition project version.
"
}
},
"com.amazonaws.rekognition#ProjectVersionDescriptions": {
@@ -9674,6 +9815,16 @@
"target": "com.amazonaws.rekognition#ProjectVersionDescription"
}
},
+ "com.amazonaws.rekognition#ProjectVersionId": {
+ "type": "string",
+ "traits": {
+ "smithy.api#length": {
+ "min": 20,
+ "max": 2048
+ },
+ "smithy.api#pattern": "^(^arn:[a-z\\d-]+:rekognition:[a-z\\d-]+:\\d{12}:project\\/[a-zA-Z0-9_.\\-]{1,255}\\/version\\/[a-zA-Z0-9_.\\-]{1,255}\\/[0-9]+$)$"
+ }
+ },
"com.amazonaws.rekognition#ProjectVersionStatus": {
"type": "enum",
"members": {
@@ -9748,6 +9899,18 @@
"traits": {
"smithy.api#enumValue": "COPYING_FAILED"
}
+ },
+ "DEPRECATED": {
+ "target": "smithy.api#Unit",
+ "traits": {
+ "smithy.api#enumValue": "DEPRECATED"
+ }
+ },
+ "EXPIRED": {
+ "target": "smithy.api#Unit",
+ "traits": {
+ "smithy.api#enumValue": "EXPIRED"
+ }
}
}
},
@@ -9981,7 +10144,7 @@
}
],
"traits": {
- "smithy.api#documentation": "Attaches a project policy to a Amazon Rekognition Custom Labels project in a trusting AWS account. A\n project policy specifies that a trusted AWS account can copy a model version from a\n trusting AWS account to a project in the trusted AWS account. To copy a model version you use\n the CopyProjectVersion operation.
\n For more information about the format of a project policy document, see Attaching a project policy (SDK)\n in the Amazon Rekognition Custom Labels Developer Guide .\n
\n The response from PutProjectPolicy
is a revision ID for the project policy.\n You can attach multiple project policies to a project. You can also update an existing\n project policy by specifying the policy revision ID of the existing policy.
\n To remove a project policy from a project, call DeleteProjectPolicy .\n To get a list of project policies attached to a project, call ListProjectPolicies .
\n You copy a model version by calling CopyProjectVersion .
\n This operation requires permissions to perform the rekognition:PutProjectPolicy
action.
",
+ "smithy.api#documentation": "\n This operation applies only to Amazon Rekognition Custom Labels.
\n \n Attaches a project policy to a Amazon Rekognition Custom Labels project in a trusting AWS account. A\n project policy specifies that a trusted AWS account can copy a model version from a\n trusting AWS account to a project in the trusted AWS account. To copy a model version\n you use the CopyProjectVersion operation. Only applies to Custom Labels\n projects.
\n For more information about the format of a project policy document, see Attaching a project policy (SDK)\n in the Amazon Rekognition Custom Labels Developer Guide .\n
\n The response from PutProjectPolicy
is a revision ID for the project policy.\n You can attach multiple project policies to a project. You can also update an existing\n project policy by specifying the policy revision ID of the existing policy.
\n To remove a project policy from a project, call DeleteProjectPolicy .\n To get a list of project policies attached to a project, call ListProjectPolicies .
\n You copy a model version by calling CopyProjectVersion .
\n This operation requires permissions to perform the rekognition:PutProjectPolicy
action.
",
"smithy.api#examples": [
{
"title": "PutProjectPolicy",
@@ -12001,9 +12164,7 @@
"Height": 0.0682177022099495
}
},
- "Reasons": [
- "FACE_NOT_LARGEST"
- ]
+ "Reasons": ["FACE_NOT_LARGEST"]
},
{
"FaceDetails": {
@@ -12014,9 +12175,7 @@
"Height": 0.06347997486591339
}
},
- "Reasons": [
- "FACE_NOT_LARGEST"
- ]
+ "Reasons": ["FACE_NOT_LARGEST"]
}
]
}
@@ -13054,7 +13213,7 @@
}
],
"traits": {
- "smithy.api#documentation": "Starts the running of the version of a model. Starting a model takes a while\n to complete. To check the current state of the model, use DescribeProjectVersions .
\n Once the model is running, you can detect custom labels in new images by calling \n DetectCustomLabels .
\n \n You are charged for the amount of time that the model is running. To stop a running\n model, call StopProjectVersion .
\n \n For more information, see Running a trained Amazon Rekognition Custom Labels model in the Amazon Rekognition Custom Labels Guide.
\n This operation requires permissions to perform the \n rekognition:StartProjectVersion
action.
",
+ "smithy.api#documentation": "\n This operation applies only to Amazon Rekognition Custom Labels.
\n \n Starts the running of the version of a model. Starting a model takes a while to\n complete. To check the current state of the model, use DescribeProjectVersions .
\n Once the model is running, you can detect custom labels in new images by calling \n DetectCustomLabels .
\n \n You are charged for the amount of time that the model is running. To stop a running\n model, call StopProjectVersion .
\n \n This operation requires permissions to perform the \n rekognition:StartProjectVersion
action.
",
"smithy.api#examples": [
{
"title": "To start an Amazon Rekognition Custom Labels model",
@@ -13084,7 +13243,7 @@
"MinInferenceUnits": {
"target": "com.amazonaws.rekognition#InferenceUnits",
"traits": {
- "smithy.api#documentation": "The minimum number of inference units to use. A single\n inference unit represents 1 hour of processing.
\n For information about the number \n of transactions per second (TPS) that an inference unit can support, see \n Running a trained Amazon Rekognition Custom Labels model in the \n Amazon Rekognition Custom Labels Guide.\n
\n Use a higher number to increase the TPS throughput of your model. You are charged for the number\n of inference units that you use.\n
",
+ "smithy.api#documentation": "The minimum number of inference units to use. A single\n inference unit represents 1 hour of processing.
\n Use a higher number to increase the TPS throughput of your model. You are charged for the number\n of inference units that you use.\n
",
"smithy.api#required": {}
}
},
@@ -13493,7 +13652,7 @@
}
],
"traits": {
- "smithy.api#documentation": "Stops a running model. The operation might take a while to complete. To\n check the current status, call DescribeProjectVersions .
\n This operation requires permissions to perform the rekognition:StopProjectVersion
action.
",
+ "smithy.api#documentation": "\n This operation applies only to Amazon Rekognition Custom Labels.
\n \n Stops a running model. The operation might take a while to complete. To check the\n current status, call DescribeProjectVersions . Only applies to Custom\n Labels projects.
\n This operation requires permissions to perform the rekognition:StopProjectVersion
action.
",
"smithy.api#examples": [
{
"title": "To stop an Amazon Rekognition Custom Labels model.",
@@ -13514,7 +13673,7 @@
"ProjectVersionArn": {
"target": "com.amazonaws.rekognition#ProjectVersionArn",
"traits": {
- "smithy.api#documentation": "The Amazon Resource Name (ARN) of the model version that you want to delete.
\n This operation requires permissions to perform the rekognition:StopProjectVersion
action.
",
+ "smithy.api#documentation": "The Amazon Resource Name (ARN) of the model version that you want to stop.
\n This operation requires permissions to perform the rekognition:StopProjectVersion
action.
",
"smithy.api#required": {}
}
}
@@ -14060,12 +14219,12 @@
"target": "com.amazonaws.rekognition#Boolean",
"traits": {
"smithy.api#default": false,
- "smithy.api#documentation": "If specified, Amazon Rekognition Custom Labels temporarily splits the training dataset (80%) to create a test dataset (20%) for the training job.\n After training completes, the test dataset is not stored and the training dataset reverts to its previous size.
"
+ "smithy.api#documentation": "If specified, Rekognition splits training dataset to create a test dataset for\n the training job.
"
}
}
},
"traits": {
- "smithy.api#documentation": "The dataset used for testing. Optionally, if AutoCreate
is set, Amazon Rekognition Custom Labels uses the\n training dataset to create a test dataset with a temporary split of the training dataset.
"
+ "smithy.api#documentation": "The dataset used for testing. Optionally, if AutoCreate
is set, Amazon Rekognition uses the\n training dataset to create a test dataset with a temporary split of the training dataset.
"
}
},
"com.amazonaws.rekognition#TestingDataResult": {
@@ -14091,7 +14250,7 @@
}
},
"traits": {
- "smithy.api#documentation": "Sagemaker Groundtruth format manifest files for the input, output and validation datasets that are used and created during testing.
"
+ "smithy.api#documentation": "Sagemaker Groundtruth format manifest files for the input, output and validation\n datasets that are used and created during testing.
"
}
},
"com.amazonaws.rekognition#TextDetection": {
@@ -14224,7 +14383,7 @@
"Assets": {
"target": "com.amazonaws.rekognition#Assets",
"traits": {
- "smithy.api#documentation": "A Sagemaker GroundTruth manifest file that contains the training images (assets).
"
+ "smithy.api#documentation": "A manifest file that contains references to the training images and ground-truth\n annotations.
"
}
}
},
@@ -14238,24 +14397,24 @@
"Input": {
"target": "com.amazonaws.rekognition#TrainingData",
"traits": {
- "smithy.api#documentation": "The training assets that you supplied for training.
"
+ "smithy.api#documentation": "The training data that you supplied.
"
}
},
"Output": {
"target": "com.amazonaws.rekognition#TrainingData",
"traits": {
- "smithy.api#documentation": "The images (assets) that were actually trained by Amazon Rekognition Custom Labels.
"
+ "smithy.api#documentation": "Reference to images (assets) that were actually used during training with trained model\n predictions.
"
}
},
"Validation": {
"target": "com.amazonaws.rekognition#ValidationData",
"traits": {
- "smithy.api#documentation": "The location of the data validation manifest. The data validation manifest is created for the training dataset during model training.
"
+ "smithy.api#documentation": "A manifest that you supplied for training, with validation results for each\n line.
"
}
}
},
"traits": {
- "smithy.api#documentation": "Sagemaker Groundtruth format manifest files for the input, output and validation datasets that are used and created during testing.
"
+ "smithy.api#documentation": "The data \n validation manifest created for the training dataset during model training.
"
}
},
"com.amazonaws.rekognition#UInteger": {
@@ -14673,7 +14832,7 @@
}
],
"traits": {
- "smithy.api#documentation": "Adds or updates one or more entries (images) in a dataset. An entry is a JSON Line which contains the\n information for a single image, including\n the image location, assigned labels, and object location bounding boxes. For more information, \n see Image-Level labels in manifest files and Object localization in manifest files in the Amazon Rekognition Custom Labels Developer Guide .\n
\n If the source-ref
field in the JSON line references an existing image, the existing image in the dataset\n is updated. \n If source-ref
field doesn't reference an existing image, the image is added as a new image to the dataset.
\n You specify the changes that you want to make in the Changes
input parameter. \n There isn't a limit to the number JSON Lines that you can change, but the size of Changes
must be less\nthan 5MB.
\n \n UpdateDatasetEntries
returns immediatly, but the dataset update might take a while to complete.\n Use DescribeDataset to check the \n current status. The dataset updated successfully if the value of Status
is\n UPDATE_COMPLETE
.
\n To check if any non-terminal errors occured, call ListDatasetEntries \n and check for the presence of errors
lists in the JSON Lines.
\n Dataset update fails if a terminal error occurs (Status
= UPDATE_FAILED
). \n Currently, you can't access the terminal error information from the Amazon Rekognition Custom Labels SDK.\n
\n This operation requires permissions to perform the rekognition:UpdateDatasetEntries
action.
",
+ "smithy.api#documentation": "\n This operation applies only to Amazon Rekognition Custom Labels.
\n \n Adds or updates one or more entries (images) in a dataset. An entry is a JSON Line which contains the\n information for a single image, including\n the image location, assigned labels, and object location bounding boxes. For more information, \n see Image-Level labels in manifest files and Object localization in manifest files in the Amazon Rekognition Custom Labels Developer Guide .\n
\n If the source-ref
field in the JSON line references an existing image, the existing image in the dataset\n is updated. \n If source-ref
field doesn't reference an existing image, the image is added as a new image to the dataset.
\n You specify the changes that you want to make in the Changes
input parameter. \n There isn't a limit to the number JSON Lines that you can change, but the size of Changes
must be less\nthan 5MB.
\n \n UpdateDatasetEntries
returns immediatly, but the dataset update might take a while to complete.\n Use DescribeDataset to check the \n current status. The dataset updated successfully if the value of Status
is\n UPDATE_COMPLETE
.
\n To check if any non-terminal errors occured, call ListDatasetEntries \n and check for the presence of errors
lists in the JSON Lines.
\n Dataset update fails if a terminal error occurs (Status
= UPDATE_FAILED
). \n Currently, you can't access the terminal error information from the Amazon Rekognition Custom Labels SDK.\n
\n This operation requires permissions to perform the rekognition:UpdateDatasetEntries
action.
",
"smithy.api#examples": [
{
"title": "To-add dataset entries to an Amazon Rekognition Custom Labels dataset",
@@ -14943,6 +15102,16 @@
"smithy.api#documentation": "Contains the Amazon S3 bucket location of the validation data for a model training job.
\n The validation data includes error information for individual JSON Lines in the dataset.\n For more information, see Debugging a Failed Model Training in the\n Amazon Rekognition Custom Labels Developer Guide.
\n You get the ValidationData
object for the training dataset (TrainingDataResult )\n and the test dataset (TestingDataResult ) by calling DescribeProjectVersions .
\n The assets array contains a single Asset object. \n The GroundTruthManifest field of the Asset object contains the S3 bucket location of\n the validation data. \n
"
}
},
+ "com.amazonaws.rekognition#VersionDescription": {
+ "type": "string",
+ "traits": {
+ "smithy.api#length": {
+ "min": 1,
+ "max": 255
+ },
+ "smithy.api#pattern": "^[a-zA-Z0-9-_. ()':,;?]+$"
+ }
+ },
"com.amazonaws.rekognition#VersionName": {
"type": "string",
"traits": {
@@ -15097,4 +15266,4 @@
}
}
}
-}
\ No newline at end of file
+}
From 784c6fb6561f80222b9d39f159b6f44ae4be5a2a Mon Sep 17 00:00:00 2001
From: awstools
Date: Thu, 12 Oct 2023 18:24:09 +0000
Subject: [PATCH 30/35] feat(client-controltower): Added new EnabledControl
resource details to ListEnabledControls API and added new GetEnabledControl
API.
---
clients/client-controltower/README.md | 64 +++-
.../client-controltower/src/ControlTower.ts | 79 ++++-
.../src/ControlTowerClient.ts | 59 +++-
.../src/commands/DisableControlCommand.ts | 13 +-
.../src/commands/EnableControlCommand.ts | 14 +-
.../commands/GetControlOperationCommand.ts | 10 +-
.../src/commands/GetEnabledControlCommand.ts | 195 ++++++++++++
.../commands/ListEnabledControlsCommand.ts | 17 +-
.../client-controltower/src/commands/index.ts | 1 +
clients/client-controltower/src/index.ts | 56 +++-
.../src/models/models_0.ts | 266 +++++++++++++++-
.../src/protocols/Aws_restJson1.ts | 99 ++++++
.../sdk-codegen/aws-models/controltower.json | 291 ++++++++++++++++--
13 files changed, 1061 insertions(+), 103 deletions(-)
create mode 100644 clients/client-controltower/src/commands/GetEnabledControlCommand.ts
diff --git a/clients/client-controltower/README.md b/clients/client-controltower/README.md
index 9fd145ac4fcc9..51a7195dbbd07 100644
--- a/clients/client-controltower/README.md
+++ b/clients/client-controltower/README.md
@@ -6,22 +6,31 @@
AWS SDK for JavaScript ControlTower Client for Node.js, Browser and React Native.
-These interfaces allow you to apply the AWS library of pre-defined controls to your
-organizational units, programmatically. In this context, controls are the same as AWS Control Tower guardrails.
+These interfaces allow you to apply the AWS library of pre-defined
+controls to your organizational units, programmatically. In AWS Control Tower, the terms "control" and "guardrail" are synonyms. .
To call these APIs, you'll need to know:
-the ControlARN
for the control--that is, the
-guardrail--you are targeting,
+the controlIdentifier
for the control--or guardrail--you are targeting.
-and the ARN associated with the target organizational unit (OU).
+the ARN associated with the target organizational unit (OU), which we call the targetIdentifier
.
-To get the ControlARN
for your AWS Control Tower guardrail:
+To get the controlIdentifier
for your AWS Control Tower
+control:
-The ControlARN
contains the control name which is specified in each guardrail. For a list of control names for Strongly recommended and Elective guardrails, see Resource identifiers for APIs and guardrails in the Automating tasks section of the AWS Control Tower User Guide. Remember that Mandatory guardrails cannot be added or removed.
+The controlIdentifier
is an ARN that is specified for each
+control. You can view the controlIdentifier
in the console on the Control details page, as well as in the documentation.
+The controlIdentifier
is unique in each AWS Region for each control. You can
+find the controlIdentifier
for each Region and control in the Tables of control metadata in the AWS Control Tower User Guide.
+
+A quick-reference list of control identifers for the AWS Control Tower legacy Strongly recommended and
+Elective controls is given in Resource identifiers for
+APIs and guardrails in the Controls reference guide section
+of the AWS Control Tower User Guide . Remember that Mandatory controls
+cannot be added or removed.
ARN format:
@@ -35,8 +44,9 @@ guardrail--you are targeting,
-To get the ARN for an OU:
+To get the targetIdentifier
:
+The targetIdentifier
is the ARN for an OU.
In the AWS Organizations console, you can find the ARN for the OU on the Organizational unit details page associated with that OU.
@@ -52,17 +62,32 @@ guardrail--you are targeting,
-List of resource identifiers for APIs and guardrails
+Control API input and output examples with CLI
+
+
+
+
+Enable controls with CloudFormation
-Guardrail API examples (CLI)
+Control metadata tables
-Enable controls with AWS CloudFormation
+List of identifiers for legacy controls
+
+
+
+
+Controls reference guide
+
+
+
+
+Controls library groupings
@@ -76,7 +101,14 @@ guardrail--you are targeting,
Recording API Requests
-AWS Control Tower supports AWS CloudTrail, a service that records AWS API calls for your AWS account and delivers log files to an Amazon S3 bucket. By using information collected by CloudTrail, you can determine which requests the AWS Control Tower service received, who made the request and when, and so on. For more about AWS Control Tower and its support for CloudTrail, see Logging AWS Control Tower Actions with AWS CloudTrail in the AWS Control Tower User Guide. To learn more about CloudTrail, including how to turn it on and find your log files, see the AWS CloudTrail User Guide.
+AWS Control Tower supports AWS CloudTrail, a service that records AWS API calls for your
+AWS account and delivers log files to an Amazon S3 bucket. By using information collected by
+CloudTrail, you can determine which requests the AWS Control Tower service received, who made
+the request and when, and so on. For more about AWS Control Tower and its support for
+CloudTrail, see Logging AWS Control Tower
+Actions with AWS CloudTrail in the AWS Control Tower User Guide. To learn more about
+CloudTrail, including how to turn it on and find your log files, see the AWS CloudTrail User
+Guide.
## Installing
@@ -296,6 +328,14 @@ GetControlOperation
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-controltower/classes/getcontroloperationcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-controltower/interfaces/getcontroloperationcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-controltower/interfaces/getcontroloperationcommandoutput.html)
+
+
+
+GetEnabledControl
+
+
+[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-controltower/classes/getenabledcontrolcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-controltower/interfaces/getenabledcontrolcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-controltower/interfaces/getenabledcontrolcommandoutput.html)
+
diff --git a/clients/client-controltower/src/ControlTower.ts b/clients/client-controltower/src/ControlTower.ts
index 0db36eb457028..e1868a5998a1a 100644
--- a/clients/client-controltower/src/ControlTower.ts
+++ b/clients/client-controltower/src/ControlTower.ts
@@ -17,6 +17,11 @@ import {
GetControlOperationCommandInput,
GetControlOperationCommandOutput,
} from "./commands/GetControlOperationCommand";
+import {
+ GetEnabledControlCommand,
+ GetEnabledControlCommandInput,
+ GetEnabledControlCommandOutput,
+} from "./commands/GetEnabledControlCommand";
import {
ListEnabledControlsCommand,
ListEnabledControlsCommandInput,
@@ -28,6 +33,7 @@ const commands = {
DisableControlCommand,
EnableControlCommand,
GetControlOperationCommand,
+ GetEnabledControlCommand,
ListEnabledControlsCommand,
};
@@ -74,6 +80,23 @@ export interface ControlTower {
cb: (err: any, data?: GetControlOperationCommandOutput) => void
): void;
+ /**
+ * @see {@link GetEnabledControlCommand}
+ */
+ getEnabledControl(
+ args: GetEnabledControlCommandInput,
+ options?: __HttpHandlerOptions
+ ): Promise;
+ getEnabledControl(
+ args: GetEnabledControlCommandInput,
+ cb: (err: any, data?: GetEnabledControlCommandOutput) => void
+ ): void;
+ getEnabledControl(
+ args: GetEnabledControlCommandInput,
+ options: __HttpHandlerOptions,
+ cb: (err: any, data?: GetEnabledControlCommandOutput) => void
+ ): void;
+
/**
* @see {@link ListEnabledControlsCommand}
*/
@@ -94,22 +117,31 @@ export interface ControlTower {
/**
* @public
- * These interfaces allow you to apply the AWS library of pre-defined controls to your
- * organizational units, programmatically. In this context, controls are the same as AWS Control Tower guardrails.
+ * These interfaces allow you to apply the AWS library of pre-defined
+ * controls to your organizational units, programmatically. In AWS Control Tower, the terms "control" and "guardrail" are synonyms. .
* To call these APIs, you'll need to know:
*
*
- * the ControlARN
for the control--that is, the
- * guardrail--you are targeting,
+ * the controlIdentifier
for the control--or guardrail--you are targeting.
*
*
- * and the ARN associated with the target organizational unit (OU).
+ * the ARN associated with the target organizational unit (OU), which we call the targetIdentifier
.
*
*
*
- * To get the ControlARN
for your AWS Control Tower guardrail:
+ * To get the controlIdentifier
for your AWS Control Tower
+ * control:
+ *
+ * The controlIdentifier
is an ARN that is specified for each
+ * control. You can view the controlIdentifier
in the console on the Control details page, as well as in the documentation.
+ * The controlIdentifier
is unique in each AWS Region for each control. You can
+ * find the controlIdentifier
for each Region and control in the Tables of control metadata in the AWS Control Tower User Guide.
*
- * The ControlARN
contains the control name which is specified in each guardrail. For a list of control names for Strongly recommended and Elective guardrails, see Resource identifiers for APIs and guardrails in the Automating tasks section of the AWS Control Tower User Guide. Remember that Mandatory guardrails cannot be added or removed.
+ * A quick-reference list of control identifers for the AWS Control Tower legacy Strongly recommended and
+ * Elective controls is given in Resource identifiers for
+ * APIs and guardrails in the Controls reference guide section
+ * of the AWS Control Tower User Guide . Remember that Mandatory controls
+ * cannot be added or removed.
*
*
* ARN format:
@@ -123,8 +155,9 @@ export interface ControlTower {
*
*
*
- * To get the ARN for an OU:
+ * To get the targetIdentifier
:
*
+ * The targetIdentifier
is the ARN for an OU.
* In the AWS Organizations console, you can find the ARN for the OU on the Organizational unit details page associated with that OU.
*
*
@@ -140,17 +173,32 @@ export interface ControlTower {
*
*
*
- * List of resource identifiers for APIs and guardrails
+ * Control API input and output examples with CLI
+ *
+ *
+ *
+ *
+ * Enable controls with CloudFormation
+ *
+ *
+ *
+ *
+ * Control metadata tables
+ *
+ *
+ *
+ *
+ * List of identifiers for legacy controls
*
*
*
*
- * Guardrail API examples (CLI)
+ * Controls reference guide
*
*
*
*
- * Enable controls with AWS CloudFormation
+ * Controls library groupings
*
*
*
@@ -164,7 +212,14 @@ export interface ControlTower {
*
* Recording API Requests
*
- * AWS Control Tower supports AWS CloudTrail, a service that records AWS API calls for your AWS account and delivers log files to an Amazon S3 bucket. By using information collected by CloudTrail, you can determine which requests the AWS Control Tower service received, who made the request and when, and so on. For more about AWS Control Tower and its support for CloudTrail, see Logging AWS Control Tower Actions with AWS CloudTrail in the AWS Control Tower User Guide. To learn more about CloudTrail, including how to turn it on and find your log files, see the AWS CloudTrail User Guide.
+ * AWS Control Tower supports AWS CloudTrail, a service that records AWS API calls for your
+ * AWS account and delivers log files to an Amazon S3 bucket. By using information collected by
+ * CloudTrail, you can determine which requests the AWS Control Tower service received, who made
+ * the request and when, and so on. For more about AWS Control Tower and its support for
+ * CloudTrail, see Logging AWS Control Tower
+ * Actions with AWS CloudTrail in the AWS Control Tower User Guide. To learn more about
+ * CloudTrail, including how to turn it on and find your log files, see the AWS CloudTrail User
+ * Guide.
*/
export class ControlTower extends ControlTowerClient implements ControlTower {}
createAggregatedClient(commands, ControlTower);
diff --git a/clients/client-controltower/src/ControlTowerClient.ts b/clients/client-controltower/src/ControlTowerClient.ts
index 05bffe5006968..bfad797d353b0 100644
--- a/clients/client-controltower/src/ControlTowerClient.ts
+++ b/clients/client-controltower/src/ControlTowerClient.ts
@@ -56,6 +56,7 @@ import {
GetControlOperationCommandInput,
GetControlOperationCommandOutput,
} from "./commands/GetControlOperationCommand";
+import { GetEnabledControlCommandInput, GetEnabledControlCommandOutput } from "./commands/GetEnabledControlCommand";
import {
ListEnabledControlsCommandInput,
ListEnabledControlsCommandOutput,
@@ -78,6 +79,7 @@ export type ServiceInputTypes =
| DisableControlCommandInput
| EnableControlCommandInput
| GetControlOperationCommandInput
+ | GetEnabledControlCommandInput
| ListEnabledControlsCommandInput;
/**
@@ -87,6 +89,7 @@ export type ServiceOutputTypes =
| DisableControlCommandOutput
| EnableControlCommandOutput
| GetControlOperationCommandOutput
+ | GetEnabledControlCommandOutput
| ListEnabledControlsCommandOutput;
/**
@@ -261,22 +264,31 @@ export interface ControlTowerClientResolvedConfig extends ControlTowerClientReso
/**
* @public
- * These interfaces allow you to apply the AWS library of pre-defined controls to your
- * organizational units, programmatically. In this context, controls are the same as AWS Control Tower guardrails.
+ * These interfaces allow you to apply the AWS library of pre-defined
+ * controls to your organizational units, programmatically. In AWS Control Tower, the terms "control" and "guardrail" are synonyms. .
* To call these APIs, you'll need to know:
*
*
- * the ControlARN
for the control--that is, the
- * guardrail--you are targeting,
+ * the controlIdentifier
for the control--or guardrail--you are targeting.
*
*
- * and the ARN associated with the target organizational unit (OU).
+ * the ARN associated with the target organizational unit (OU), which we call the targetIdentifier
.
*
*
*
- * To get the ControlARN
for your AWS Control Tower guardrail:
+ * To get the controlIdentifier
for your AWS Control Tower
+ * control:
*
- * The ControlARN
contains the control name which is specified in each guardrail. For a list of control names for Strongly recommended and Elective guardrails, see Resource identifiers for APIs and guardrails in the Automating tasks section of the AWS Control Tower User Guide. Remember that Mandatory guardrails cannot be added or removed.
+ * The controlIdentifier
is an ARN that is specified for each
+ * control. You can view the controlIdentifier
in the console on the Control details page, as well as in the documentation.
+ * The controlIdentifier
is unique in each AWS Region for each control. You can
+ * find the controlIdentifier
for each Region and control in the Tables of control metadata in the AWS Control Tower User Guide.
+ *
+ * A quick-reference list of control identifers for the AWS Control Tower legacy Strongly recommended and
+ * Elective controls is given in Resource identifiers for
+ * APIs and guardrails in the Controls reference guide section
+ * of the AWS Control Tower User Guide . Remember that Mandatory controls
+ * cannot be added or removed.
*
*
* ARN format:
@@ -290,8 +302,9 @@ export interface ControlTowerClientResolvedConfig extends ControlTowerClientReso
*
*
*
- * To get the ARN for an OU:
+ * To get the targetIdentifier
:
*
+ * The targetIdentifier
is the ARN for an OU.
* In the AWS Organizations console, you can find the ARN for the OU on the Organizational unit details page associated with that OU.
*
*
@@ -307,17 +320,32 @@ export interface ControlTowerClientResolvedConfig extends ControlTowerClientReso
*
*
*
- * List of resource identifiers for APIs and guardrails
+ * Control API input and output examples with CLI
+ *
+ *
+ *
+ *
+ * Enable controls with CloudFormation
+ *
+ *
+ *
+ *
+ * Control metadata tables
+ *
+ *
+ *
+ *
+ * List of identifiers for legacy controls
*
*
*
*
- * Guardrail API examples (CLI)
+ * Controls reference guide
*
*
*
*
- * Enable controls with AWS CloudFormation
+ * Controls library groupings
*
*
*
@@ -331,7 +359,14 @@ export interface ControlTowerClientResolvedConfig extends ControlTowerClientReso
*
* Recording API Requests
*
- * AWS Control Tower supports AWS CloudTrail, a service that records AWS API calls for your AWS account and delivers log files to an Amazon S3 bucket. By using information collected by CloudTrail, you can determine which requests the AWS Control Tower service received, who made the request and when, and so on. For more about AWS Control Tower and its support for CloudTrail, see Logging AWS Control Tower Actions with AWS CloudTrail in the AWS Control Tower User Guide. To learn more about CloudTrail, including how to turn it on and find your log files, see the AWS CloudTrail User Guide.
+ * AWS Control Tower supports AWS CloudTrail, a service that records AWS API calls for your
+ * AWS account and delivers log files to an Amazon S3 bucket. By using information collected by
+ * CloudTrail, you can determine which requests the AWS Control Tower service received, who made
+ * the request and when, and so on. For more about AWS Control Tower and its support for
+ * CloudTrail, see Logging AWS Control Tower
+ * Actions with AWS CloudTrail in the AWS Control Tower User Guide. To learn more about
+ * CloudTrail, including how to turn it on and find your log files, see the AWS CloudTrail User
+ * Guide.
*/
export class ControlTowerClient extends __Client<
__HttpHandlerOptions,
diff --git a/clients/client-controltower/src/commands/DisableControlCommand.ts b/clients/client-controltower/src/commands/DisableControlCommand.ts
index 942c5132b30ad..2bdc0b0b55263 100644
--- a/clients/client-controltower/src/commands/DisableControlCommand.ts
+++ b/clients/client-controltower/src/commands/DisableControlCommand.ts
@@ -37,9 +37,11 @@ export interface DisableControlCommandOutput extends DisableControlOutput, __Met
/**
* @public
- * This API call turns off a control. It starts an asynchronous operation that deletes AWS resources on the specified
- * organizational unit and the accounts it contains. The resources will vary according to the
- * control that you specify.
+ * This API call turns off a control. It starts an asynchronous operation that deletes AWS
+ * resources on the specified organizational unit and the accounts it contains. The resources
+ * will vary according to the control that you specify. For usage examples, see
+ * the AWS Control Tower User Guide
+ * .
* @example
* Use a bare-bones client and the command you need to make an API call.
* ```javascript
@@ -65,8 +67,7 @@ export interface DisableControlCommandOutput extends DisableControlOutput, __Met
* @see {@link ControlTowerClientResolvedConfig | config} for ControlTowerClient's `config` shape.
*
* @throws {@link AccessDeniedException} (client fault)
- * User does not have sufficient access to perform this action.
- *
+ * User does not have sufficient access to perform this action.
*
* @throws {@link ConflictException} (client fault)
* Updating or deleting a resource can cause an inconsistent state.
@@ -78,7 +79,7 @@ export interface DisableControlCommandOutput extends DisableControlOutput, __Met
* Request references a resource which does not exist.
*
* @throws {@link ServiceQuotaExceededException} (client fault)
- * Request would cause a service quota to be exceeded. The limit is 10 concurrent operations.
+ * Request would cause a service quota to be exceeded. The limit is 10 concurrent operations.
*
* @throws {@link ThrottlingException} (client fault)
* Request was denied due to request throttling.
diff --git a/clients/client-controltower/src/commands/EnableControlCommand.ts b/clients/client-controltower/src/commands/EnableControlCommand.ts
index e6bb0d687c501..1407c93a8f9ab 100644
--- a/clients/client-controltower/src/commands/EnableControlCommand.ts
+++ b/clients/client-controltower/src/commands/EnableControlCommand.ts
@@ -37,9 +37,12 @@ export interface EnableControlCommandOutput extends EnableControlOutput, __Metad
/**
* @public
- * This API call activates a control. It starts an asynchronous operation that creates AWS resources on the specified
- * organizational unit and the accounts it contains. The resources created will vary according to
- * the control that you specify.
+ * This API call activates a control. It starts an asynchronous operation that creates AWS
+ * resources on the specified organizational unit and the accounts it contains. The resources
+ * created will vary according to the control that you specify. For usage examples, see
+ * the AWS Control Tower User Guide
+ *
+ *
* @example
* Use a bare-bones client and the command you need to make an API call.
* ```javascript
@@ -65,8 +68,7 @@ export interface EnableControlCommandOutput extends EnableControlOutput, __Metad
* @see {@link ControlTowerClientResolvedConfig | config} for ControlTowerClient's `config` shape.
*
* @throws {@link AccessDeniedException} (client fault)
- * User does not have sufficient access to perform this action.
- *
+ * User does not have sufficient access to perform this action.
*
* @throws {@link ConflictException} (client fault)
* Updating or deleting a resource can cause an inconsistent state.
@@ -78,7 +80,7 @@ export interface EnableControlCommandOutput extends EnableControlOutput, __Metad
* Request references a resource which does not exist.
*
* @throws {@link ServiceQuotaExceededException} (client fault)
- * Request would cause a service quota to be exceeded. The limit is 10 concurrent operations.
+ * Request would cause a service quota to be exceeded. The limit is 10 concurrent operations.
*
* @throws {@link ThrottlingException} (client fault)
* Request was denied due to request throttling.
diff --git a/clients/client-controltower/src/commands/GetControlOperationCommand.ts b/clients/client-controltower/src/commands/GetControlOperationCommand.ts
index 2c0ae5ab51775..e50bd4ee2768f 100644
--- a/clients/client-controltower/src/commands/GetControlOperationCommand.ts
+++ b/clients/client-controltower/src/commands/GetControlOperationCommand.ts
@@ -38,8 +38,11 @@ export interface GetControlOperationCommandOutput extends GetControlOperationOut
/**
* @public
* Returns the status of a particular EnableControl
or
- * DisableControl
operation. Displays a message in case of error.
- * Details for an operation are available for 90 days.
+ * DisableControl
operation. Displays a message in case of error. Details for an
+ * operation are available for 90 days. For usage examples, see
+ * the AWS Control Tower User Guide
+ *
+ *
* @example
* Use a bare-bones client and the command you need to make an API call.
* ```javascript
@@ -70,8 +73,7 @@ export interface GetControlOperationCommandOutput extends GetControlOperationOut
* @see {@link ControlTowerClientResolvedConfig | config} for ControlTowerClient's `config` shape.
*
* @throws {@link AccessDeniedException} (client fault)
- * User does not have sufficient access to perform this action.
- *
+ * User does not have sufficient access to perform this action.
*
* @throws {@link InternalServerException} (server fault)
* Unexpected error during processing of request.
diff --git a/clients/client-controltower/src/commands/GetEnabledControlCommand.ts b/clients/client-controltower/src/commands/GetEnabledControlCommand.ts
new file mode 100644
index 0000000000000..22e67972df42a
--- /dev/null
+++ b/clients/client-controltower/src/commands/GetEnabledControlCommand.ts
@@ -0,0 +1,195 @@
+// smithy-typescript generated code
+import { EndpointParameterInstructions, getEndpointPlugin } from "@smithy/middleware-endpoint";
+import { getSerdePlugin } from "@smithy/middleware-serde";
+import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
+import { Command as $Command } from "@smithy/smithy-client";
+import {
+ FinalizeHandlerArguments,
+ Handler,
+ HandlerExecutionContext,
+ HttpHandlerOptions as __HttpHandlerOptions,
+ MetadataBearer as __MetadataBearer,
+ MiddlewareStack,
+ SerdeContext as __SerdeContext,
+ SMITHY_CONTEXT_KEY,
+} from "@smithy/types";
+
+import { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient";
+import { GetEnabledControlInput, GetEnabledControlOutput } from "../models/models_0";
+import { de_GetEnabledControlCommand, se_GetEnabledControlCommand } from "../protocols/Aws_restJson1";
+
+/**
+ * @public
+ */
+export { __MetadataBearer, $Command };
+/**
+ * @public
+ *
+ * The input for {@link GetEnabledControlCommand}.
+ */
+export interface GetEnabledControlCommandInput extends GetEnabledControlInput {}
+/**
+ * @public
+ *
+ * The output of {@link GetEnabledControlCommand}.
+ */
+export interface GetEnabledControlCommandOutput extends GetEnabledControlOutput, __MetadataBearer {}
+
+/**
+ * @public
+ *
+ * Provides details about the enabled control. For usage examples, see
+ * the AWS Control Tower User Guide
+ * .
+ *
+ * Returned values
+ *
+ *
+ *
+ * TargetRegions: Shows target AWS Regions where the enabled control is available to be deployed.
+ *
+ *
+ * StatusSummary: Provides a detailed summary of the deployment status.
+ *
+ *
+ * DriftSummary: Provides a detailed summary of the drifted status.
+ *
+ *
+ * @example
+ * Use a bare-bones client and the command you need to make an API call.
+ * ```javascript
+ * import { ControlTowerClient, GetEnabledControlCommand } from "@aws-sdk/client-controltower"; // ES Modules import
+ * // const { ControlTowerClient, GetEnabledControlCommand } = require("@aws-sdk/client-controltower"); // CommonJS import
+ * const client = new ControlTowerClient(config);
+ * const input = { // GetEnabledControlInput
+ * enabledControlIdentifier: "STRING_VALUE", // required
+ * };
+ * const command = new GetEnabledControlCommand(input);
+ * const response = await client.send(command);
+ * // { // GetEnabledControlOutput
+ * // enabledControlDetails: { // EnabledControlDetails
+ * // arn: "STRING_VALUE",
+ * // controlIdentifier: "STRING_VALUE",
+ * // targetIdentifier: "STRING_VALUE",
+ * // targetRegions: [ // TargetRegions
+ * // { // Region
+ * // name: "STRING_VALUE",
+ * // },
+ * // ],
+ * // statusSummary: { // EnablementStatusSummary
+ * // status: "STRING_VALUE",
+ * // lastOperationIdentifier: "STRING_VALUE",
+ * // },
+ * // driftStatusSummary: { // DriftStatusSummary
+ * // driftStatus: "STRING_VALUE",
+ * // },
+ * // },
+ * // };
+ *
+ * ```
+ *
+ * @param GetEnabledControlCommandInput - {@link GetEnabledControlCommandInput}
+ * @returns {@link GetEnabledControlCommandOutput}
+ * @see {@link GetEnabledControlCommandInput} for command's `input` shape.
+ * @see {@link GetEnabledControlCommandOutput} for command's `response` shape.
+ * @see {@link ControlTowerClientResolvedConfig | config} for ControlTowerClient's `config` shape.
+ *
+ * @throws {@link AccessDeniedException} (client fault)
+ * User does not have sufficient access to perform this action.
+ *
+ * @throws {@link InternalServerException} (server fault)
+ * Unexpected error during processing of request.
+ *
+ * @throws {@link ResourceNotFoundException} (client fault)
+ * Request references a resource which does not exist.
+ *
+ * @throws {@link ThrottlingException} (client fault)
+ * Request was denied due to request throttling.
+ *
+ * @throws {@link ValidationException} (client fault)
+ * The input fails to satisfy the constraints specified by an AWS service.
+ *
+ * @throws {@link ControlTowerServiceException}
+ * Base exception class for all service exceptions from ControlTower service.
+ *
+ */
+export class GetEnabledControlCommand extends $Command<
+ GetEnabledControlCommandInput,
+ GetEnabledControlCommandOutput,
+ ControlTowerClientResolvedConfig
+> {
+ // Start section: command_properties
+ // End section: command_properties
+
+ public static getEndpointParameterInstructions(): EndpointParameterInstructions {
+ return {
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
+ Endpoint: { type: "builtInParams", name: "endpoint" },
+ Region: { type: "builtInParams", name: "region" },
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
+ };
+ }
+
+ /**
+ * @public
+ */
+ constructor(readonly input: GetEnabledControlCommandInput) {
+ // Start section: command_constructor
+ super();
+ // End section: command_constructor
+ }
+
+ /**
+ * @internal
+ */
+ resolveMiddleware(
+ clientStack: MiddlewareStack,
+ configuration: ControlTowerClientResolvedConfig,
+ options?: __HttpHandlerOptions
+ ): Handler {
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
+ this.middlewareStack.use(
+ getEndpointPlugin(configuration, GetEnabledControlCommand.getEndpointParameterInstructions())
+ );
+
+ const stack = clientStack.concat(this.middlewareStack);
+
+ const { logger } = configuration;
+ const clientName = "ControlTowerClient";
+ const commandName = "GetEnabledControlCommand";
+ const handlerExecutionContext: HandlerExecutionContext = {
+ logger,
+ clientName,
+ commandName,
+ inputFilterSensitiveLog: (_: any) => _,
+ outputFilterSensitiveLog: (_: any) => _,
+ [SMITHY_CONTEXT_KEY]: {
+ service: "AWSControlTowerApis",
+ operation: "GetEnabledControl",
+ },
+ };
+ const { requestHandler } = configuration;
+ return stack.resolve(
+ (request: FinalizeHandlerArguments) =>
+ requestHandler.handle(request.request as __HttpRequest, options || {}),
+ handlerExecutionContext
+ );
+ }
+
+ /**
+ * @internal
+ */
+ private serialize(input: GetEnabledControlCommandInput, context: __SerdeContext): Promise<__HttpRequest> {
+ return se_GetEnabledControlCommand(input, context);
+ }
+
+ /**
+ * @internal
+ */
+ private deserialize(output: __HttpResponse, context: __SerdeContext): Promise {
+ return de_GetEnabledControlCommand(output, context);
+ }
+
+ // Start section: command_body_extra
+ // End section: command_body_extra
+}
diff --git a/clients/client-controltower/src/commands/ListEnabledControlsCommand.ts b/clients/client-controltower/src/commands/ListEnabledControlsCommand.ts
index 15fe2935f117d..e5ee833892495 100644
--- a/clients/client-controltower/src/commands/ListEnabledControlsCommand.ts
+++ b/clients/client-controltower/src/commands/ListEnabledControlsCommand.ts
@@ -38,7 +38,10 @@ export interface ListEnabledControlsCommandOutput extends ListEnabledControlsOut
/**
* @public
* Lists the controls enabled by AWS Control Tower on the specified organizational unit and
- * the accounts it contains.
+ * the accounts it contains. For usage examples, see
+ * the AWS Control Tower User Guide
+ *
+ *
* @example
* Use a bare-bones client and the command you need to make an API call.
* ```javascript
@@ -56,6 +59,15 @@ export interface ListEnabledControlsCommandOutput extends ListEnabledControlsOut
* // enabledControls: [ // EnabledControls // required
* // { // EnabledControlSummary
* // controlIdentifier: "STRING_VALUE",
+ * // arn: "STRING_VALUE",
+ * // targetIdentifier: "STRING_VALUE",
+ * // statusSummary: { // EnablementStatusSummary
+ * // status: "STRING_VALUE",
+ * // lastOperationIdentifier: "STRING_VALUE",
+ * // },
+ * // driftStatusSummary: { // DriftStatusSummary
+ * // driftStatus: "STRING_VALUE",
+ * // },
* // },
* // ],
* // nextToken: "STRING_VALUE",
@@ -70,8 +82,7 @@ export interface ListEnabledControlsCommandOutput extends ListEnabledControlsOut
* @see {@link ControlTowerClientResolvedConfig | config} for ControlTowerClient's `config` shape.
*
* @throws {@link AccessDeniedException} (client fault)
- * User does not have sufficient access to perform this action.
- *
+ * User does not have sufficient access to perform this action.
*
* @throws {@link InternalServerException} (server fault)
* Unexpected error during processing of request.
diff --git a/clients/client-controltower/src/commands/index.ts b/clients/client-controltower/src/commands/index.ts
index 70adfe8a2290b..00dcde7d094c8 100644
--- a/clients/client-controltower/src/commands/index.ts
+++ b/clients/client-controltower/src/commands/index.ts
@@ -2,4 +2,5 @@
export * from "./DisableControlCommand";
export * from "./EnableControlCommand";
export * from "./GetControlOperationCommand";
+export * from "./GetEnabledControlCommand";
export * from "./ListEnabledControlsCommand";
diff --git a/clients/client-controltower/src/index.ts b/clients/client-controltower/src/index.ts
index 4666540ad6346..c1cab32fe018e 100644
--- a/clients/client-controltower/src/index.ts
+++ b/clients/client-controltower/src/index.ts
@@ -1,22 +1,31 @@
// smithy-typescript generated code
/* eslint-disable */
/**
- * These interfaces allow you to apply the AWS library of pre-defined controls to your
- * organizational units, programmatically. In this context, controls are the same as AWS Control Tower guardrails.
+ * These interfaces allow you to apply the AWS library of pre-defined
+ * controls to your organizational units, programmatically. In AWS Control Tower, the terms "control" and "guardrail" are synonyms. .
* To call these APIs, you'll need to know:
*
*
- * the ControlARN
for the control--that is, the
- * guardrail--you are targeting,
+ * the controlIdentifier
for the control--or guardrail--you are targeting.
*
*
- * and the ARN associated with the target organizational unit (OU).
+ * the ARN associated with the target organizational unit (OU), which we call the targetIdentifier
.
*
*
*
- * To get the ControlARN
for your AWS Control Tower guardrail:
+ * To get the controlIdentifier
for your AWS Control Tower
+ * control:
*
- * The ControlARN
contains the control name which is specified in each guardrail. For a list of control names for Strongly recommended and Elective guardrails, see Resource identifiers for APIs and guardrails in the Automating tasks section of the AWS Control Tower User Guide. Remember that Mandatory guardrails cannot be added or removed.
+ * The controlIdentifier
is an ARN that is specified for each
+ * control. You can view the controlIdentifier
in the console on the Control details page, as well as in the documentation.
+ * The controlIdentifier
is unique in each AWS Region for each control. You can
+ * find the controlIdentifier
for each Region and control in the Tables of control metadata in the AWS Control Tower User Guide.
+ *
+ * A quick-reference list of control identifers for the AWS Control Tower legacy Strongly recommended and
+ * Elective controls is given in Resource identifiers for
+ * APIs and guardrails in the Controls reference guide section
+ * of the AWS Control Tower User Guide . Remember that Mandatory controls
+ * cannot be added or removed.
*
*
* ARN format:
@@ -30,8 +39,9 @@
*
*
*
- * To get the ARN for an OU:
+ * To get the targetIdentifier
:
*
+ * The targetIdentifier
is the ARN for an OU.
* In the AWS Organizations console, you can find the ARN for the OU on the Organizational unit details page associated with that OU.
*
*
@@ -47,17 +57,32 @@
*
*
*
- * List of resource identifiers for APIs and guardrails
+ * Control API input and output examples with CLI
+ *
+ *
+ *
+ *
+ * Enable controls with CloudFormation
+ *
+ *
+ *
+ *
+ * Control metadata tables
+ *
+ *
+ *
+ *
+ * List of identifiers for legacy controls
*
*
*
*
- * Guardrail API examples (CLI)
+ * Controls reference guide
*
*
*
*
- * Enable controls with AWS CloudFormation
+ * Controls library groupings
*
*
*
@@ -71,7 +96,14 @@
*
* Recording API Requests
*
- * AWS Control Tower supports AWS CloudTrail, a service that records AWS API calls for your AWS account and delivers log files to an Amazon S3 bucket. By using information collected by CloudTrail, you can determine which requests the AWS Control Tower service received, who made the request and when, and so on. For more about AWS Control Tower and its support for CloudTrail, see Logging AWS Control Tower Actions with AWS CloudTrail in the AWS Control Tower User Guide. To learn more about CloudTrail, including how to turn it on and find your log files, see the AWS CloudTrail User Guide.
+ * AWS Control Tower supports AWS CloudTrail, a service that records AWS API calls for your
+ * AWS account and delivers log files to an Amazon S3 bucket. By using information collected by
+ * CloudTrail, you can determine which requests the AWS Control Tower service received, who made
+ * the request and when, and so on. For more about AWS Control Tower and its support for
+ * CloudTrail, see Logging AWS Control Tower
+ * Actions with AWS CloudTrail in the AWS Control Tower User Guide. To learn more about
+ * CloudTrail, including how to turn it on and find your log files, see the AWS CloudTrail User
+ * Guide.
*
* @packageDocumentation
*/
diff --git a/clients/client-controltower/src/models/models_0.ts b/clients/client-controltower/src/models/models_0.ts
index 22f325350f755..cf51b68fbd611 100644
--- a/clients/client-controltower/src/models/models_0.ts
+++ b/clients/client-controltower/src/models/models_0.ts
@@ -5,8 +5,7 @@ import { ControlTowerServiceException as __BaseException } from "./ControlTowerS
/**
* @public
- * User does not have sufficient access to perform this action.
- *
+ * User does not have sufficient access to perform this action.
*/
export class AccessDeniedException extends __BaseException {
readonly name: "AccessDeniedException" = "AccessDeniedException";
@@ -50,14 +49,15 @@ export class ConflictException extends __BaseException {
export interface DisableControlInput {
/**
* @public
- * The ARN of the control. Only Strongly recommended and Elective controls are permitted,
- * with the exception of the Region deny guardrail.
+ * The ARN of the control. Only Strongly recommended and
+ * Elective controls are permitted, with the exception of the
+ * Region deny control. For information on how to find the controlIdentifier
, see the overview page .
*/
controlIdentifier: string | undefined;
/**
* @public
- * The ARN of the organizational unit.
+ * The ARN of the organizational unit. For information on how to find the targetIdentifier
, see the overview page .
*/
targetIdentifier: string | undefined;
}
@@ -117,7 +117,7 @@ export class ResourceNotFoundException extends __BaseException {
/**
* @public
- * Request would cause a service quota to be exceeded. The limit is 10 concurrent operations.
+ * Request would cause a service quota to be exceeded. The limit is 10 concurrent operations.
*/
export class ServiceQuotaExceededException extends __BaseException {
readonly name: "ServiceQuotaExceededException" = "ServiceQuotaExceededException";
@@ -205,14 +205,15 @@ export class ValidationException extends __BaseException {
export interface EnableControlInput {
/**
* @public
- * The ARN of the control. Only Strongly recommended and Elective controls are permitted,
- * with the exception of the Region deny guardrail.
+ * The ARN of the control. Only Strongly recommended and
+ * Elective controls are permitted, with the exception of the
+ * Region deny control. For information on how to find the controlIdentifier
, see the overview page .
*/
controlIdentifier: string | undefined;
/**
* @public
- * The ARN of the organizational unit.
+ * The ARN of the organizational unit. For information on how to find the targetIdentifier
, see the overview page .
*/
targetIdentifier: string | undefined;
}
@@ -301,7 +302,8 @@ export interface ControlOperation {
/**
* @public
- * If the operation result is FAILED
, this string contains a message explaining why the operation failed.
+ * If the operation result is FAILED
, this string contains a message explaining
+ * why the operation failed.
*/
statusMessage?: string;
}
@@ -312,18 +314,223 @@ export interface ControlOperation {
export interface GetControlOperationOutput {
/**
* @public
- *
+ * An operation performed by the control.
*/
controlOperation: ControlOperation | undefined;
}
+/**
+ * @public
+ */
+export interface GetEnabledControlInput {
+ /**
+ * @public
+ *
+ * The ARN of the enabled control.
+ *
+ */
+ enabledControlIdentifier: string | undefined;
+}
+
+/**
+ * @public
+ * @enum
+ */
+export const DriftStatus = {
+ DRIFTED: "DRIFTED",
+ IN_SYNC: "IN_SYNC",
+ NOT_CHECKING: "NOT_CHECKING",
+ UNKNOWN: "UNKNOWN",
+} as const;
+
+/**
+ * @public
+ */
+export type DriftStatus = (typeof DriftStatus)[keyof typeof DriftStatus];
+
+/**
+ * @public
+ * The drift summary of the enabled control.
+ * AWS Control Tower expects the enabled control
+ * configuration to include all supported and governed Regions. If the enabled control differs
+ * from the expected configuration, it is defined to be in a state of drift. You can repair this drift by resetting the enabled control.
+ */
+export interface DriftStatusSummary {
+ /**
+ * @public
+ * The drift status of the enabled control.
+ * Valid values:
+ *
+ *
+ *
+ * DRIFTED
: The enabledControl
deployed in this configuration
+ * doesn’t match the configuration that AWS Control Tower expected.
+ *
+ *
+ *
+ * IN_SYNC
: The enabledControl
deployed in this configuration matches
+ * the configuration that AWS Control Tower expected.
+ *
+ *
+ *
+ * NOT_CHECKING
: AWS Control Tower does not check drift for this enabled
+ * control. Drift is not supported for the control type.
+ *
+ *
+ *
+ * UNKNOWN
: AWS Control Tower is not able to check the drift status for the
+ * enabled control.
+ *
+ *
+ */
+ driftStatus?: DriftStatus | string;
+}
+
+/**
+ * @public
+ * @enum
+ */
+export const EnablementStatus = {
+ FAILED: "FAILED",
+ SUCCEEDED: "SUCCEEDED",
+ UNDER_CHANGE: "UNDER_CHANGE",
+} as const;
+
+/**
+ * @public
+ */
+export type EnablementStatus = (typeof EnablementStatus)[keyof typeof EnablementStatus];
+
+/**
+ * @public
+ *
+ * The deployment summary of the enabled control.
+ *
+ */
+export interface EnablementStatusSummary {
+ /**
+ * @public
+ * The deployment status of the enabled control.
+ * Valid values:
+ *
+ *
+ *
+ * SUCCEEDED
: The enabledControl
configuration was deployed successfully.
+ *
+ *
+ *
+ * UNDER_CHANGE
: The enabledControl
configuration is changing.
+ *
+ *
+ *
+ * FAILED
: The enabledControl
configuration failed to deploy.
+ *
+ *
+ */
+ status?: EnablementStatus | string;
+
+ /**
+ * @public
+ *
+ * The last operation identifier for the enabled control.
+ *
+ */
+ lastOperationIdentifier?: string;
+}
+
+/**
+ * @public
+ * An AWS Region in which AWS Control Tower expects to find the control deployed.
+ * The expected Regions are based on the Regions that are governed by the landing zone. In
+ * certain cases, a control is not actually enabled in the Region as expected, such as during
+ * drift, or mixed governance .
+ */
+export interface Region {
+ /**
+ * @public
+ *
+ * The AWS Region name.
+ *
+ */
+ name?: string;
+}
+
+/**
+ * @public
+ *
+ * Information about the enabled control.
+ *
+ */
+export interface EnabledControlDetails {
+ /**
+ * @public
+ *
+ * The ARN of the enabled control.
+ *
+ */
+ arn?: string;
+
+ /**
+ * @public
+ *
+ * The control identifier of the enabled control. For information on how to find the controlIdentifier
, see the overview page .
+ *
+ */
+ controlIdentifier?: string;
+
+ /**
+ * @public
+ *
+ * The ARN of the organizational unit. For information on how to find the targetIdentifier
, see the overview page .
+ *
+ */
+ targetIdentifier?: string;
+
+ /**
+ * @public
+ *
+ * Target AWS Regions for the enabled control.
+ *
+ */
+ targetRegions?: Region[];
+
+ /**
+ * @public
+ *
+ * The deployment summary of the enabled control.
+ *
+ */
+ statusSummary?: EnablementStatusSummary;
+
+ /**
+ * @public
+ *
+ * The drift status of the enabled control.
+ *
+ */
+ driftStatusSummary?: DriftStatusSummary;
+}
+
+/**
+ * @public
+ */
+export interface GetEnabledControlOutput {
+ /**
+ * @public
+ *
+ * Information about the enabled control.
+ *
+ */
+ enabledControlDetails: EnabledControlDetails | undefined;
+}
+
/**
* @public
*/
export interface ListEnabledControlsInput {
/**
* @public
- * The ARN of the organizational unit.
+ * The ARN of the organizational unit. For information on how to find the targetIdentifier
, see the overview page .
*/
targetIdentifier: string | undefined;
@@ -347,10 +554,41 @@ export interface ListEnabledControlsInput {
export interface EnabledControlSummary {
/**
* @public
- * The ARN of the control. Only Strongly recommended and Elective controls are permitted,
- * with the exception of the Region deny guardrail.
+ * The ARN of the control. Only Strongly recommended and
+ * Elective controls are permitted, with the exception of the
+ * Region deny control. For information on how to find the controlIdentifier
, see the overview page .
*/
controlIdentifier?: string;
+
+ /**
+ * @public
+ *
+ * The ARN of the enabled control.
+ *
+ */
+ arn?: string;
+
+ /**
+ * @public
+ *
+ * The ARN of the organizational unit.
+ *
+ */
+ targetIdentifier?: string;
+
+ /**
+ * @public
+ *
+ */
+ statusSummary?: EnablementStatusSummary;
+
+ /**
+ * @public
+ *
+ * The drift status of the enabled control.
+ *
+ */
+ driftStatusSummary?: DriftStatusSummary;
}
/**
diff --git a/clients/client-controltower/src/protocols/Aws_restJson1.ts b/clients/client-controltower/src/protocols/Aws_restJson1.ts
index 8db83b4162a34..9bbbab32ff7ee 100644
--- a/clients/client-controltower/src/protocols/Aws_restJson1.ts
+++ b/clients/client-controltower/src/protocols/Aws_restJson1.ts
@@ -25,6 +25,7 @@ import {
GetControlOperationCommandInput,
GetControlOperationCommandOutput,
} from "../commands/GetControlOperationCommand";
+import { GetEnabledControlCommandInput, GetEnabledControlCommandOutput } from "../commands/GetEnabledControlCommand";
import {
ListEnabledControlsCommandInput,
ListEnabledControlsCommandOutput,
@@ -130,6 +131,35 @@ export const se_GetControlOperationCommand = async (
});
};
+/**
+ * serializeAws_restJson1GetEnabledControlCommand
+ */
+export const se_GetEnabledControlCommand = async (
+ input: GetEnabledControlCommandInput,
+ context: __SerdeContext
+): Promise<__HttpRequest> => {
+ const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
+ const headers: any = {
+ "content-type": "application/json",
+ };
+ const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/get-enabled-control";
+ let body: any;
+ body = JSON.stringify(
+ take(input, {
+ enabledControlIdentifier: [],
+ })
+ );
+ return new __HttpRequest({
+ protocol,
+ hostname,
+ port,
+ method: "POST",
+ headers,
+ path: resolvedPath,
+ body,
+ });
+};
+
/**
* serializeAws_restJson1ListEnabledControlsCommand
*/
@@ -350,6 +380,65 @@ const de_GetControlOperationCommandError = async (
}
};
+/**
+ * deserializeAws_restJson1GetEnabledControlCommand
+ */
+export const de_GetEnabledControlCommand = async (
+ output: __HttpResponse,
+ context: __SerdeContext
+): Promise => {
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
+ return de_GetEnabledControlCommandError(output, context);
+ }
+ const contents: any = map({
+ $metadata: deserializeMetadata(output),
+ });
+ const data: Record = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
+ const doc = take(data, {
+ enabledControlDetails: _json,
+ });
+ Object.assign(contents, doc);
+ return contents;
+};
+
+/**
+ * deserializeAws_restJson1GetEnabledControlCommandError
+ */
+const de_GetEnabledControlCommandError = async (
+ output: __HttpResponse,
+ context: __SerdeContext
+): Promise => {
+ const parsedOutput: any = {
+ ...output,
+ body: await parseErrorBody(output.body, context),
+ };
+ const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
+ switch (errorCode) {
+ case "AccessDeniedException":
+ case "com.amazonaws.controltower#AccessDeniedException":
+ throw await de_AccessDeniedExceptionRes(parsedOutput, context);
+ case "InternalServerException":
+ case "com.amazonaws.controltower#InternalServerException":
+ throw await de_InternalServerExceptionRes(parsedOutput, context);
+ case "ResourceNotFoundException":
+ case "com.amazonaws.controltower#ResourceNotFoundException":
+ throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
+ case "ThrottlingException":
+ case "com.amazonaws.controltower#ThrottlingException":
+ throw await de_ThrottlingExceptionRes(parsedOutput, context);
+ case "ValidationException":
+ case "com.amazonaws.controltower#ValidationException":
+ throw await de_ValidationExceptionRes(parsedOutput, context);
+ default:
+ const parsedBody = parsedOutput.body;
+ return throwDefaultError({
+ output,
+ parsedBody,
+ errorCode,
+ });
+ }
+};
+
/**
* deserializeAws_restJson1ListEnabledControlsCommand
*/
@@ -562,10 +651,20 @@ const de_ControlOperation = (output: any, context: __SerdeContext): ControlOpera
}) as any;
};
+// de_DriftStatusSummary omitted.
+
+// de_EnabledControlDetails omitted.
+
// de_EnabledControls omitted.
// de_EnabledControlSummary omitted.
+// de_EnablementStatusSummary omitted.
+
+// de_Region omitted.
+
+// de_TargetRegions omitted.
+
const deserializeMetadata = (output: __HttpResponse): __ResponseMetadata => ({
httpStatusCode: output.statusCode,
requestId:
diff --git a/codegen/sdk-codegen/aws-models/controltower.json b/codegen/sdk-codegen/aws-models/controltower.json
index 8b512f15f943e..f43b2de70c3dc 100644
--- a/codegen/sdk-codegen/aws-models/controltower.json
+++ b/codegen/sdk-codegen/aws-models/controltower.json
@@ -14,6 +14,9 @@
{
"target": "com.amazonaws.controltower#GetControlOperation"
},
+ {
+ "target": "com.amazonaws.controltower#GetEnabledControl"
+ },
{
"target": "com.amazonaws.controltower#ListEnabledControls"
}
@@ -43,13 +46,9 @@
"x-amz-date",
"x-amz-security-token"
],
- "additionalExposedHeaders": [
- "x-amzn-errortype",
- "x-amzn-requestid",
- "x-amzn-trace-id"
- ]
+ "additionalExposedHeaders": ["x-amzn-errortype", "x-amzn-requestid", "x-amzn-trace-id"]
},
- "smithy.api#documentation": "These interfaces allow you to apply the AWS library of pre-defined controls to your\norganizational units, programmatically. In this context, controls are the same as AWS Control Tower guardrails.
\n To call these APIs, you'll need to know:
\n \n \n the ControlARN
for the control--that is, the\n guardrail--you are targeting,
\n \n \n and the ARN associated with the target organizational unit (OU).
\n \n \n \n To get the ControlARN
for your AWS Control Tower guardrail: \n
\n The ControlARN
contains the control name which is specified in each guardrail. For a list of control names for Strongly recommended and Elective guardrails, see Resource identifiers for APIs and guardrails in the Automating tasks section of the AWS Control Tower User Guide. Remember that Mandatory guardrails cannot be added or removed.
\n \n \n ARN format: \n arn:aws:controltower:{REGION}::control/{CONTROL_NAME}
\n
\n \n Example: \n
\n \n arn:aws:controltower:us-west-2::control/AWS-GR_AUTOSCALING_LAUNCH_CONFIG_PUBLIC_IP_DISABLED
\n
\n \n \n To get the ARN for an OU: \n
\n In the AWS Organizations console, you can find the ARN for the OU on the Organizational unit details page associated with that OU.
\n \n \n OU ARN format: \n
\n \n arn:${Partition}:organizations::${MasterAccountId}:ou/o-${OrganizationId}/ou-${OrganizationalUnitId}
\n
\n \n \n Details and examples \n
\n \n To view the open source resource repository on GitHub, see aws-cloudformation/aws-cloudformation-resource-providers-controltower \n
\n \n Recording API Requests \n
\n AWS Control Tower supports AWS CloudTrail, a service that records AWS API calls for your AWS account and delivers log files to an Amazon S3 bucket. By using information collected by CloudTrail, you can determine which requests the AWS Control Tower service received, who made the request and when, and so on. For more about AWS Control Tower and its support for CloudTrail, see Logging AWS Control Tower Actions with AWS CloudTrail in the AWS Control Tower User Guide. To learn more about CloudTrail, including how to turn it on and find your log files, see the AWS CloudTrail User Guide.
",
+ "smithy.api#documentation": "These interfaces allow you to apply the AWS library of pre-defined\n controls to your organizational units, programmatically. In AWS Control Tower, the terms \"control\" and \"guardrail\" are synonyms. .
\n To call these APIs, you'll need to know:
\n \n \n the controlIdentifier
for the control--or guardrail--you are targeting.
\n \n \n the ARN associated with the target organizational unit (OU), which we call the targetIdentifier
.
\n \n \n \n To get the controlIdentifier
for your AWS Control Tower\n control: \n
\n The controlIdentifier
is an ARN that is specified for each\n control. You can view the controlIdentifier
in the console on the Control details page, as well as in the documentation.
\n The controlIdentifier
is unique in each AWS Region for each control. You can\n find the controlIdentifier
for each Region and control in the Tables of control metadata in the AWS Control Tower User Guide. \n
\n A quick-reference list of control identifers for the AWS Control Tower legacy Strongly recommended and\n Elective controls is given in Resource identifiers for\n APIs and guardrails in the Controls reference guide section \n of the AWS Control Tower User Guide . Remember that Mandatory controls\n cannot be added or removed.
\n \n \n ARN format: \n arn:aws:controltower:{REGION}::control/{CONTROL_NAME}
\n
\n \n Example: \n
\n \n arn:aws:controltower:us-west-2::control/AWS-GR_AUTOSCALING_LAUNCH_CONFIG_PUBLIC_IP_DISABLED
\n
\n \n \n To get the targetIdentifier
: \n
\n The targetIdentifier
is the ARN for an OU.
\n In the AWS Organizations console, you can find the ARN for the OU on the Organizational unit details page associated with that OU.
\n \n \n OU ARN format: \n
\n \n arn:${Partition}:organizations::${MasterAccountId}:ou/o-${OrganizationId}/ou-${OrganizationalUnitId}
\n
\n \n \n Details and examples \n
\n \n To view the open source resource repository on GitHub, see aws-cloudformation/aws-cloudformation-resource-providers-controltower \n
\n \n Recording API Requests \n
\n AWS Control Tower supports AWS CloudTrail, a service that records AWS API calls for your\n AWS account and delivers log files to an Amazon S3 bucket. By using information collected by\n CloudTrail, you can determine which requests the AWS Control Tower service received, who made\n the request and when, and so on. For more about AWS Control Tower and its support for\n CloudTrail, see Logging AWS Control Tower\n Actions with AWS CloudTrail in the AWS Control Tower User Guide. To learn more about\n CloudTrail, including how to turn it on and find your log files, see the AWS CloudTrail User\n Guide.
",
"smithy.api#title": "AWS Control Tower",
"smithy.rules#endpointRuleSet": {
"version": "1.0",
@@ -913,11 +912,21 @@
}
},
"traits": {
- "smithy.api#documentation": "User does not have sufficient access to perform this action. \n
",
+ "smithy.api#documentation": "User does not have sufficient access to perform this action.
",
"smithy.api#error": "client",
"smithy.api#httpError": 403
}
},
+ "com.amazonaws.controltower#Arn": {
+ "type": "string",
+ "traits": {
+ "smithy.api#length": {
+ "min": 20,
+ "max": 2048
+ },
+ "smithy.api#pattern": "^arn:aws[0-9a-zA-Z_\\-:\\/]+$"
+ }
+ },
"com.amazonaws.controltower#ConflictException": {
"type": "structure",
"members": {
@@ -976,7 +985,7 @@
"statusMessage": {
"target": "smithy.api#String",
"traits": {
- "smithy.api#documentation": "If the operation result is FAILED
, this string contains a message explaining why the operation failed.
"
+ "smithy.api#documentation": "If the operation result is FAILED
, this string contains a message explaining\n why the operation failed.
"
}
}
},
@@ -1050,7 +1059,7 @@
}
],
"traits": {
- "smithy.api#documentation": "This API call turns off a control. It starts an asynchronous operation that deletes AWS resources on the specified\n organizational unit and the accounts it contains. The resources will vary according to the\n control that you specify.
",
+ "smithy.api#documentation": "This API call turns off a control. It starts an asynchronous operation that deletes AWS\n resources on the specified organizational unit and the accounts it contains. The resources\n will vary according to the control that you specify. For usage examples, see \n the AWS Control Tower User Guide \n .
",
"smithy.api#http": {
"code": 200,
"method": "POST",
@@ -1064,14 +1073,14 @@
"controlIdentifier": {
"target": "com.amazonaws.controltower#ControlIdentifier",
"traits": {
- "smithy.api#documentation": "The ARN of the control. Only Strongly recommended and Elective controls are permitted,\n with the exception of the Region deny guardrail.
",
+ "smithy.api#documentation": "The ARN of the control. Only Strongly recommended and\n Elective controls are permitted, with the exception of the\n Region deny control. For information on how to find the controlIdentifier
, see the overview page .
",
"smithy.api#required": {}
}
},
"targetIdentifier": {
"target": "com.amazonaws.controltower#TargetIdentifier",
"traits": {
- "smithy.api#documentation": "The ARN of the organizational unit.
",
+ "smithy.api#documentation": "The ARN of the organizational unit. For information on how to find the targetIdentifier
, see the overview page .
",
"smithy.api#required": {}
}
}
@@ -1089,6 +1098,43 @@
}
}
},
+ "com.amazonaws.controltower#DriftStatus": {
+ "type": "string",
+ "traits": {
+ "smithy.api#enum": [
+ {
+ "name": "DRIFTED",
+ "value": "DRIFTED"
+ },
+ {
+ "name": "IN_SYNC",
+ "value": "IN_SYNC"
+ },
+ {
+ "name": "NOT_CHECKING",
+ "value": "NOT_CHECKING"
+ },
+ {
+ "name": "UNKNOWN",
+ "value": "UNKNOWN"
+ }
+ ]
+ }
+ },
+ "com.amazonaws.controltower#DriftStatusSummary": {
+ "type": "structure",
+ "members": {
+ "driftStatus": {
+ "target": "com.amazonaws.controltower#DriftStatus",
+ "traits": {
+ "smithy.api#documentation": " The drift status of the enabled control.
\n Valid values:
\n \n \n \n DRIFTED
: The enabledControl
deployed in this configuration\n doesn’t match the configuration that AWS Control Tower expected.
\n \n \n \n IN_SYNC
: The enabledControl
deployed in this configuration matches\n the configuration that AWS Control Tower expected.
\n \n \n \n NOT_CHECKING
: AWS Control Tower does not check drift for this enabled\n control. Drift is not supported for the control type.
\n \n \n \n UNKNOWN
: AWS Control Tower is not able to check the drift status for the\n enabled control.
\n \n "
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#documentation": " The drift summary of the enabled control.
\n AWS Control Tower expects the enabled control\n configuration to include all supported and governed Regions. If the enabled control differs\n from the expected configuration, it is defined to be in a state of drift. You can repair this drift by resetting the enabled control.
"
+ }
+ },
"com.amazonaws.controltower#EnableControl": {
"type": "operation",
"input": {
@@ -1121,7 +1167,7 @@
}
],
"traits": {
- "smithy.api#documentation": "This API call activates a control. It starts an asynchronous operation that creates AWS resources on the specified\n organizational unit and the accounts it contains. The resources created will vary according to\n the control that you specify.
",
+ "smithy.api#documentation": "This API call activates a control. It starts an asynchronous operation that creates AWS\n resources on the specified organizational unit and the accounts it contains. The resources\n created will vary according to the control that you specify. For usage examples, see \n the AWS Control Tower User Guide \n \n
",
"smithy.api#http": {
"code": 200,
"method": "POST",
@@ -1135,14 +1181,14 @@
"controlIdentifier": {
"target": "com.amazonaws.controltower#ControlIdentifier",
"traits": {
- "smithy.api#documentation": "The ARN of the control. Only Strongly recommended and Elective controls are permitted,\n with the exception of the Region deny guardrail.
",
+ "smithy.api#documentation": "The ARN of the control. Only Strongly recommended and\n Elective controls are permitted, with the exception of the\n Region deny control. For information on how to find the controlIdentifier
, see the overview page .
",
"smithy.api#required": {}
}
},
"targetIdentifier": {
"target": "com.amazonaws.controltower#TargetIdentifier",
"traits": {
- "smithy.api#documentation": "The ARN of the organizational unit.
",
+ "smithy.api#documentation": "The ARN of the organizational unit. For information on how to find the targetIdentifier
, see the overview page .
",
"smithy.api#required": {}
}
}
@@ -1160,13 +1206,81 @@
}
}
},
+ "com.amazonaws.controltower#EnabledControlDetails": {
+ "type": "structure",
+ "members": {
+ "arn": {
+ "target": "com.amazonaws.controltower#Arn",
+ "traits": {
+ "smithy.api#documentation": "\n The ARN of the enabled control.\n
"
+ }
+ },
+ "controlIdentifier": {
+ "target": "com.amazonaws.controltower#ControlIdentifier",
+ "traits": {
+ "smithy.api#documentation": "\n The control identifier of the enabled control. For information on how to find the controlIdentifier
, see the overview page .\n
"
+ }
+ },
+ "targetIdentifier": {
+ "target": "com.amazonaws.controltower#TargetIdentifier",
+ "traits": {
+ "smithy.api#documentation": "\n The ARN of the organizational unit. For information on how to find the targetIdentifier
, see the overview page .\n
"
+ }
+ },
+ "targetRegions": {
+ "target": "com.amazonaws.controltower#TargetRegions",
+ "traits": {
+ "smithy.api#documentation": "\n Target AWS Regions for the enabled control.\n
"
+ }
+ },
+ "statusSummary": {
+ "target": "com.amazonaws.controltower#EnablementStatusSummary",
+ "traits": {
+ "smithy.api#documentation": "\n The deployment summary of the enabled control.\n
"
+ }
+ },
+ "driftStatusSummary": {
+ "target": "com.amazonaws.controltower#DriftStatusSummary",
+ "traits": {
+ "smithy.api#documentation": "\n The drift status of the enabled control.\n
"
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#documentation": "\n Information about the enabled control.\n
"
+ }
+ },
"com.amazonaws.controltower#EnabledControlSummary": {
"type": "structure",
"members": {
"controlIdentifier": {
"target": "com.amazonaws.controltower#ControlIdentifier",
"traits": {
- "smithy.api#documentation": "The ARN of the control. Only Strongly recommended and Elective controls are permitted,\n with the exception of the Region deny guardrail.
"
+ "smithy.api#documentation": "The ARN of the control. Only Strongly recommended and\n Elective controls are permitted, with the exception of the\n Region deny control. For information on how to find the controlIdentifier
, see the overview page .
"
+ }
+ },
+ "arn": {
+ "target": "com.amazonaws.controltower#Arn",
+ "traits": {
+ "smithy.api#documentation": "\n The ARN of the enabled control.\n
"
+ }
+ },
+ "targetIdentifier": {
+ "target": "com.amazonaws.controltower#TargetIdentifier",
+ "traits": {
+ "smithy.api#documentation": "\n The ARN of the organizational unit.\n
"
+ }
+ },
+ "statusSummary": {
+ "target": "com.amazonaws.controltower#EnablementStatusSummary",
+ "traits": {
+ "smithy.api#documentation": ""
+ }
+ },
+ "driftStatusSummary": {
+ "target": "com.amazonaws.controltower#DriftStatusSummary",
+ "traits": {
+ "smithy.api#documentation": "\n The drift status of the enabled control.\n
"
}
}
},
@@ -1180,6 +1294,45 @@
"target": "com.amazonaws.controltower#EnabledControlSummary"
}
},
+ "com.amazonaws.controltower#EnablementStatus": {
+ "type": "string",
+ "traits": {
+ "smithy.api#enum": [
+ {
+ "name": "SUCCEEDED",
+ "value": "SUCCEEDED"
+ },
+ {
+ "name": "FAILED",
+ "value": "FAILED"
+ },
+ {
+ "name": "UNDER_CHANGE",
+ "value": "UNDER_CHANGE"
+ }
+ ]
+ }
+ },
+ "com.amazonaws.controltower#EnablementStatusSummary": {
+ "type": "structure",
+ "members": {
+ "status": {
+ "target": "com.amazonaws.controltower#EnablementStatus",
+ "traits": {
+ "smithy.api#documentation": " The deployment status of the enabled control.
\n Valid values:
\n \n \n \n SUCCEEDED
: The enabledControl
configuration was deployed successfully.
\n \n \n \n UNDER_CHANGE
: The enabledControl
configuration is changing.
\n \n \n \n FAILED
: The enabledControl
configuration failed to deploy.
\n \n "
+ }
+ },
+ "lastOperationIdentifier": {
+ "target": "com.amazonaws.controltower#OperationIdentifier",
+ "traits": {
+ "smithy.api#documentation": "\n The last operation identifier for the enabled control.\n
"
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#documentation": " \n The deployment summary of the enabled control. \n
"
+ }
+ },
"com.amazonaws.controltower#GetControlOperation": {
"type": "operation",
"input": {
@@ -1206,7 +1359,7 @@
}
],
"traits": {
- "smithy.api#documentation": "Returns the status of a particular EnableControl
or\n DisableControl
operation. Displays a message in case of error.\n Details for an operation are available for 90 days.
",
+ "smithy.api#documentation": "Returns the status of a particular EnableControl
or\n DisableControl
operation. Displays a message in case of error. Details for an\n operation are available for 90 days. For usage examples, see \n the AWS Control Tower User Guide \n \n
",
"smithy.api#http": {
"code": 200,
"method": "POST",
@@ -1233,10 +1386,75 @@
"controlOperation": {
"target": "com.amazonaws.controltower#ControlOperation",
"traits": {
- "smithy.api#documentation": "
",
+ "smithy.api#documentation": "An operation performed by the control.
",
+ "smithy.api#required": {}
+ }
+ }
+ }
+ },
+ "com.amazonaws.controltower#GetEnabledControl": {
+ "type": "operation",
+ "input": {
+ "target": "com.amazonaws.controltower#GetEnabledControlInput"
+ },
+ "output": {
+ "target": "com.amazonaws.controltower#GetEnabledControlOutput"
+ },
+ "errors": [
+ {
+ "target": "com.amazonaws.controltower#AccessDeniedException"
+ },
+ {
+ "target": "com.amazonaws.controltower#InternalServerException"
+ },
+ {
+ "target": "com.amazonaws.controltower#ResourceNotFoundException"
+ },
+ {
+ "target": "com.amazonaws.controltower#ThrottlingException"
+ },
+ {
+ "target": "com.amazonaws.controltower#ValidationException"
+ }
+ ],
+ "traits": {
+ "smithy.api#documentation": "\n Provides details about the enabled control. For usage examples, see \n the AWS Control Tower User Guide \n .
\n \n Returned values \n
\n \n \n TargetRegions: Shows target AWS Regions where the enabled control is available to be deployed.
\n \n \n StatusSummary: Provides a detailed summary of the deployment status.
\n \n \n DriftSummary: Provides a detailed summary of the drifted status.
\n \n ",
+ "smithy.api#http": {
+ "code": 200,
+ "method": "POST",
+ "uri": "/get-enabled-control"
+ },
+ "smithy.api#readonly": {}
+ }
+ },
+ "com.amazonaws.controltower#GetEnabledControlInput": {
+ "type": "structure",
+ "members": {
+ "enabledControlIdentifier": {
+ "target": "com.amazonaws.controltower#Arn",
+ "traits": {
+ "smithy.api#documentation": "\n The ARN of the enabled control.\n
",
+ "smithy.api#required": {}
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#input": {}
+ }
+ },
+ "com.amazonaws.controltower#GetEnabledControlOutput": {
+ "type": "structure",
+ "members": {
+ "enabledControlDetails": {
+ "target": "com.amazonaws.controltower#EnabledControlDetails",
+ "traits": {
+ "smithy.api#documentation": "\n Information about the enabled control.\n
",
"smithy.api#required": {}
}
}
+ },
+ "traits": {
+ "smithy.api#output": {}
}
},
"com.amazonaws.controltower#InternalServerException": {
@@ -1282,7 +1500,7 @@
}
],
"traits": {
- "smithy.api#documentation": "Lists the controls enabled by AWS Control Tower on the specified organizational unit and\n the accounts it contains.
",
+ "smithy.api#documentation": "Lists the controls enabled by AWS Control Tower on the specified organizational unit and\n the accounts it contains. For usage examples, see \n the AWS Control Tower User Guide \n \n
",
"smithy.api#http": {
"code": 200,
"method": "POST",
@@ -1303,7 +1521,7 @@
"targetIdentifier": {
"target": "com.amazonaws.controltower#TargetIdentifier",
"traits": {
- "smithy.api#documentation": "The ARN of the organizational unit.
",
+ "smithy.api#documentation": "The ARN of the organizational unit. For information on how to find the targetIdentifier
, see the overview page .
",
"smithy.api#required": {}
}
},
@@ -1344,7 +1562,7 @@
"traits": {
"smithy.api#range": {
"min": 1,
- "max": 100
+ "max": 200
}
}
},
@@ -1358,6 +1576,29 @@
"smithy.api#pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$"
}
},
+ "com.amazonaws.controltower#Region": {
+ "type": "structure",
+ "members": {
+ "name": {
+ "target": "com.amazonaws.controltower#RegionName",
+ "traits": {
+ "smithy.api#documentation": "\n The AWS Region name.\n
"
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#documentation": "An AWS Region in which AWS Control Tower expects to find the control deployed.
\n The expected Regions are based on the Regions that are governed by the landing zone. In\n certain cases, a control is not actually enabled in the Region as expected, such as during\n drift, or mixed governance .
"
+ }
+ },
+ "com.amazonaws.controltower#RegionName": {
+ "type": "string",
+ "traits": {
+ "smithy.api#length": {
+ "min": 1,
+ "max": 50
+ }
+ }
+ },
"com.amazonaws.controltower#ResourceNotFoundException": {
"type": "structure",
"members": {
@@ -1385,7 +1626,7 @@
}
},
"traits": {
- "smithy.api#documentation": "Request would cause a service quota to be exceeded. The limit is 10 concurrent operations.
",
+ "smithy.api#documentation": "Request would cause a service quota to be exceeded. The limit is 10 concurrent operations.
",
"smithy.api#error": "client",
"smithy.api#httpError": 402
}
@@ -1400,6 +1641,12 @@
"smithy.api#pattern": "^arn:aws[0-9a-zA-Z_\\-:\\/]+$"
}
},
+ "com.amazonaws.controltower#TargetRegions": {
+ "type": "list",
+ "member": {
+ "target": "com.amazonaws.controltower#Region"
+ }
+ },
"com.amazonaws.controltower#ThrottlingException": {
"type": "structure",
"members": {
@@ -1461,4 +1708,4 @@
}
}
}
-}
\ No newline at end of file
+}
From 4adb62606861bc185678ff64d9871cc3930cefac Mon Sep 17 00:00:00 2001
From: awstools
Date: Thu, 12 Oct 2023 18:24:09 +0000
Subject: [PATCH 31/35] feat(client-ivs-realtime): Update GetParticipant to
return additional metadata.
---
.../src/commands/GetParticipantCommand.ts | 6 +++
.../src/models/models_0.ts | 36 +++++++++++++++
.../src/protocols/Aws_restJson1.ts | 6 +++
.../sdk-codegen/aws-models/ivs-realtime.json | 46 +++++++++++++++++++
4 files changed, 94 insertions(+)
diff --git a/clients/client-ivs-realtime/src/commands/GetParticipantCommand.ts b/clients/client-ivs-realtime/src/commands/GetParticipantCommand.ts
index ea38795649eaa..ea82c781c68dc 100644
--- a/clients/client-ivs-realtime/src/commands/GetParticipantCommand.ts
+++ b/clients/client-ivs-realtime/src/commands/GetParticipantCommand.ts
@@ -61,6 +61,12 @@ export interface GetParticipantCommandOutput extends GetParticipantResponse, __M
* // "": "STRING_VALUE",
* // },
* // published: true || false,
+ * // ispName: "STRING_VALUE",
+ * // osName: "STRING_VALUE",
+ * // osVersion: "STRING_VALUE",
+ * // browserName: "STRING_VALUE",
+ * // browserVersion: "STRING_VALUE",
+ * // sdkVersion: "STRING_VALUE",
* // },
* // };
*
diff --git a/clients/client-ivs-realtime/src/models/models_0.ts b/clients/client-ivs-realtime/src/models/models_0.ts
index 92d7ea04537c9..0b895e51cd704 100644
--- a/clients/client-ivs-realtime/src/models/models_0.ts
+++ b/clients/client-ivs-realtime/src/models/models_0.ts
@@ -534,6 +534,42 @@ export interface Participant {
* Whether the participant ever published to the stage session.
*/
published?: boolean;
+
+ /**
+ * @public
+ * The participant’s Internet Service Provider.
+ */
+ ispName?: string;
+
+ /**
+ * @public
+ * The participant’s operating system.
+ */
+ osName?: string;
+
+ /**
+ * @public
+ * The participant’s operating system version.
+ */
+ osVersion?: string;
+
+ /**
+ * @public
+ * The participant’s browser.
+ */
+ browserName?: string;
+
+ /**
+ * @public
+ * The participant’s browser version.
+ */
+ browserVersion?: string;
+
+ /**
+ * @public
+ * The participant’s SDK version.
+ */
+ sdkVersion?: string;
}
/**
diff --git a/clients/client-ivs-realtime/src/protocols/Aws_restJson1.ts b/clients/client-ivs-realtime/src/protocols/Aws_restJson1.ts
index 14e515f8b548e..77dbab825ca20 100644
--- a/clients/client-ivs-realtime/src/protocols/Aws_restJson1.ts
+++ b/clients/client-ivs-realtime/src/protocols/Aws_restJson1.ts
@@ -1497,9 +1497,15 @@ const de_EventList = (output: any, context: __SerdeContext): Event[] => {
const de_Participant = (output: any, context: __SerdeContext): Participant => {
return take(output, {
attributes: _json,
+ browserName: __expectString,
+ browserVersion: __expectString,
firstJoinTime: (_: any) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
+ ispName: __expectString,
+ osName: __expectString,
+ osVersion: __expectString,
participantId: __expectString,
published: __expectBoolean,
+ sdkVersion: __expectString,
state: __expectString,
userId: __expectString,
}) as any;
diff --git a/codegen/sdk-codegen/aws-models/ivs-realtime.json b/codegen/sdk-codegen/aws-models/ivs-realtime.json
index f6b04d00035ea..8331251f336b6 100644
--- a/codegen/sdk-codegen/aws-models/ivs-realtime.json
+++ b/codegen/sdk-codegen/aws-models/ivs-realtime.json
@@ -1846,6 +1846,42 @@
"smithy.api#default": false,
"smithy.api#documentation": "Whether the participant ever published to the stage session.
"
}
+ },
+ "ispName": {
+ "target": "com.amazonaws.ivsrealtime#ParticipantClientAttribute",
+ "traits": {
+ "smithy.api#documentation": "The participant’s Internet Service Provider.
"
+ }
+ },
+ "osName": {
+ "target": "com.amazonaws.ivsrealtime#ParticipantClientAttribute",
+ "traits": {
+ "smithy.api#documentation": "The participant’s operating system.
"
+ }
+ },
+ "osVersion": {
+ "target": "com.amazonaws.ivsrealtime#ParticipantClientAttribute",
+ "traits": {
+ "smithy.api#documentation": "The participant’s operating system version.
"
+ }
+ },
+ "browserName": {
+ "target": "com.amazonaws.ivsrealtime#ParticipantClientAttribute",
+ "traits": {
+ "smithy.api#documentation": "The participant’s browser.
"
+ }
+ },
+ "browserVersion": {
+ "target": "com.amazonaws.ivsrealtime#ParticipantClientAttribute",
+ "traits": {
+ "smithy.api#documentation": "The participant’s browser version.
"
+ }
+ },
+ "sdkVersion": {
+ "target": "com.amazonaws.ivsrealtime#ParticipantClientAttribute",
+ "traits": {
+ "smithy.api#documentation": "The participant’s SDK version.
"
+ }
}
},
"traits": {
@@ -1861,6 +1897,16 @@
"target": "com.amazonaws.ivsrealtime#String"
}
},
+ "com.amazonaws.ivsrealtime#ParticipantClientAttribute": {
+ "type": "string",
+ "traits": {
+ "smithy.api#length": {
+ "min": 0,
+ "max": 128
+ },
+ "smithy.api#pattern": "^[a-zA-Z0-9-_.,:;\\s]*$"
+ }
+ },
"com.amazonaws.ivsrealtime#ParticipantId": {
"type": "string"
},
From af417648f78d4ea2496633d11ad154f2935066bf Mon Sep 17 00:00:00 2001
From: awstools
Date: Thu, 12 Oct 2023 18:24:10 +0000
Subject: [PATCH 32/35] feat(client-auditmanager): This release introduces a
new limit to the awsAccounts parameter. When you create or update an
assessment, there is now a limit of 200 AWS accounts that can be specified in
the assessment scope.
---
codegen/sdk-codegen/aws-models/auditmanager.json | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/codegen/sdk-codegen/aws-models/auditmanager.json b/codegen/sdk-codegen/aws-models/auditmanager.json
index 4f6b1ee162007..4614e61454195 100644
--- a/codegen/sdk-codegen/aws-models/auditmanager.json
+++ b/codegen/sdk-codegen/aws-models/auditmanager.json
@@ -61,6 +61,10 @@
"target": "com.amazonaws.auditmanager#AWSAccount"
},
"traits": {
+ "smithy.api#length": {
+ "min": 1,
+ "max": 200
+ },
"smithy.api#sensitive": {}
}
},
@@ -9665,4 +9669,4 @@
}
}
}
-}
\ No newline at end of file
+}
From 685916ce1a1d171c083afe0800bd3c4124408caa Mon Sep 17 00:00:00 2001
From: awstools
Date: Thu, 12 Oct 2023 18:24:10 +0000
Subject: [PATCH 33/35] feat(client-sagemaker): Amazon SageMaker Canvas adds
KendraSettings and DirectDeploySettings support for CanvasAppSettings
---
.../CreateDataQualityJobDefinitionCommand.ts | 3 +-
.../src/commands/CreateDomainCommand.ts | 6 +
.../src/commands/CreateFeatureGroupCommand.ts | 8 +-
.../src/commands/CreateUserProfileCommand.ts | 6 +
.../DeleteDataQualityJobDefinitionCommand.ts | 2 +-
.../src/commands/DeleteDeviceFleetCommand.ts | 2 +-
.../src/commands/DeleteFeatureGroupCommand.ts | 3 +
.../src/commands/DescribeDomainCommand.ts | 6 +
.../commands/DescribeUserProfileCommand.ts | 6 +
.../src/commands/UpdateDomainCommand.ts | 6 +
.../src/commands/UpdateUserProfileCommand.ts | 6 +
.../client-sagemaker/src/models/models_0.ts | 87 +++++---
.../client-sagemaker/src/models/models_1.ts | 47 ++---
.../client-sagemaker/src/models/models_2.ts | 67 +++---
.../client-sagemaker/src/models/models_3.ts | 195 ++++--------------
.../client-sagemaker/src/models/models_4.ts | 160 +++++++++++++-
.../src/protocols/Aws_json1_1.ts | 20 +-
codegen/sdk-codegen/aws-models/sagemaker.json | 54 ++++-
18 files changed, 412 insertions(+), 272 deletions(-)
diff --git a/clients/client-sagemaker/src/commands/CreateDataQualityJobDefinitionCommand.ts b/clients/client-sagemaker/src/commands/CreateDataQualityJobDefinitionCommand.ts
index df14b2e56a3d9..eb6dfd7127cf7 100644
--- a/clients/client-sagemaker/src/commands/CreateDataQualityJobDefinitionCommand.ts
+++ b/clients/client-sagemaker/src/commands/CreateDataQualityJobDefinitionCommand.ts
@@ -14,7 +14,8 @@ import {
SMITHY_CONTEXT_KEY,
} from "@smithy/types";
-import { CreateDataQualityJobDefinitionRequest, CreateDataQualityJobDefinitionResponse } from "../models/models_0";
+import { CreateDataQualityJobDefinitionRequest } from "../models/models_0";
+import { CreateDataQualityJobDefinitionResponse } from "../models/models_1";
import {
de_CreateDataQualityJobDefinitionCommand,
se_CreateDataQualityJobDefinitionCommand,
diff --git a/clients/client-sagemaker/src/commands/CreateDomainCommand.ts b/clients/client-sagemaker/src/commands/CreateDomainCommand.ts
index 4846677296fd7..331447f280e2f 100644
--- a/clients/client-sagemaker/src/commands/CreateDomainCommand.ts
+++ b/clients/client-sagemaker/src/commands/CreateDomainCommand.ts
@@ -182,6 +182,12 @@ export interface CreateDomainCommandOutput extends CreateDomainResponse, __Metad
* SecretArn: "STRING_VALUE",
* },
* ],
+ * KendraSettings: { // KendraSettings
+ * Status: "ENABLED" || "DISABLED",
+ * },
+ * DirectDeploySettings: { // DirectDeploySettings
+ * Status: "ENABLED" || "DISABLED",
+ * },
* },
* },
* SubnetIds: [ // Subnets // required
diff --git a/clients/client-sagemaker/src/commands/CreateFeatureGroupCommand.ts b/clients/client-sagemaker/src/commands/CreateFeatureGroupCommand.ts
index b4de9792dcbeb..f3c7c69f66134 100644
--- a/clients/client-sagemaker/src/commands/CreateFeatureGroupCommand.ts
+++ b/clients/client-sagemaker/src/commands/CreateFeatureGroupCommand.ts
@@ -41,12 +41,16 @@ export interface CreateFeatureGroupCommandOutput extends CreateFeatureGroupRespo
* Features
defined in the FeatureStore
to describe a
* Record
.
* The FeatureGroup
defines the schema and features contained in the
- * FeatureGroup. A FeatureGroup
definition is composed of a list of
- * Features
, a RecordIdentifierFeatureName
, an
+ * FeatureGroup
. A FeatureGroup
definition is composed of a list
+ * of Features
, a RecordIdentifierFeatureName
, an
* EventTimeFeatureName
and configurations for its OnlineStore
* and OfflineStore
. Check Amazon Web Services service
* quotas to see the FeatureGroup
s quota for your Amazon Web Services
* account.
+ * Note that it can take approximately 10-15 minutes to provision an
+ * OnlineStore
+ * FeatureGroup
with the InMemory
+ * StorageType
.
*
* You must include at least one of OnlineStoreConfig
and
* OfflineStoreConfig
to create a FeatureGroup
.
diff --git a/clients/client-sagemaker/src/commands/CreateUserProfileCommand.ts b/clients/client-sagemaker/src/commands/CreateUserProfileCommand.ts
index b97805f08f03f..2ace43ea7b51a 100644
--- a/clients/client-sagemaker/src/commands/CreateUserProfileCommand.ts
+++ b/clients/client-sagemaker/src/commands/CreateUserProfileCommand.ts
@@ -152,6 +152,12 @@ export interface CreateUserProfileCommandOutput extends CreateUserProfileRespons
* SecretArn: "STRING_VALUE",
* },
* ],
+ * KendraSettings: { // KendraSettings
+ * Status: "ENABLED" || "DISABLED",
+ * },
+ * DirectDeploySettings: { // DirectDeploySettings
+ * Status: "ENABLED" || "DISABLED",
+ * },
* },
* },
* };
diff --git a/clients/client-sagemaker/src/commands/DeleteDataQualityJobDefinitionCommand.ts b/clients/client-sagemaker/src/commands/DeleteDataQualityJobDefinitionCommand.ts
index 20ed6b677db3d..44c36fff0417c 100644
--- a/clients/client-sagemaker/src/commands/DeleteDataQualityJobDefinitionCommand.ts
+++ b/clients/client-sagemaker/src/commands/DeleteDataQualityJobDefinitionCommand.ts
@@ -14,7 +14,7 @@ import {
SMITHY_CONTEXT_KEY,
} from "@smithy/types";
-import { DeleteDataQualityJobDefinitionRequest } from "../models/models_1";
+import { DeleteDataQualityJobDefinitionRequest } from "../models/models_2";
import {
de_DeleteDataQualityJobDefinitionCommand,
se_DeleteDataQualityJobDefinitionCommand,
diff --git a/clients/client-sagemaker/src/commands/DeleteDeviceFleetCommand.ts b/clients/client-sagemaker/src/commands/DeleteDeviceFleetCommand.ts
index 7278363d29d43..cfce6c3da056e 100644
--- a/clients/client-sagemaker/src/commands/DeleteDeviceFleetCommand.ts
+++ b/clients/client-sagemaker/src/commands/DeleteDeviceFleetCommand.ts
@@ -14,7 +14,7 @@ import {
SMITHY_CONTEXT_KEY,
} from "@smithy/types";
-import { DeleteDeviceFleetRequest } from "../models/models_1";
+import { DeleteDeviceFleetRequest } from "../models/models_2";
import { de_DeleteDeviceFleetCommand, se_DeleteDeviceFleetCommand } from "../protocols/Aws_json1_1";
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
diff --git a/clients/client-sagemaker/src/commands/DeleteFeatureGroupCommand.ts b/clients/client-sagemaker/src/commands/DeleteFeatureGroupCommand.ts
index e0b252b7dbf3f..e3f6bf410b3eb 100644
--- a/clients/client-sagemaker/src/commands/DeleteFeatureGroupCommand.ts
+++ b/clients/client-sagemaker/src/commands/DeleteFeatureGroupCommand.ts
@@ -42,6 +42,9 @@ export interface DeleteFeatureGroupCommandOutput extends __MetadataBearer {}
* the OnlineStore
immediately after DeleteFeatureGroup
is called.
* Data written into the OfflineStore
will not be deleted. The Amazon Web Services Glue database and tables that are automatically created for your
* OfflineStore
are not deleted.
+ * Note that it can take approximately 10-15 minutes to delete an OnlineStore
+ * FeatureGroup
with the InMemory
+ * StorageType
.
* @example
* Use a bare-bones client and the command you need to make an API call.
* ```javascript
diff --git a/clients/client-sagemaker/src/commands/DescribeDomainCommand.ts b/clients/client-sagemaker/src/commands/DescribeDomainCommand.ts
index 329d9f523a1eb..515073ecba444 100644
--- a/clients/client-sagemaker/src/commands/DescribeDomainCommand.ts
+++ b/clients/client-sagemaker/src/commands/DescribeDomainCommand.ts
@@ -151,6 +151,12 @@ export interface DescribeDomainCommandOutput extends DescribeDomainResponse, __M
* // SecretArn: "STRING_VALUE",
* // },
* // ],
+ * // KendraSettings: { // KendraSettings
+ * // Status: "ENABLED" || "DISABLED",
+ * // },
+ * // DirectDeploySettings: { // DirectDeploySettings
+ * // Status: "ENABLED" || "DISABLED",
+ * // },
* // },
* // },
* // AppNetworkAccessType: "PublicInternetOnly" || "VpcOnly",
diff --git a/clients/client-sagemaker/src/commands/DescribeUserProfileCommand.ts b/clients/client-sagemaker/src/commands/DescribeUserProfileCommand.ts
index d4483981b6a1a..318eef6590c97 100644
--- a/clients/client-sagemaker/src/commands/DescribeUserProfileCommand.ts
+++ b/clients/client-sagemaker/src/commands/DescribeUserProfileCommand.ts
@@ -152,6 +152,12 @@ export interface DescribeUserProfileCommandOutput extends DescribeUserProfileRes
* // SecretArn: "STRING_VALUE",
* // },
* // ],
+ * // KendraSettings: { // KendraSettings
+ * // Status: "ENABLED" || "DISABLED",
+ * // },
+ * // DirectDeploySettings: { // DirectDeploySettings
+ * // Status: "ENABLED" || "DISABLED",
+ * // },
* // },
* // },
* // };
diff --git a/clients/client-sagemaker/src/commands/UpdateDomainCommand.ts b/clients/client-sagemaker/src/commands/UpdateDomainCommand.ts
index c9619067065d1..5699e80ee7261 100644
--- a/clients/client-sagemaker/src/commands/UpdateDomainCommand.ts
+++ b/clients/client-sagemaker/src/commands/UpdateDomainCommand.ts
@@ -137,6 +137,12 @@ export interface UpdateDomainCommandOutput extends UpdateDomainResponse, __Metad
* SecretArn: "STRING_VALUE",
* },
* ],
+ * KendraSettings: { // KendraSettings
+ * Status: "ENABLED" || "DISABLED",
+ * },
+ * DirectDeploySettings: { // DirectDeploySettings
+ * Status: "ENABLED" || "DISABLED",
+ * },
* },
* },
* DomainSettingsForUpdate: { // DomainSettingsForUpdate
diff --git a/clients/client-sagemaker/src/commands/UpdateUserProfileCommand.ts b/clients/client-sagemaker/src/commands/UpdateUserProfileCommand.ts
index 82c09bda55ec6..e24015f13285c 100644
--- a/clients/client-sagemaker/src/commands/UpdateUserProfileCommand.ts
+++ b/clients/client-sagemaker/src/commands/UpdateUserProfileCommand.ts
@@ -138,6 +138,12 @@ export interface UpdateUserProfileCommandOutput extends UpdateUserProfileRespons
* SecretArn: "STRING_VALUE",
* },
* ],
+ * KendraSettings: { // KendraSettings
+ * Status: "ENABLED" || "DISABLED",
+ * },
+ * DirectDeploySettings: { // DirectDeploySettings
+ * Status: "ENABLED" || "DISABLED",
+ * },
* },
* },
* };
diff --git a/clients/client-sagemaker/src/models/models_0.ts b/clients/client-sagemaker/src/models/models_0.ts
index e2ca3bed040a9..6837125398e51 100644
--- a/clients/client-sagemaker/src/models/models_0.ts
+++ b/clients/client-sagemaker/src/models/models_0.ts
@@ -7244,33 +7244,50 @@ export type CandidateSortBy = (typeof CandidateSortBy)[keyof typeof CandidateSor
* @public
* @enum
*/
-export const DataSourceName = {
- SalesforceGenie: "SalesforceGenie",
- Snowflake: "Snowflake",
+export const FeatureStatus = {
+ Disabled: "DISABLED",
+ Enabled: "ENABLED",
} as const;
/**
* @public
*/
-export type DataSourceName = (typeof DataSourceName)[keyof typeof DataSourceName];
+export type FeatureStatus = (typeof FeatureStatus)[keyof typeof FeatureStatus];
+
+/**
+ * @public
+ * The model deployment settings for the SageMaker Canvas application.
+ *
+ * In order to enable model deployment for Canvas, the SageMaker Domain's or user profile's Amazon Web Services IAM
+ * execution role must have the AmazonSageMakerCanvasDirectDeployAccess
policy attached. You can also
+ * turn on model deployment permissions through the SageMaker Domain's or user profile's settings in the SageMaker console.
+ *
+ */
+export interface DirectDeploySettings {
+ /**
+ * @public
+ * Describes whether model deployment permissions are enabled or disabled in the Canvas application.
+ */
+ Status?: FeatureStatus | string;
+}
/**
* @public
* @enum
*/
-export const FeatureStatus = {
- Disabled: "DISABLED",
- Enabled: "ENABLED",
+export const DataSourceName = {
+ SalesforceGenie: "SalesforceGenie",
+ Snowflake: "Snowflake",
} as const;
/**
* @public
*/
-export type FeatureStatus = (typeof FeatureStatus)[keyof typeof FeatureStatus];
+export type DataSourceName = (typeof DataSourceName)[keyof typeof DataSourceName];
/**
* @public
- * The Amazon SageMaker Canvas app setting where you configure OAuth for connecting to an external
+ *
The Amazon SageMaker Canvas application setting where you configure OAuth for connecting to an external
* data source, such as Snowflake.
*/
export interface IdentityProviderOAuthSetting {
@@ -7295,6 +7312,20 @@ export interface IdentityProviderOAuthSetting {
SecretArn?: string;
}
+/**
+ * @public
+ * The Amazon SageMaker Canvas application setting where you configure
+ * document querying.
+ */
+export interface KendraSettings {
+ /**
+ * @public
+ * Describes whether the document querying feature is enabled
+ * or disabled in the Canvas application.
+ */
+ Status?: FeatureStatus | string;
+}
+
/**
* @public
* The model registry settings for the SageMaker Canvas application.
@@ -7369,7 +7400,7 @@ export interface WorkspaceSettings {
export interface CanvasAppSettings {
/**
* @public
- * Time series forecast settings for the Canvas application.
+ * Time series forecast settings for the SageMaker Canvas application.
*/
TimeSeriesForecastingSettings?: TimeSeriesForecastingSettings;
@@ -7390,6 +7421,18 @@ export interface CanvasAppSettings {
* The settings for connecting to an external data source with OAuth.
*/
IdentityProviderOAuthSettings?: IdentityProviderOAuthSetting[];
+
+ /**
+ * @public
+ * The settings for document querying.
+ */
+ KendraSettings?: KendraSettings;
+
+ /**
+ * @public
+ * The model deployment settings for the SageMaker Canvas application.
+ */
+ DirectDeploySettings?: DirectDeploySettings;
}
/**
@@ -11436,27 +11479,3 @@ export interface CreateDataQualityJobDefinitionRequest {
*/
Tags?: Tag[];
}
-
-/**
- * @public
- */
-export interface CreateDataQualityJobDefinitionResponse {
- /**
- * @public
- * The Amazon Resource Name (ARN) of the job definition.
- */
- JobDefinitionArn: string | undefined;
-}
-
-/**
- * @public
- * @enum
- */
-export const EdgePresetDeploymentType = {
- GreengrassV2Component: "GreengrassV2Component",
-} as const;
-
-/**
- * @public
- */
-export type EdgePresetDeploymentType = (typeof EdgePresetDeploymentType)[keyof typeof EdgePresetDeploymentType];
diff --git a/clients/client-sagemaker/src/models/models_1.ts b/clients/client-sagemaker/src/models/models_1.ts
index ecd37b640e645..5f07bc7e93561 100644
--- a/clients/client-sagemaker/src/models/models_1.ts
+++ b/clients/client-sagemaker/src/models/models_1.ts
@@ -43,7 +43,6 @@ import {
ContentClassifier,
ContinuousParameterRange,
ConvergenceDetected,
- EdgePresetDeploymentType,
EndpointInput,
HyperParameterScalingType,
HyperParameterTuningJobObjective,
@@ -77,6 +76,30 @@ import {
VpcConfig,
} from "./models_0";
+/**
+ * @public
+ */
+export interface CreateDataQualityJobDefinitionResponse {
+ /**
+ * @public
+ * The Amazon Resource Name (ARN) of the job definition.
+ */
+ JobDefinitionArn: string | undefined;
+}
+
+/**
+ * @public
+ * @enum
+ */
+export const EdgePresetDeploymentType = {
+ GreengrassV2Component: "GreengrassV2Component",
+} as const;
+
+/**
+ * @public
+ */
+export type EdgePresetDeploymentType = (typeof EdgePresetDeploymentType)[keyof typeof EdgePresetDeploymentType];
+
/**
* @public
* The output configuration.
@@ -11964,28 +11987,6 @@ export interface DeleteContextResponse {
ContextArn?: string;
}
-/**
- * @public
- */
-export interface DeleteDataQualityJobDefinitionRequest {
- /**
- * @public
- * The name of the data quality monitoring job definition to delete.
- */
- JobDefinitionName: string | undefined;
-}
-
-/**
- * @public
- */
-export interface DeleteDeviceFleetRequest {
- /**
- * @public
- * The name of the fleet to delete.
- */
- DeviceFleetName: string | undefined;
-}
-
/**
* @internal
*/
diff --git a/clients/client-sagemaker/src/models/models_2.ts b/clients/client-sagemaker/src/models/models_2.ts
index 50fcefa903ee1..2c69632c31e1e 100644
--- a/clients/client-sagemaker/src/models/models_2.ts
+++ b/clients/client-sagemaker/src/models/models_2.ts
@@ -46,7 +46,6 @@ import {
DataQualityAppSpecification,
DataQualityBaselineConfig,
DataQualityJobInput,
- EdgePresetDeploymentType,
GitConfig,
HyperParameterTuningJobObjectiveType,
InferenceSpecification,
@@ -95,6 +94,7 @@ import {
EdgeDeploymentConfig,
EdgeDeploymentModelConfig,
EdgeOutputConfig,
+ EdgePresetDeploymentType,
EndpointInfo,
ExecutionRoleIdentityConfig,
ExperimentConfig,
@@ -177,6 +177,28 @@ import {
VendorGuidance,
} from "./models_1";
+/**
+ * @public
+ */
+export interface DeleteDataQualityJobDefinitionRequest {
+ /**
+ * @public
+ * The name of the data quality monitoring job definition to delete.
+ */
+ JobDefinitionName: string | undefined;
+}
+
+/**
+ * @public
+ */
+export interface DeleteDeviceFleetRequest {
+ /**
+ * @public
+ * The name of the fleet to delete.
+ */
+ DeviceFleetName: string | undefined;
+}
+
/**
* @public
* @enum
@@ -7418,6 +7440,10 @@ export interface SelectiveExecutionConfig {
* Used to copy input collaterals needed for the selected steps to run.
* The execution status of the pipeline can be either Failed
* or Success
.
+ * This field is required if the steps you specify for
+ * SelectedSteps
depend on output collaterals from any non-specified pipeline
+ * steps. For more information, see Selective
+ * Execution for Pipeline Steps .
*/
SourcePipelineExecutionArn?: string;
@@ -10817,45 +10843,6 @@ export const EndpointConfigSortKey = {
*/
export type EndpointConfigSortKey = (typeof EndpointConfigSortKey)[keyof typeof EndpointConfigSortKey];
-/**
- * @public
- * Provides summary information for an endpoint configuration.
- */
-export interface EndpointConfigSummary {
- /**
- * @public
- * The name of the endpoint configuration.
- */
- EndpointConfigName: string | undefined;
-
- /**
- * @public
- * The Amazon Resource Name (ARN) of the endpoint configuration.
- */
- EndpointConfigArn: string | undefined;
-
- /**
- * @public
- * A timestamp that shows when the endpoint configuration was created.
- */
- CreationTime: Date | undefined;
-}
-
-/**
- * @public
- * @enum
- */
-export const EndpointSortKey = {
- CreationTime: "CreationTime",
- Name: "Name",
- Status: "Status",
-} as const;
-
-/**
- * @public
- */
-export type EndpointSortKey = (typeof EndpointSortKey)[keyof typeof EndpointSortKey];
-
/**
* @internal
*/
diff --git a/clients/client-sagemaker/src/models/models_3.ts b/clients/client-sagemaker/src/models/models_3.ts
index 36066061c67fa..cdd6695a4349c 100644
--- a/clients/client-sagemaker/src/models/models_3.ts
+++ b/clients/client-sagemaker/src/models/models_3.ts
@@ -62,7 +62,6 @@ import {
ModelCardSecurityConfig,
ModelCardStatus,
ModelClientConfig,
- MonitoringScheduleConfig,
MonitoringType,
OfflineStoreConfig,
OnlineStoreConfig,
@@ -85,9 +84,7 @@ import {
EdgePackagingJobSummary,
EMRStepMetadata,
EndpointConfigSortKey,
- EndpointConfigSummary,
EndpointOutputConfiguration,
- EndpointSortKey,
EndpointStatus,
ExecutionStatus,
ExperimentSource,
@@ -137,6 +134,45 @@ import {
Workteam,
} from "./models_2";
+/**
+ * @public
+ * Provides summary information for an endpoint configuration.
+ */
+export interface EndpointConfigSummary {
+ /**
+ * @public
+ * The name of the endpoint configuration.
+ */
+ EndpointConfigName: string | undefined;
+
+ /**
+ * @public
+ * The Amazon Resource Name (ARN) of the endpoint configuration.
+ */
+ EndpointConfigArn: string | undefined;
+
+ /**
+ * @public
+ * A timestamp that shows when the endpoint configuration was created.
+ */
+ CreationTime: Date | undefined;
+}
+
+/**
+ * @public
+ * @enum
+ */
+export const EndpointSortKey = {
+ CreationTime: "CreationTime",
+ Name: "Name",
+ Status: "Status",
+} as const;
+
+/**
+ * @public
+ */
+export type EndpointSortKey = (typeof EndpointSortKey)[keyof typeof EndpointSortKey];
+
/**
* @public
* Provides summary information for an endpoint.
@@ -10562,159 +10598,6 @@ export interface TransformJob {
DataCaptureConfig?: BatchDataCaptureConfig;
}
-/**
- * @public
- * The model card for a model displayed in the Amazon SageMaker Model Dashboard.
- */
-export interface ModelDashboardModelCard {
- /**
- * @public
- * The Amazon Resource Name (ARN) for a model card.
- */
- ModelCardArn?: string;
-
- /**
- * @public
- * The name of a model card.
- */
- ModelCardName?: string;
-
- /**
- * @public
- * The model card version.
- */
- ModelCardVersion?: number;
-
- /**
- * @public
- * The model card status.
- */
- ModelCardStatus?: ModelCardStatus | string;
-
- /**
- * @public
- * The KMS Key ID (KMSKeyId
) for encryption of model card information.
- */
- SecurityConfig?: ModelCardSecurityConfig;
-
- /**
- * @public
- * A timestamp that indicates when the model card was created.
- */
- CreationTime?: Date;
-
- /**
- * @public
- * Information about the user who created or modified an experiment, trial, trial
- * component, lineage group, project, or model card.
- */
- CreatedBy?: UserContext;
-
- /**
- * @public
- * A timestamp that indicates when the model card was last updated.
- */
- LastModifiedTime?: Date;
-
- /**
- * @public
- * Information about the user who created or modified an experiment, trial, trial
- * component, lineage group, project, or model card.
- */
- LastModifiedBy?: UserContext;
-
- /**
- * @public
- * The tags associated with a model card.
- */
- Tags?: Tag[];
-
- /**
- * @public
- * For models created in SageMaker, this is the model ARN. For models created
- * outside of SageMaker, this is a user-customized string.
- */
- ModelId?: string;
-
- /**
- * @public
- * A model card's risk rating. Can be low, medium, or high.
- */
- RiskRating?: string;
-}
-
-/**
- * @public
- * A monitoring schedule for a model displayed in the Amazon SageMaker Model Dashboard.
- */
-export interface ModelDashboardMonitoringSchedule {
- /**
- * @public
- * The Amazon Resource Name (ARN) of a monitoring schedule.
- */
- MonitoringScheduleArn?: string;
-
- /**
- * @public
- * The name of a monitoring schedule.
- */
- MonitoringScheduleName?: string;
-
- /**
- * @public
- * The status of the monitoring schedule.
- */
- MonitoringScheduleStatus?: ScheduleStatus | string;
-
- /**
- * @public
- * The monitor type of a model monitor.
- */
- MonitoringType?: MonitoringType | string;
-
- /**
- * @public
- * If a monitoring job failed, provides the reason.
- */
- FailureReason?: string;
-
- /**
- * @public
- * A timestamp that indicates when the monitoring schedule was created.
- */
- CreationTime?: Date;
-
- /**
- * @public
- * A timestamp that indicates when the monitoring schedule was last updated.
- */
- LastModifiedTime?: Date;
-
- /**
- * @public
- * Configures the monitoring schedule and defines the monitoring job.
- */
- MonitoringScheduleConfig?: MonitoringScheduleConfig;
-
- /**
- * @public
- * The endpoint which is monitored.
- */
- EndpointName?: string;
-
- /**
- * @public
- * A JSON array where each element is a summary for a monitoring alert.
- */
- MonitoringAlertSummaries?: MonitoringAlertSummary[];
-
- /**
- * @public
- * Summary of information about the last monitoring job to run.
- */
- LastMonitoringExecutionSummary?: MonitoringExecutionSummary;
-}
-
/**
* @internal
*/
diff --git a/clients/client-sagemaker/src/models/models_4.ts b/clients/client-sagemaker/src/models/models_4.ts
index fe5df60c32c28..c372bd515a3d4 100644
--- a/clients/client-sagemaker/src/models/models_4.ts
+++ b/clients/client-sagemaker/src/models/models_4.ts
@@ -40,11 +40,13 @@ import {
InstanceMetadataServiceConfiguration,
JobType,
MemberDefinition,
+ ModelCardSecurityConfig,
ModelCardStatus,
ModelMetrics,
ModelPackageValidationSpecification,
ModelVariantConfig,
MonitoringScheduleConfig,
+ MonitoringType,
NetworkConfig,
NotebookInstanceAcceleratorType,
NotebookInstanceLifecycleHook,
@@ -91,11 +93,13 @@ import {
ModelArtifacts,
ModelPackageGroupStatus,
ModelPackageStatusDetails,
+ MonitoringExecutionSummary,
PipelineExecutionStatus,
PipelineExperimentConfig,
PipelineStatus,
ProcessingJobStatus,
ProjectStatus,
+ ScheduleStatus,
SecondaryStatus,
SecondaryStatusTransition,
SelectiveExecutionConfig,
@@ -120,13 +124,165 @@ import {
ModelCard,
ModelCardFilterSensitiveLog,
ModelDashboardEndpoint,
- ModelDashboardModelCard,
- ModelDashboardMonitoringSchedule,
+ MonitoringAlertSummary,
Parameter,
ResourceType,
TransformJob,
} from "./models_3";
+/**
+ * @public
+ * The model card for a model displayed in the Amazon SageMaker Model Dashboard.
+ */
+export interface ModelDashboardModelCard {
+ /**
+ * @public
+ * The Amazon Resource Name (ARN) for a model card.
+ */
+ ModelCardArn?: string;
+
+ /**
+ * @public
+ * The name of a model card.
+ */
+ ModelCardName?: string;
+
+ /**
+ * @public
+ * The model card version.
+ */
+ ModelCardVersion?: number;
+
+ /**
+ * @public
+ * The model card status.
+ */
+ ModelCardStatus?: ModelCardStatus | string;
+
+ /**
+ * @public
+ * The KMS Key ID (KMSKeyId
) for encryption of model card information.
+ */
+ SecurityConfig?: ModelCardSecurityConfig;
+
+ /**
+ * @public
+ * A timestamp that indicates when the model card was created.
+ */
+ CreationTime?: Date;
+
+ /**
+ * @public
+ * Information about the user who created or modified an experiment, trial, trial
+ * component, lineage group, project, or model card.
+ */
+ CreatedBy?: UserContext;
+
+ /**
+ * @public
+ * A timestamp that indicates when the model card was last updated.
+ */
+ LastModifiedTime?: Date;
+
+ /**
+ * @public
+ * Information about the user who created or modified an experiment, trial, trial
+ * component, lineage group, project, or model card.
+ */
+ LastModifiedBy?: UserContext;
+
+ /**
+ * @public
+ * The tags associated with a model card.
+ */
+ Tags?: Tag[];
+
+ /**
+ * @public
+ * For models created in SageMaker, this is the model ARN. For models created
+ * outside of SageMaker, this is a user-customized string.
+ */
+ ModelId?: string;
+
+ /**
+ * @public
+ * A model card's risk rating. Can be low, medium, or high.
+ */
+ RiskRating?: string;
+}
+
+/**
+ * @public
+ * A monitoring schedule for a model displayed in the Amazon SageMaker Model Dashboard.
+ */
+export interface ModelDashboardMonitoringSchedule {
+ /**
+ * @public
+ * The Amazon Resource Name (ARN) of a monitoring schedule.
+ */
+ MonitoringScheduleArn?: string;
+
+ /**
+ * @public
+ * The name of a monitoring schedule.
+ */
+ MonitoringScheduleName?: string;
+
+ /**
+ * @public
+ * The status of the monitoring schedule.
+ */
+ MonitoringScheduleStatus?: ScheduleStatus | string;
+
+ /**
+ * @public
+ * The monitor type of a model monitor.
+ */
+ MonitoringType?: MonitoringType | string;
+
+ /**
+ * @public
+ * If a monitoring job failed, provides the reason.
+ */
+ FailureReason?: string;
+
+ /**
+ * @public
+ * A timestamp that indicates when the monitoring schedule was created.
+ */
+ CreationTime?: Date;
+
+ /**
+ * @public
+ * A timestamp that indicates when the monitoring schedule was last updated.
+ */
+ LastModifiedTime?: Date;
+
+ /**
+ * @public
+ * Configures the monitoring schedule and defines the monitoring job.
+ */
+ MonitoringScheduleConfig?: MonitoringScheduleConfig;
+
+ /**
+ * @public
+ * The endpoint which is monitored.
+ */
+ EndpointName?: string;
+
+ /**
+ * @public
+ * A JSON array where each element is a summary for a monitoring alert.
+ */
+ MonitoringAlertSummaries?: MonitoringAlertSummary[];
+
+ /**
+ * @public
+ * Summary of information about the last monitoring job to run.
+ */
+ LastMonitoringExecutionSummary?: MonitoringExecutionSummary;
+}
+
/**
* @public
* A model displayed in the Amazon SageMaker Model Dashboard.
diff --git a/clients/client-sagemaker/src/protocols/Aws_json1_1.ts b/clients/client-sagemaker/src/protocols/Aws_json1_1.ts
index 9710657d98c56..a471aac71251a 100644
--- a/clients/client-sagemaker/src/protocols/Aws_json1_1.ts
+++ b/clients/client-sagemaker/src/protocols/Aws_json1_1.ts
@@ -897,6 +897,7 @@ import {
DataQualityBaselineConfig,
DataQualityJobInput,
DataSource,
+ DirectDeploySettings,
EndpointInput,
FileSystemConfig,
FileSystemDataSource,
@@ -912,6 +913,7 @@ import {
InputConfig,
InstanceGroup,
IntegerParameterRangeSpecification,
+ KendraSettings,
KernelGatewayImageConfig,
KernelSpec,
MetadataProperties,
@@ -1040,8 +1042,6 @@ import {
DeleteAssociationRequest,
DeleteCodeRepositoryInput,
DeleteContextRequest,
- DeleteDataQualityJobDefinitionRequest,
- DeleteDeviceFleetRequest,
DeploymentConfig,
DeploymentStage,
DeviceSelectionConfig,
@@ -1192,6 +1192,8 @@ import {
WorkforceVpcConfigRequest,
} from "../models/models_1";
import {
+ DeleteDataQualityJobDefinitionRequest,
+ DeleteDeviceFleetRequest,
DeleteDomainRequest,
DeleteEdgeDeploymentPlanRequest,
DeleteEdgeDeploymentStageRequest,
@@ -1361,7 +1363,6 @@ import {
EdgePackagingJobSummary,
EnableSagemakerServicecatalogPortfolioInput,
Endpoint,
- EndpointConfigSummary,
FeatureParameter,
FinalHyperParameterTuningJobObjectiveMetric,
HyperParameterTrainingJobSummary,
@@ -1389,6 +1390,7 @@ import {
Workteam,
} from "../models/models_2";
import {
+ EndpointConfigSummary,
EndpointSummary,
Experiment,
ExperimentSummary,
@@ -1566,8 +1568,6 @@ import {
ModelCardSummary,
ModelCardVersionSummary,
ModelDashboardEndpoint,
- ModelDashboardModelCard,
- ModelDashboardMonitoringSchedule,
ModelMetadataFilter,
ModelMetadataSearchExpression,
ModelPackageGroupSummary,
@@ -1601,6 +1601,8 @@ import {
} from "../models/models_3";
import {
ModelDashboardModel,
+ ModelDashboardModelCard,
+ ModelDashboardMonitoringSchedule,
ModelPackage,
ModelPackageGroup,
ModelVariantAction,
@@ -20060,6 +20062,8 @@ const se_DesiredWeightAndCapacityList = (input: DesiredWeightAndCapacity[], cont
// se_DeviceSelectionConfig omitted.
+// se_DirectDeploySettings omitted.
+
// se_DisableSagemakerServicecatalogPortfolioInput omitted.
// se_DisassociateTrialComponentRequest omitted.
@@ -20316,6 +20320,8 @@ const se_InferenceExperimentSchedule = (input: InferenceExperimentSchedule, cont
// se_JupyterServerAppSettings omitted.
+// se_KendraSettings omitted.
+
// se_KernelGatewayAppSettings omitted.
// se_KernelGatewayImageConfig omitted.
@@ -24407,6 +24413,8 @@ const de_DeviceSummary = (output: any, context: __SerdeContext): DeviceSummary =
}) as any;
};
+// de_DirectDeploySettings omitted.
+
// de_DisableSagemakerServicecatalogPortfolioOutput omitted.
// de_DisassociateTrialComponentResponse omitted.
@@ -25460,6 +25468,8 @@ const de_InferenceRecommendationsJobSteps = (
// de_JupyterServerAppSettings omitted.
+// de_KendraSettings omitted.
+
// de_KernelGatewayAppSettings omitted.
// de_KernelGatewayImageConfig omitted.
diff --git a/codegen/sdk-codegen/aws-models/sagemaker.json b/codegen/sdk-codegen/aws-models/sagemaker.json
index d3925e7726986..6ed9a554522c6 100644
--- a/codegen/sdk-codegen/aws-models/sagemaker.json
+++ b/codegen/sdk-codegen/aws-models/sagemaker.json
@@ -4287,7 +4287,7 @@
"TimeSeriesForecastingSettings": {
"target": "com.amazonaws.sagemaker#TimeSeriesForecastingSettings",
"traits": {
- "smithy.api#documentation": "Time series forecast settings for the Canvas application.
"
+ "smithy.api#documentation": "Time series forecast settings for the SageMaker Canvas application.
"
}
},
"ModelRegisterSettings": {
@@ -4307,6 +4307,18 @@
"traits": {
"smithy.api#documentation": "The settings for connecting to an external data source with OAuth.
"
}
+ },
+ "KendraSettings": {
+ "target": "com.amazonaws.sagemaker#KendraSettings",
+ "traits": {
+ "smithy.api#documentation": "The settings for document querying.
"
+ }
+ },
+ "DirectDeploySettings": {
+ "target": "com.amazonaws.sagemaker#DirectDeploySettings",
+ "traits": {
+ "smithy.api#documentation": "The model deployment settings for the SageMaker Canvas application.
"
+ }
}
},
"traits": {
@@ -8095,7 +8107,7 @@
}
],
"traits": {
- "smithy.api#documentation": "Create a new FeatureGroup
. A FeatureGroup
is a group of\n Features
defined in the FeatureStore
to describe a\n Record
.
\n The FeatureGroup
defines the schema and features contained in the\n FeatureGroup. A FeatureGroup
definition is composed of a list of\n Features
, a RecordIdentifierFeatureName
, an\n EventTimeFeatureName
and configurations for its OnlineStore
\n and OfflineStore
. Check Amazon Web Services service\n quotas to see the FeatureGroup
s quota for your Amazon Web Services\n account.
\n \n You must include at least one of OnlineStoreConfig
and\n OfflineStoreConfig
to create a FeatureGroup
.
\n "
+ "smithy.api#documentation": "Create a new FeatureGroup
. A FeatureGroup
is a group of\n Features
defined in the FeatureStore
to describe a\n Record
.
\n The FeatureGroup
defines the schema and features contained in the\n FeatureGroup
. A FeatureGroup
definition is composed of a list\n of Features
, a RecordIdentifierFeatureName
, an\n EventTimeFeatureName
and configurations for its OnlineStore
\n and OfflineStore
. Check Amazon Web Services service\n quotas to see the FeatureGroup
s quota for your Amazon Web Services\n account.
\n Note that it can take approximately 10-15 minutes to provision an\n OnlineStore
\n FeatureGroup
with the InMemory
\n StorageType
.
\n \n You must include at least one of OnlineStoreConfig
and\n OfflineStoreConfig
to create a FeatureGroup
.
\n "
}
},
"com.amazonaws.sagemaker#CreateFeatureGroupRequest": {
@@ -12603,7 +12615,7 @@
}
],
"traits": {
- "smithy.api#documentation": "Delete the FeatureGroup
and any data that was written to the\n OnlineStore
of the FeatureGroup
. Data cannot be accessed from\n the OnlineStore
immediately after DeleteFeatureGroup
is called.
\n Data written into the OfflineStore
will not be deleted. The Amazon Web Services Glue database and tables that are automatically created for your\n OfflineStore
are not deleted.
"
+ "smithy.api#documentation": "Delete the FeatureGroup
and any data that was written to the\n OnlineStore
of the FeatureGroup
. Data cannot be accessed from\n the OnlineStore
immediately after DeleteFeatureGroup
is called.
\n Data written into the OfflineStore
will not be deleted. The Amazon Web Services Glue database and tables that are automatically created for your\n OfflineStore
are not deleted.
\n Note that it can take approximately 10-15 minutes to delete an OnlineStore
\n FeatureGroup
with the InMemory
\n StorageType
.
"
}
},
"com.amazonaws.sagemaker#DeleteFeatureGroupRequest": {
@@ -21667,6 +21679,20 @@
}
}
},
+ "com.amazonaws.sagemaker#DirectDeploySettings": {
+ "type": "structure",
+ "members": {
+ "Status": {
+ "target": "com.amazonaws.sagemaker#FeatureStatus",
+ "traits": {
+ "smithy.api#documentation": "Describes whether model deployment permissions are enabled or disabled in the Canvas application.
"
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#documentation": "The model deployment settings for the SageMaker Canvas application.
\n \n In order to enable model deployment for Canvas, the SageMaker Domain's or user profile's Amazon Web Services IAM\n execution role must have the AmazonSageMakerCanvasDirectDeployAccess
policy attached. You can also\n turn on model deployment permissions through the SageMaker Domain's or user profile's settings in the SageMaker console.
\n "
+ }
+ },
"com.amazonaws.sagemaker#DirectInternetAccess": {
"type": "enum",
"members": {
@@ -27482,7 +27508,7 @@
}
},
"traits": {
- "smithy.api#documentation": "The Amazon SageMaker Canvas app setting where you configure OAuth for connecting to an external\n data source, such as Snowflake.
"
+ "smithy.api#documentation": "The Amazon SageMaker Canvas application setting where you configure OAuth for connecting to an external\n data source, such as Snowflake.
"
}
},
"com.amazonaws.sagemaker#IdentityProviderOAuthSettings": {
@@ -29521,6 +29547,20 @@
}
}
},
+ "com.amazonaws.sagemaker#KendraSettings": {
+ "type": "structure",
+ "members": {
+ "Status": {
+ "target": "com.amazonaws.sagemaker#FeatureStatus",
+ "traits": {
+ "smithy.api#documentation": "Describes whether the document querying feature is enabled\n or disabled in the Canvas application.
"
+ }
+ }
+ },
+ "traits": {
+ "smithy.api#documentation": "The Amazon SageMaker Canvas application setting where you configure\n document querying.
"
+ }
+ },
"com.amazonaws.sagemaker#KernelDisplayName": {
"type": "string",
"traits": {
@@ -51676,7 +51716,7 @@
"SourcePipelineExecutionArn": {
"target": "com.amazonaws.sagemaker#PipelineExecutionArn",
"traits": {
- "smithy.api#documentation": "The ARN from a reference execution of the current pipeline. \n Used to copy input collaterals needed for the selected steps to run.\n The execution status of the pipeline can be either Failed
\n or Success
.
"
+ "smithy.api#documentation": "The ARN from a reference execution of the current pipeline. \n Used to copy input collaterals needed for the selected steps to run.\n The execution status of the pipeline can be either Failed
\n or Success
.
\n This field is required if the steps you specify for\n SelectedSteps
depend on output collaterals from any non-specified pipeline\n steps. For more information, see Selective\n Execution for Pipeline Steps .
"
}
},
"SelectedSteps": {
@@ -54866,7 +54906,7 @@
"traits": {
"smithy.api#length": {
"min": 1,
- "max": 10
+ "max": 100
}
}
},
@@ -54901,7 +54941,7 @@
"traits": {
"smithy.api#length": {
"min": 0,
- "max": 48
+ "max": 100
}
}
},
From 3476339063e17ad92784cc44845be5675a7e7dd5 Mon Sep 17 00:00:00 2001
From: awstools
Date: Thu, 12 Oct 2023 18:24:10 +0000
Subject: [PATCH 34/35] feat(clients): update client endpoints as of 2023-10-12
---
.../smithy/aws/typescript/codegen/endpoints.json | 14 ++++++++++++--
1 file changed, 12 insertions(+), 2 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 ff3bed737cbbe..c2b18d3ef33e9 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
@@ -26408,8 +26408,18 @@
},
"simspaceweaver": {
"endpoints": {
- "us-gov-east-1": {},
- "us-gov-west-1": {}
+ "us-gov-east-1": {
+ "credentialScope": {
+ "region": "us-gov-east-1"
+ },
+ "hostname": "simspaceweaver.us-gov-east-1.amazonaws.com"
+ },
+ "us-gov-west-1": {
+ "credentialScope": {
+ "region": "us-gov-west-1"
+ },
+ "hostname": "simspaceweaver.us-gov-west-1.amazonaws.com"
+ }
}
},
"sms": {
From 9d462edb1a061f0c3e74d6efaad0dc934dfa9819 Mon Sep 17 00:00:00 2001
From: awstools
Date: Thu, 12 Oct 2023 18:49:42 +0000
Subject: [PATCH 35/35] Publish v3.428.0
---
CHANGELOG.md | 34 +++++++
benchmark/size/report.md | 98 +++++++++----------
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 +-
.../client-alexa-for-business/CHANGELOG.md | 8 ++
.../client-alexa-for-business/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 +-
.../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-arc-zonal-shift/CHANGELOG.md | 8 ++
clients/client-arc-zonal-shift/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 | 11 +++
clients/client-auto-scaling/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-backupstorage/CHANGELOG.md | 8 ++
clients/client-backupstorage/package.json | 2 +-
clients/client-batch/CHANGELOG.md | 8 ++
clients/client-batch/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 +-
.../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-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 +-
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-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 | 11 +++
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-controltower/CHANGELOG.md | 11 +++
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 +-
clients/client-customer-profiles/CHANGELOG.md | 11 +++
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-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 | 8 ++
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 | 11 +++
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 | 8 ++
clients/client-ecs/package.json | 2 +-
clients/client-efs/CHANGELOG.md | 8 ++
clients/client-efs/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-fsx/CHANGELOG.md | 8 ++
clients/client-fsx/package.json | 2 +-
clients/client-gamelift/CHANGELOG.md | 8 ++
clients/client-gamelift/package.json | 2 +-
clients/client-gamesparks/CHANGELOG.md | 8 ++
clients/client-gamesparks/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 | 11 +++
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-honeycode/CHANGELOG.md | 8 ++
clients/client-honeycode/package.json | 2 +-
clients/client-iam/CHANGELOG.md | 8 ++
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/CHANGELOG.md | 8 ++
clients/client-inspector/package.json | 2 +-
clients/client-inspector2/CHANGELOG.md | 11 +++
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-roborunner/CHANGELOG.md | 8 ++
clients/client-iot-roborunner/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 | 11 +++
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 | 11 +++
clients/client-lambda/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 | 11 +++
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 | 11 +++
clients/client-machine-learning/package.json | 2 +-
clients/client-macie/CHANGELOG.md | 8 ++
clients/client-macie/package.json | 2 +-
clients/client-macie2/CHANGELOG.md | 8 ++
clients/client-macie2/package.json | 2 +-
.../CHANGELOG.md | 8 ++
.../package.json | 2 +-
clients/client-managedblockchain/CHANGELOG.md | 8 ++
clients/client-managedblockchain/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 +-
.../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-mobile/CHANGELOG.md | 8 ++
clients/client-mobile/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/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-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-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-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 | 11 +++
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 | 11 +++
clients/client-rekognition/package.json | 2 +-
.../client-rekognitionstreaming/CHANGELOG.md | 8 ++
.../client-rekognitionstreaming/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-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 | 8 ++
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 | 11 +++
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-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 | 8 ++
clients/client-sts/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-textract/CHANGELOG.md | 11 +++
clients/client-textract/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 | 11 +++
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 +-
.../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 +-
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 +-
packages/body-checksum-browser/CHANGELOG.md | 8 ++
packages/body-checksum-browser/package.json | 2 +-
packages/body-checksum-node/CHANGELOG.md | 8 ++
packages/body-checksum-node/package.json | 2 +-
packages/cloudfront-signer/CHANGELOG.md | 8 ++
packages/cloudfront-signer/package.json | 2 +-
.../CHANGELOG.md | 8 ++
.../package.json | 2 +-
packages/credential-provider-env/CHANGELOG.md | 8 ++
packages/credential-provider-env/package.json | 2 +-
.../credential-provider-http/CHANGELOG.md | 8 ++
.../credential-provider-http/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 +-
.../credential-provider-process/CHANGELOG.md | 8 ++
.../credential-provider-process/package.json | 2 +-
packages/credential-provider-sso/CHANGELOG.md | 8 ++
packages/credential-provider-sso/package.json | 2 +-
.../CHANGELOG.md | 8 ++
.../package.json | 2 +-
packages/credential-providers/CHANGELOG.md | 8 ++
packages/credential-providers/package.json | 2 +-
.../eventstream-handler-node/CHANGELOG.md | 8 ++
.../eventstream-handler-node/package.json | 2 +-
packages/karma-credential-loader/CHANGELOG.md | 8 ++
packages/karma-credential-loader/package.json | 2 +-
packages/middleware-api-key/CHANGELOG.md | 8 ++
packages/middleware-api-key/package.json | 2 +-
.../middleware-bucket-endpoint/CHANGELOG.md | 8 ++
.../middleware-bucket-endpoint/package.json | 2 +-
.../CHANGELOG.md | 8 ++
.../package.json | 2 +-
packages/middleware-eventstream/CHANGELOG.md | 8 ++
packages/middleware-eventstream/package.json | 2 +-
.../middleware-expect-continue/CHANGELOG.md | 8 ++
.../middleware-expect-continue/package.json | 2 +-
.../CHANGELOG.md | 11 +++
.../package.json | 2 +-
packages/middleware-host-header/CHANGELOG.md | 8 ++
packages/middleware-host-header/package.json | 2 +-
.../CHANGELOG.md | 8 ++
.../package.json | 2 +-
packages/middleware-logger/CHANGELOG.md | 8 ++
packages/middleware-logger/package.json | 2 +-
.../CHANGELOG.md | 8 ++
.../package.json | 2 +-
.../middleware-sdk-api-gateway/CHANGELOG.md | 8 ++
.../middleware-sdk-api-gateway/package.json | 2 +-
packages/middleware-sdk-ec2/CHANGELOG.md | 8 ++
packages/middleware-sdk-ec2/package.json | 2 +-
packages/middleware-sdk-glacier/CHANGELOG.md | 8 ++
packages/middleware-sdk-glacier/package.json | 2 +-
.../CHANGELOG.md | 8 ++
.../package.json | 2 +-
packages/middleware-sdk-rds/CHANGELOG.md | 8 ++
packages/middleware-sdk-rds/package.json | 2 +-
packages/middleware-sdk-route53/CHANGELOG.md | 8 ++
packages/middleware-sdk-route53/package.json | 2 +-
.../middleware-sdk-s3-control/CHANGELOG.md | 8 ++
.../middleware-sdk-s3-control/package.json | 2 +-
packages/middleware-sdk-s3/CHANGELOG.md | 8 ++
packages/middleware-sdk-s3/package.json | 2 +-
packages/middleware-sdk-sqs/CHANGELOG.md | 8 ++
packages/middleware-sdk-sqs/package.json | 2 +-
packages/middleware-sdk-sts/CHANGELOG.md | 8 ++
packages/middleware-sdk-sts/package.json | 2 +-
.../CHANGELOG.md | 8 ++
.../package.json | 2 +-
packages/middleware-signing/CHANGELOG.md | 8 ++
packages/middleware-signing/package.json | 2 +-
packages/middleware-ssec/CHANGELOG.md | 8 ++
packages/middleware-ssec/package.json | 2 +-
packages/middleware-token/CHANGELOG.md | 8 ++
packages/middleware-token/package.json | 2 +-
packages/middleware-user-agent/CHANGELOG.md | 8 ++
packages/middleware-user-agent/package.json | 2 +-
packages/middleware-websocket/CHANGELOG.md | 8 ++
packages/middleware-websocket/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/region-config-resolver/CHANGELOG.md | 8 ++
packages/region-config-resolver/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/sha256-tree-hash/CHANGELOG.md | 8 ++
packages/sha256-tree-hash/package.json | 2 +-
packages/signature-v4-crt/CHANGELOG.md | 8 ++
packages/signature-v4-crt/package.json | 2 +-
.../signature-v4-multi-region/CHANGELOG.md | 8 ++
.../signature-v4-multi-region/package.json | 2 +-
packages/smithy-client/CHANGELOG.md | 8 ++
packages/smithy-client/package.json | 2 +-
packages/token-providers/CHANGELOG.md | 8 ++
packages/token-providers/package.json | 2 +-
packages/types/CHANGELOG.md | 8 ++
packages/types/package.json | 2 +-
packages/util-create-request/CHANGELOG.md | 8 ++
packages/util-create-request/package.json | 2 +-
packages/util-dns/CHANGELOG.md | 8 ++
packages/util-dns/package.json | 2 +-
packages/util-dynamodb/CHANGELOG.md | 11 +++
packages/util-dynamodb/package.json | 2 +-
packages/util-endpoints/CHANGELOG.md | 8 ++
packages/util-endpoints/package.json | 2 +-
packages/util-format-url/CHANGELOG.md | 8 ++
packages/util-format-url/package.json | 2 +-
packages/util-user-agent-browser/CHANGELOG.md | 8 ++
packages/util-user-agent-browser/package.json | 2 +-
packages/util-user-agent-node/CHANGELOG.md | 8 ++
packages/util-user-agent-node/package.json | 2 +-
packages/xhr-http-handler/CHANGELOG.md | 8 ++
packages/xhr-http-handler/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 +-
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 +-
.../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-restjson-server/CHANGELOG.md | 8 ++
private/aws-restjson-server/package.json | 2 +-
.../CHANGELOG.md | 8 ++
.../package.json | 2 +-
private/weather/CHANGELOG.md | 8 ++
private/weather/package.json | 2 +-
yarn.lock | 2 +-
868 files changed, 4030 insertions(+), 483 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 34da01168acfb..5939c19a6c4cc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,40 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+
+### Bug Fixes
+
+* **lib-dynamodb:** add e2e suite and bug fixes for lib-dynamodb ([#5306](https://github.com/aws/aws-sdk-js-v3/issues/5306)) ([2fe0a88](https://github.com/aws/aws-sdk-js-v3/commit/2fe0a883f8e5bb8ab855874072be62bc07441762))
+* **middleware-flexible-checksums:** skip checksum validation for s3 whole-object multipart GET ([#5345](https://github.com/aws/aws-sdk-js-v3/issues/5345)) ([6a6a75e](https://github.com/aws/aws-sdk-js-v3/commit/6a6a75e69dbc05750cab0ce83c2235f87c75b922))
+
+
+### Features
+
+* **client-auditmanager:** This release introduces a new limit to the awsAccounts parameter. When you create or update an assessment, there is now a limit of 200 AWS accounts that can be specified in the assessment scope. ([af41764](https://github.com/aws/aws-sdk-js-v3/commit/af417648f78d4ea2496633d11ad154f2935066bf))
+* **client-auto-scaling:** Update the NotificationMetadata field to only allow visible ascii characters. Add paginators to DescribeInstanceRefreshes, DescribeLoadBalancers, and DescribeLoadBalancerTargetGroups ([6727085](https://github.com/aws/aws-sdk-js-v3/commit/672708506bf6b4748142ed5126c1b788e8f47758))
+* **client-config-service:** Add enums for resource types supported by Config ([1cdcf43](https://github.com/aws/aws-sdk-js-v3/commit/1cdcf4309aabf6093fdf340538882f60cb9447bc))
+* **client-controltower:** Added new EnabledControl resource details to ListEnabledControls API and added new GetEnabledControl API. ([784c6fb](https://github.com/aws/aws-sdk-js-v3/commit/784c6fb6561f80222b9d39f159b6f44ae4be5a2a))
+* **client-customer-profiles:** Adds sensitive trait to various shapes in Customer Profiles Calculated Attribute API model. ([73c9229](https://github.com/aws/aws-sdk-js-v3/commit/73c9229645cd57746c812bc85b4d230bd6f70ffb))
+* **client-ec2:** This release adds Ubuntu Pro as a supported platform for On-Demand Capacity Reservations and adds support for setting an Amazon Machine Image (AMI) to disabled state. Disabling the AMI makes it private if it was previously shared, and prevents new EC2 instance launches from it. ([9c57ae3](https://github.com/aws/aws-sdk-js-v3/commit/9c57ae3280837f11350664050bb11d0ba768f149))
+* **client-glue:** Extending version control support to GitLab and Bitbucket from AWSGlue ([b683df3](https://github.com/aws/aws-sdk-js-v3/commit/b683df3c866f42d759c18b10be7007bf8e24f608))
+* **client-inspector2:** Add MacOs ec2 platform support ([2964c2f](https://github.com/aws/aws-sdk-js-v3/commit/2964c2f75c0e59c6bfd700bde7fe1bbecaef60c5))
+* **client-ivs-realtime:** Update GetParticipant to return additional metadata. ([4adb626](https://github.com/aws/aws-sdk-js-v3/commit/4adb62606861bc185678ff64d9871cc3930cefac))
+* **client-lambda:** Adds support for Lambda functions to access Dual-Stack subnets over IPv6, via an opt-in flag in CreateFunction and UpdateFunctionConfiguration APIs ([2bb63a0](https://github.com/aws/aws-sdk-js-v3/commit/2bb63a023100d2133b8050c1eb528f04444bd576))
+* **client-location:** This release adds endpoint updates for all AWS Location resource operations. ([f71b216](https://github.com/aws/aws-sdk-js-v3/commit/f71b2162e204e6bd55685b443964e34944040d66))
+* **client-machine-learning:** This release marks Password field as sensitive ([4d5eac6](https://github.com/aws/aws-sdk-js-v3/commit/4d5eac693235fa55b8f817a7b545befe0d0a30a6))
+* **client-rds:** This release adds support for adding a dedicated log volume to open-source RDS instances. ([634a983](https://github.com/aws/aws-sdk-js-v3/commit/634a98311610222f33aa38a6912eccda25ff6d5f))
+* **client-rekognition:** Amazon Rekognition introduces support for Custom Moderation. This allows the enhancement of accuracy for detect moderation labels operations by creating custom adapters tuned on customer data. ([87763f3](https://github.com/aws/aws-sdk-js-v3/commit/87763f3b71b3bdc7e07cafbbcf6be210e137d1e2))
+* **client-sagemaker:** Amazon SageMaker Canvas adds KendraSettings and DirectDeploySettings support for CanvasAppSettings ([685916c](https://github.com/aws/aws-sdk-js-v3/commit/685916ce1a1d171c083afe0800bd3c4124408caa))
+* **client-textract:** This release adds 9 new APIs for adapter and adapter version management, 3 new APIs for tagging, and updates AnalyzeDocument and StartDocumentAnalysis API parameters for using adapters. ([4ce1e29](https://github.com/aws/aws-sdk-js-v3/commit/4ce1e296e2ef4433d5463aa424028c4787ffc2ba))
+* **client-transcribe:** This release is to enable m4a format to customers ([8c24c28](https://github.com/aws/aws-sdk-js-v3/commit/8c24c2881d77f0ef0d3f68c4fd7e748a146b4d9b))
+* **clients:** update client endpoints as of 2023-10-12 ([3476339](https://github.com/aws/aws-sdk-js-v3/commit/3476339063e17ad92784cc44845be5675a7e7dd5))
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
diff --git a/benchmark/size/report.md b/benchmark/size/report.md
index b12a015259ad7..070c9064420ac 100644
--- a/benchmark/size/report.md
+++ b/benchmark/size/report.md
@@ -1,57 +1,57 @@
| Package | Version | Publish Size | browser:Webpack | browser:Rollup | browser:EsBuild |
| :------ | :------ | :----------- | :------ | :----- | :------- |
|@aws-sdk/abort-controller|3.370.0|14.3 KB|✅(5.77.0)|✅(3.20.2)|✅(0.17.15)|
-|@aws-sdk/client-app-mesh|3.425.0|1.2 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
-|@aws-sdk/client-application-insights|3.425.0|673.2 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
-|@aws-sdk/client-athena|3.425.0|1.2 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
-|@aws-sdk/client-auto-scaling|3.425.0|1.8 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
-|@aws-sdk/client-cloudformation|3.425.0|2 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
-|@aws-sdk/client-cloudhsm-v2|3.425.0|370.5 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
-|@aws-sdk/client-cloudwatch|3.425.0|1.1 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
-|@aws-sdk/client-cloudwatch-logs|3.425.0|988 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
-|@aws-sdk/client-codebuild|3.425.0|1.1 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
-|@aws-sdk/client-codecommit|3.425.0|2.4 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
-|@aws-sdk/client-codedeploy|3.425.0|1.4 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
-|@aws-sdk/client-codepipeline|3.425.0|938.1 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
-|@aws-sdk/client-cognito-identity|3.425.0|519.6 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
-|@aws-sdk/client-cognito-identity-provider|3.425.0|2.6 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
-|@aws-sdk/client-cognito-sync|3.425.0|450 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
-|@aws-sdk/client-dynamodb|3.425.0|1.7 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
-|@aws-sdk/client-ec2|3.425.0|15.3 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
-|@aws-sdk/client-efs|3.425.0|787.6 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
-|@aws-sdk/client-eventbridge|3.425.0|1.1 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
-|@aws-sdk/client-firehose|3.425.0|535.2 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
-|@aws-sdk/client-glue|3.425.0|4.3 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
-|@aws-sdk/client-iam|3.425.0|3.4 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
-|@aws-sdk/client-kinesis|3.425.0|760.2 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
-|@aws-sdk/client-kms|3.425.0|1.6 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
-|@aws-sdk/client-lambda|3.425.0|1.7 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
-|@aws-sdk/client-opsworks|3.425.0|1.4 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
-|@aws-sdk/client-pinpoint|3.425.0|3 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
-|@aws-sdk/client-resource-groups-tagging-api|3.425.0|273.2 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
-|@aws-sdk/client-s3|3.425.0|2.9 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
-|@aws-sdk/client-ses|3.425.0|1.6 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
-|@aws-sdk/client-sns|3.425.0|1 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
-|@aws-sdk/client-ssm|3.425.0|3.4 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
-|@aws-sdk/client-sts|3.425.0|397.1 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
-|@aws-sdk/client-xray|3.425.0|707.2 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
-|@aws-sdk/credential-provider-cognito-identity|3.425.0|36.2 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
-|@aws-sdk/credential-provider-env|3.418.0|17.3 KB|N/A|N/A|N/A|
+|@aws-sdk/client-app-mesh|3.427.0|1.2 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/client-application-insights|3.427.0|673.2 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/client-athena|3.427.0|1.2 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/client-auto-scaling|3.427.0|1.8 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/client-cloudformation|3.427.0|2 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/client-cloudhsm-v2|3.427.0|370.5 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/client-cloudwatch|3.427.0|1.1 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/client-cloudwatch-logs|3.427.0|988 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/client-codebuild|3.427.0|1.1 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/client-codecommit|3.427.0|2.4 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/client-codedeploy|3.427.0|1.4 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/client-codepipeline|3.427.0|938.1 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/client-cognito-identity|3.427.0|519.6 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/client-cognito-identity-provider|3.427.0|2.6 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/client-cognito-sync|3.427.0|450 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/client-dynamodb|3.427.0|1.7 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/client-ec2|3.427.0|15.3 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/client-efs|3.427.0|787.6 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/client-eventbridge|3.427.0|1.1 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/client-firehose|3.427.0|535.2 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/client-glue|3.427.0|4.3 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/client-iam|3.427.0|3.4 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/client-kinesis|3.427.0|760.2 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/client-kms|3.427.0|1.6 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/client-lambda|3.427.0|1.7 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/client-opsworks|3.427.0|1.4 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/client-pinpoint|3.427.0|3 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/client-resource-groups-tagging-api|3.427.0|273.2 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/client-s3|3.427.0|2.9 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/client-ses|3.427.0|1.6 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/client-sns|3.427.0|1 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/client-ssm|3.427.0|3.4 MB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/client-sts|3.427.0|397.1 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/client-xray|3.427.0|707.2 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/credential-provider-cognito-identity|3.427.0|36.2 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/credential-provider-env|3.425.0|17.3 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.425.0|37.2 KB|N/A|N/A|N/A|
-|@aws-sdk/credential-provider-node|3.425.0|26.7 KB|N/A|N/A|N/A|
-|@aws-sdk/credential-provider-process|3.418.0|21.9 KB|N/A|N/A|N/A|
-|@aws-sdk/credential-provider-sso|3.425.0|30.8 KB|N/A|N/A|N/A|
-|@aws-sdk/credential-provider-web-identity|3.418.0|28.1 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
-|@aws-sdk/credential-providers|3.425.0|84.3 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/credential-provider-ini|3.427.0|37.2 KB|N/A|N/A|N/A|
+|@aws-sdk/credential-provider-node|3.427.0|26.7 KB|N/A|N/A|N/A|
+|@aws-sdk/credential-provider-process|3.425.0|21.9 KB|N/A|N/A|N/A|
+|@aws-sdk/credential-provider-sso|3.427.0|30.8 KB|N/A|N/A|N/A|
+|@aws-sdk/credential-provider-web-identity|3.425.0|28.1 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/credential-providers|3.427.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)|
-|@aws-sdk/lib-dynamodb|3.425.0|155 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
-|@aws-sdk/lib-storage|3.425.0|53.3 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/lib-dynamodb|3.427.0|164.3 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/lib-storage|3.427.0|53.3 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
|@aws-sdk/node-http-handler|3.370.0|14.4 KB|N/A|N/A|N/A|
-|@aws-sdk/polly-request-presigner|3.425.0|23.2 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
-|@aws-sdk/s3-presigned-post|3.425.0|26.9 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
-|@aws-sdk/s3-request-presigner|3.425.0|29.5 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/polly-request-presigner|3.427.0|23.2 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/s3-presigned-post|3.427.0|26.9 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/s3-request-presigner|3.427.0|29.5 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.418.0|69.7 KB|N/A|N/A|N/A|
+|@aws-sdk/signature-v4-crt|3.425.0|69.7 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)|
-|@aws-sdk/types|3.418.0|33.5 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
+|@aws-sdk/types|3.425.0|33.5 KB|✅(5.88.2)|✅(3.26.3)|✅(0.18.15)|
diff --git a/clients/client-accessanalyzer/CHANGELOG.md b/clients/client-accessanalyzer/CHANGELOG.md
index 385a39aced101..fe58b2822c499 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-accessanalyzer
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 1b2aa16080fb4..3b50dbfa115d4 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.427.0",
+ "version": "3.428.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-account/CHANGELOG.md b/clients/client-account/CHANGELOG.md
index c98efb5ca6cec..32bc49c65169d 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-account
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 35c9d1df5fa73..13d33e760667d 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.427.0",
+ "version": "3.428.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-acm-pca/CHANGELOG.md b/clients/client-acm-pca/CHANGELOG.md
index 7fb74cf5068c6..6d51343c84d97 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-acm-pca
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 6aaf6893525ba..efea808442b10 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.427.0",
+ "version": "3.428.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-acm/CHANGELOG.md b/clients/client-acm/CHANGELOG.md
index 3de2c2a749c18..b05a522441877 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-acm
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 cf7c2d35f0daa..239698ca66392 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.427.0",
+ "version": "3.428.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-alexa-for-business/CHANGELOG.md b/clients/client-alexa-for-business/CHANGELOG.md
index fa22977b52939..378fc1549f1ce 100644
--- a/clients/client-alexa-for-business/CHANGELOG.md
+++ b/clients/client-alexa-for-business/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-alexa-for-business
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**Note:** Version bump only for package @aws-sdk/client-alexa-for-business
diff --git a/clients/client-alexa-for-business/package.json b/clients/client-alexa-for-business/package.json
index 5e3ac2451c9ad..56c416ac1979b 100644
--- a/clients/client-alexa-for-business/package.json
+++ b/clients/client-alexa-for-business/package.json
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/client-alexa-for-business",
"description": "AWS SDK for JavaScript Alexa For Business Client for Node.js, Browser and React Native",
- "version": "3.427.0",
+ "version": "3.428.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-amp/CHANGELOG.md b/clients/client-amp/CHANGELOG.md
index 9725eed8e73f9..f9bddb5a1c75a 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-amp
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 bf2b0d0253512..490a198d396e4 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.427.0",
+ "version": "3.428.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-amplify/CHANGELOG.md b/clients/client-amplify/CHANGELOG.md
index a572b01d59bf1..5353837fc0b72 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-amplify
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 7eb23b6c1672e..013f849f20ec4 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.427.0",
+ "version": "3.428.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-amplifybackend/CHANGELOG.md b/clients/client-amplifybackend/CHANGELOG.md
index 8d46509aa7d13..85672e2763e18 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-amplifybackend
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 ff34ee5004d7d..c21888b0c3aaa 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.427.0",
+ "version": "3.428.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-amplifyuibuilder/CHANGELOG.md b/clients/client-amplifyuibuilder/CHANGELOG.md
index f65d0ed187a7f..f4621efd958a6 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-amplifyuibuilder
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 29db62ed879db..e3d5e17694cf1 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.427.0",
+ "version": "3.428.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-api-gateway/CHANGELOG.md b/clients/client-api-gateway/CHANGELOG.md
index 3422f4ca30606..d709a390005b8 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-api-gateway
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 43fe5c5fbf39c..942fac4cce8e4 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.427.0",
+ "version": "3.428.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-apigatewaymanagementapi/CHANGELOG.md b/clients/client-apigatewaymanagementapi/CHANGELOG.md
index 3d352a39cfd30..e141605e12094 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-apigatewaymanagementapi
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 f2870097308b6..6647d5e88c282 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.427.0",
+ "version": "3.428.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-apigatewayv2/CHANGELOG.md b/clients/client-apigatewayv2/CHANGELOG.md
index b0598b823cbe7..2684c1253a9c6 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-apigatewayv2
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 243ad9541e941..56ee44aa274ab 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.427.0",
+ "version": "3.428.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-app-mesh/CHANGELOG.md b/clients/client-app-mesh/CHANGELOG.md
index 664c473131a4e..02b87490bbec9 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-app-mesh
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 4175b42aa4d02..a9a8043ffdf2d 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.427.0",
+ "version": "3.428.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-appconfig/CHANGELOG.md b/clients/client-appconfig/CHANGELOG.md
index 3b18d7adaa5f9..e6dc9d6770817 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-appconfig
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 6ba37a800800d..045ad7d8e63ba 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.427.0",
+ "version": "3.428.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-appconfigdata/CHANGELOG.md b/clients/client-appconfigdata/CHANGELOG.md
index 1a6a74e5b253f..faa466c7ff128 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-appconfigdata
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 969cd53e9c671..d1589a6e47fe4 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.427.0",
+ "version": "3.428.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-appfabric/CHANGELOG.md b/clients/client-appfabric/CHANGELOG.md
index 8c10553b771ae..1498bbe531f19 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-appfabric
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 1a60c4810b1ef..1797dd68208eb 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.427.0",
+ "version": "3.428.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-appflow/CHANGELOG.md b/clients/client-appflow/CHANGELOG.md
index 1191d1077a05e..b70ffb6994ece 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-appflow
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 5dc8281c3144b..64c18e880d069 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.427.0",
+ "version": "3.428.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-appintegrations/CHANGELOG.md b/clients/client-appintegrations/CHANGELOG.md
index 75525b548051f..0371880f62610 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-appintegrations
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 2cc516b5a5007..73b58fd7558fd 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.427.0",
+ "version": "3.428.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-application-auto-scaling/CHANGELOG.md b/clients/client-application-auto-scaling/CHANGELOG.md
index 1f596855fbf80..138c767773313 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-application-auto-scaling
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 a38ba8e3c2ddd..31578ee6901da 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.427.0",
+ "version": "3.428.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-application-discovery-service/CHANGELOG.md b/clients/client-application-discovery-service/CHANGELOG.md
index 3467317842557..78e20e35b1146 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-application-discovery-service
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 dbab0b00b27fb..df6451317b05c 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.427.0",
+ "version": "3.428.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-application-insights/CHANGELOG.md b/clients/client-application-insights/CHANGELOG.md
index 8b5635c049781..d23aa07f60f8c 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-application-insights
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 bc6061990be4f..31fd6f9986288 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.427.0",
+ "version": "3.428.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 97f484c775ac5..37b2470af0238 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-applicationcostprofiler
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 d4c4119cf37f9..2c77d5effcc4b 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.427.0",
+ "version": "3.428.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-apprunner/CHANGELOG.md b/clients/client-apprunner/CHANGELOG.md
index 21ad77fcc82c5..a1f17850b8442 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-apprunner
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 d166c2791b07e..aebd72c7e19e9 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.427.0",
+ "version": "3.428.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-appstream/CHANGELOG.md b/clients/client-appstream/CHANGELOG.md
index 277d50d8f4163..c9869d4955da6 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-appstream
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 1d74f14736f97..a8906b6e947c8 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.427.0",
+ "version": "3.428.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-appsync/CHANGELOG.md b/clients/client-appsync/CHANGELOG.md
index 6be7f114ff3d8..832ba43a3cbcb 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-appsync
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 8764031c59bc1..52c621864fa51 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.427.0",
+ "version": "3.428.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 d9bd3e8bf68ac..c943fe0dd6bd0 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-arc-zonal-shift
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 b2cd47a8ea8db..174f5481037c2 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.427.0",
+ "version": "3.428.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 46f6dc2782abd..68df1df4c2de3 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-athena
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 36d426bf8ebb9..4d42a846494e0 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.427.0",
+ "version": "3.428.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-auditmanager/CHANGELOG.md b/clients/client-auditmanager/CHANGELOG.md
index c3619c8095a16..4b6f338070306 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-auditmanager
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 cfb1c91b3d372..3776e0a594368 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.427.0",
+ "version": "3.428.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-auto-scaling-plans/CHANGELOG.md b/clients/client-auto-scaling-plans/CHANGELOG.md
index cf5b710519fdc..842bae710345e 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-auto-scaling-plans
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 0e06703ab3c41..3b49868c09170 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.427.0",
+ "version": "3.428.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-auto-scaling/CHANGELOG.md b/clients/client-auto-scaling/CHANGELOG.md
index 5cf12b6a283fa..03539d4030e26 100644
--- a/clients/client-auto-scaling/CHANGELOG.md
+++ b/clients/client-auto-scaling/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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+
+### Features
+
+* **client-auto-scaling:** Update the NotificationMetadata field to only allow visible ascii characters. Add paginators to DescribeInstanceRefreshes, DescribeLoadBalancers, and DescribeLoadBalancerTargetGroups ([6727085](https://github.com/aws/aws-sdk-js-v3/commit/672708506bf6b4748142ed5126c1b788e8f47758))
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 8c5453e6e6410..b9336d9749e73 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.427.0",
+ "version": "3.428.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-backup-gateway/CHANGELOG.md b/clients/client-backup-gateway/CHANGELOG.md
index 2277789525ed3..3ee9194fcff52 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-backup-gateway
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 057ff52d685ad..ad4f8f506a56f 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.427.0",
+ "version": "3.428.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-backup/CHANGELOG.md b/clients/client-backup/CHANGELOG.md
index 47582398fd37b..e9e326a18c22a 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-backup
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 b3132f788c99d..c177e64a2131f 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.427.0",
+ "version": "3.428.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-backupstorage/CHANGELOG.md b/clients/client-backupstorage/CHANGELOG.md
index f09c0ba4cfd3c..8ccf98402fc18 100644
--- a/clients/client-backupstorage/CHANGELOG.md
+++ b/clients/client-backupstorage/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-backupstorage
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**Note:** Version bump only for package @aws-sdk/client-backupstorage
diff --git a/clients/client-backupstorage/package.json b/clients/client-backupstorage/package.json
index 1aa45b66a7105..34410d4aab191 100644
--- a/clients/client-backupstorage/package.json
+++ b/clients/client-backupstorage/package.json
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/client-backupstorage",
"description": "AWS SDK for JavaScript Backupstorage Client for Node.js, Browser and React Native",
- "version": "3.427.0",
+ "version": "3.428.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-batch/CHANGELOG.md b/clients/client-batch/CHANGELOG.md
index 42bda4cef9fe0..a94f1e41d81f8 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-batch
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 5a672b939f4ae..bf5070a9b3a3d 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.427.0",
+ "version": "3.428.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-bedrock-runtime/CHANGELOG.md b/clients/client-bedrock-runtime/CHANGELOG.md
index dae893e5de818..3632230fc2a87 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-bedrock-runtime
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 bde8ca3cf803d..d23cbe69f2671 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.427.0",
+ "version": "3.428.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-bedrock/CHANGELOG.md b/clients/client-bedrock/CHANGELOG.md
index 26c4c421e884f..87e637e9780f1 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-bedrock
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 fe988963ffd43..827feea1d00bd 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.427.0",
+ "version": "3.428.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-billingconductor/CHANGELOG.md b/clients/client-billingconductor/CHANGELOG.md
index 559b885418e18..0973f31d4b3ba 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-billingconductor
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 98338f57f41ee..69c86ef48b261 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.427.0",
+ "version": "3.428.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-braket/CHANGELOG.md b/clients/client-braket/CHANGELOG.md
index 32d987ddfe5a3..2f89429b2b3d2 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-braket
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 d0c8e9676476b..bac1d64d92c14 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.427.0",
+ "version": "3.428.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-budgets/CHANGELOG.md b/clients/client-budgets/CHANGELOG.md
index 5c3ce318d78db..728b231ec9a5d 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-budgets
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 ff40e581f7a28..0cfe9e892b779 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.427.0",
+ "version": "3.428.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 6170e1fe3f7fa..0008abb65b218 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-chime-sdk-identity
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 381b075b6fa3c..ddc596472a16f 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.427.0",
+ "version": "3.428.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-media-pipelines/CHANGELOG.md b/clients/client-chime-sdk-media-pipelines/CHANGELOG.md
index dad2f18300653..4674db5978451 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-chime-sdk-media-pipelines
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 2cde99452f104..b156e4d058187 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.427.0",
+ "version": "3.428.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-meetings/CHANGELOG.md b/clients/client-chime-sdk-meetings/CHANGELOG.md
index ce99e8ce007f4..b8e60f7734036 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-chime-sdk-meetings
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 e2df07cf9bab9..b7d5f359e4270 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.427.0",
+ "version": "3.428.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-messaging/CHANGELOG.md b/clients/client-chime-sdk-messaging/CHANGELOG.md
index 7a678dbed3e6d..186a882504b74 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-chime-sdk-messaging
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 20f78fa498960..3c06288af4c54 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.427.0",
+ "version": "3.428.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-voice/CHANGELOG.md b/clients/client-chime-sdk-voice/CHANGELOG.md
index b168e328feddb..49f9cae8da877 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-chime-sdk-voice
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 b6d2acfac9984..3ded8fd440242 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.427.0",
+ "version": "3.428.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/CHANGELOG.md b/clients/client-chime/CHANGELOG.md
index dc424661e1834..444befaa9a0e8 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-chime
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 3984235fd8b4e..46a86d6a01fd1 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.427.0",
+ "version": "3.428.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-cleanrooms/CHANGELOG.md b/clients/client-cleanrooms/CHANGELOG.md
index 8660af8357e6b..3ff3ed2ff4a04 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-cleanrooms
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 8061ce5e1a0ef..8ed70ddfcdc09 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.427.0",
+ "version": "3.428.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-cloud9/CHANGELOG.md b/clients/client-cloud9/CHANGELOG.md
index 02231af77d821..da9f3b8102c02 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-cloud9
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 3a39a61f0cc85..5cdebcbd7e024 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.427.0",
+ "version": "3.428.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-cloudcontrol/CHANGELOG.md b/clients/client-cloudcontrol/CHANGELOG.md
index 2c04dad30906c..c56e91fea60c2 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-cloudcontrol
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 f121d61cb9d3e..ffe5b1de45911 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.427.0",
+ "version": "3.428.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-clouddirectory/CHANGELOG.md b/clients/client-clouddirectory/CHANGELOG.md
index 9a671be744cbf..463fc444a377d 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-clouddirectory
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 d12ce74cd0315..54c77d50f11da 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.427.0",
+ "version": "3.428.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-cloudformation/CHANGELOG.md b/clients/client-cloudformation/CHANGELOG.md
index a671916ddf685..06a77dbb25f2b 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-cloudformation
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 0863f91597582..6f1a41c521f0b 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.427.0",
+ "version": "3.428.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-cloudfront/CHANGELOG.md b/clients/client-cloudfront/CHANGELOG.md
index 51824b525e3f0..60cf5628329aa 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-cloudfront
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 c17bee16f02d7..b2bd399655c05 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.427.0",
+ "version": "3.428.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-cloudhsm-v2/CHANGELOG.md b/clients/client-cloudhsm-v2/CHANGELOG.md
index c05fdba66ac5c..25511348af0f6 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-cloudhsm-v2
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 93fad385fc018..4a2eae0d014ac 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.427.0",
+ "version": "3.428.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-cloudhsm/CHANGELOG.md b/clients/client-cloudhsm/CHANGELOG.md
index 03d5e0e8fd2a3..457f77bbf2750 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-cloudhsm
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 1180812383552..9a3cf825d629c 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.427.0",
+ "version": "3.428.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-cloudsearch-domain/CHANGELOG.md b/clients/client-cloudsearch-domain/CHANGELOG.md
index 156afe5be6c0a..aca461b2599a0 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-cloudsearch-domain
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 63c85fa97cac3..7f6f1d2f08d6c 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.427.0",
+ "version": "3.428.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-cloudsearch/CHANGELOG.md b/clients/client-cloudsearch/CHANGELOG.md
index bb4020c6bf410..d9b8edcbfc635 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-cloudsearch
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 6e3aff1ce10ca..246c586e82257 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.427.0",
+ "version": "3.428.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-cloudtrail-data/CHANGELOG.md b/clients/client-cloudtrail-data/CHANGELOG.md
index 48283548e6fa8..cf1f97f1e4f1b 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-cloudtrail-data
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 ad00764d68b44..913680602d38b 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.427.0",
+ "version": "3.428.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-cloudtrail/CHANGELOG.md b/clients/client-cloudtrail/CHANGELOG.md
index 02f2d4c2d9fa6..9259c011e153b 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-cloudtrail
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 9d0bcdca97d3f..feb351b3afd95 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.427.0",
+ "version": "3.428.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-cloudwatch-events/CHANGELOG.md b/clients/client-cloudwatch-events/CHANGELOG.md
index af8eff3aabf06..a2c2050106a38 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-cloudwatch-events
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 79f46e77ce1c2..e5c17e3bbf3aa 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.427.0",
+ "version": "3.428.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-cloudwatch-logs/CHANGELOG.md b/clients/client-cloudwatch-logs/CHANGELOG.md
index 95189df978c10..71d88b007f640 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-cloudwatch-logs
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 66cde5c27211c..ad5c45b922c98 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.427.0",
+ "version": "3.428.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-cloudwatch/CHANGELOG.md b/clients/client-cloudwatch/CHANGELOG.md
index 6d9b26f93cd6f..db523c994a62e 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-cloudwatch
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 ce62978bb0abb..86aaaa8f61d50 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.427.0",
+ "version": "3.428.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-codeartifact/CHANGELOG.md b/clients/client-codeartifact/CHANGELOG.md
index 7c92020bba094..589bca5e448ec 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-codeartifact
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 a308e97d878f7..22b9958928d2e 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.427.0",
+ "version": "3.428.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-codebuild/CHANGELOG.md b/clients/client-codebuild/CHANGELOG.md
index 5fc4384df4275..a68f39340e31c 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-codebuild
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**Note:** Version bump only for package @aws-sdk/client-codebuild
diff --git a/clients/client-codebuild/package.json b/clients/client-codebuild/package.json
index fa94ec3b8e766..1a16a9d34ea80 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.427.0",
+ "version": "3.428.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-codecatalyst/CHANGELOG.md b/clients/client-codecatalyst/CHANGELOG.md
index 68ea5031c3ca6..78e513c8927f2 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-codecatalyst
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 48c6ebf471532..55baa938806d9 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.427.0",
+ "version": "3.428.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-codecommit/CHANGELOG.md b/clients/client-codecommit/CHANGELOG.md
index 5c52399fedcfe..e3e7e9bf81964 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-codecommit
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 7b47c62c10c77..9ac8591cdb406 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.427.0",
+ "version": "3.428.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 8bb7c09914493..5be1198f66db0 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-codedeploy
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 673b901f0675e..7f053b9cf4815 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.427.0",
+ "version": "3.428.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-codeguru-reviewer/CHANGELOG.md b/clients/client-codeguru-reviewer/CHANGELOG.md
index b44fe892fbc1c..ec04103cdd610 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-codeguru-reviewer
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 2168198a0c63a..289657263704e 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.427.0",
+ "version": "3.428.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-codeguru-security/CHANGELOG.md b/clients/client-codeguru-security/CHANGELOG.md
index d443bc02e9f76..082a85cf41ed6 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-codeguru-security
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 c6eda186c4f7f..bceed55b96195 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.427.0",
+ "version": "3.428.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-codeguruprofiler/CHANGELOG.md b/clients/client-codeguruprofiler/CHANGELOG.md
index f7d21908b2ef1..78d0dbcdd775e 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-codeguruprofiler
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 a75321241d2cf..5faa10103f8b4 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.427.0",
+ "version": "3.428.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-codepipeline/CHANGELOG.md b/clients/client-codepipeline/CHANGELOG.md
index 54c6fa468bdc0..5118aa2c78461 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-codepipeline
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 af65d3f34477b..92ee0af45756b 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.427.0",
+ "version": "3.428.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-codestar-connections/CHANGELOG.md b/clients/client-codestar-connections/CHANGELOG.md
index 08eec5c517c7c..437bbfa2c388d 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-codestar-connections
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 c26af9f32cd65..6b4232abae4ec 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.427.0",
+ "version": "3.428.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-codestar-notifications/CHANGELOG.md b/clients/client-codestar-notifications/CHANGELOG.md
index e34ebdd6ed1e3..f9b20fe4ecec2 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-codestar-notifications
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 a31574e933dc6..8f1dcaa8ff90f 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.427.0",
+ "version": "3.428.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-codestar/CHANGELOG.md b/clients/client-codestar/CHANGELOG.md
index d476a836ae1f9..4e6076c6f9b30 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-codestar
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 a9c26d2e2a0f3..b573361a0118e 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.427.0",
+ "version": "3.428.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-cognito-identity-provider/CHANGELOG.md b/clients/client-cognito-identity-provider/CHANGELOG.md
index 4ecad479f7ef4..e84909175cbfc 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-cognito-identity-provider
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 aa5ca02c2f158..7898b725ad36c 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.427.0",
+ "version": "3.428.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-cognito-identity/CHANGELOG.md b/clients/client-cognito-identity/CHANGELOG.md
index 0a2c38c93c4b7..ff17404cbafef 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-cognito-identity
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 44006e05faa5e..ab771aebb6b27 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.427.0",
+ "version": "3.428.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-cognito-sync/CHANGELOG.md b/clients/client-cognito-sync/CHANGELOG.md
index cbc4373080020..4881078d3d3e6 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-cognito-sync
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 caba2fb2482ab..190da75df55bf 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.427.0",
+ "version": "3.428.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-comprehend/CHANGELOG.md b/clients/client-comprehend/CHANGELOG.md
index 05c96a5d202db..9ef65353de3d1 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-comprehend
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 4415d2aad9f43..6efbc3b16ea21 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.427.0",
+ "version": "3.428.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-comprehendmedical/CHANGELOG.md b/clients/client-comprehendmedical/CHANGELOG.md
index 28494fa768335..dd0e6d0a465e2 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-comprehendmedical
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 e375c860188e8..6c60ef4d73386 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.427.0",
+ "version": "3.428.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-compute-optimizer/CHANGELOG.md b/clients/client-compute-optimizer/CHANGELOG.md
index c3cb5e7258afc..562bb3d2581fc 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-compute-optimizer
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 4ed5eddf243d0..558930919fcc1 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.427.0",
+ "version": "3.428.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-config-service/CHANGELOG.md b/clients/client-config-service/CHANGELOG.md
index a7e536db533c7..eaf11d5c22b2d 100644
--- a/clients/client-config-service/CHANGELOG.md
+++ b/clients/client-config-service/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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+
+### Features
+
+* **client-config-service:** Add enums for resource types supported by Config ([1cdcf43](https://github.com/aws/aws-sdk-js-v3/commit/1cdcf4309aabf6093fdf340538882f60cb9447bc))
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 dee7d716140b6..e585493c0c893 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.427.0",
+ "version": "3.428.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-connect-contact-lens/CHANGELOG.md b/clients/client-connect-contact-lens/CHANGELOG.md
index c85a5142a4c47..bc6df4d3ac3a9 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-connect-contact-lens
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 02dc062bd3704..e41cf3134cda6 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.427.0",
+ "version": "3.428.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-connect/CHANGELOG.md b/clients/client-connect/CHANGELOG.md
index 998bb4b434494..d486b10a754dc 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-connect
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 7a34d2d3ab807..36b51c65d7a72 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.427.0",
+ "version": "3.428.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-connectcampaigns/CHANGELOG.md b/clients/client-connectcampaigns/CHANGELOG.md
index 8cf9e946b7675..d398725e98926 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-connectcampaigns
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 f671775163cc4..825755c7cfabe 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.427.0",
+ "version": "3.428.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-connectcases/CHANGELOG.md b/clients/client-connectcases/CHANGELOG.md
index e81dafab4676b..2bbfb1a0175f1 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-connectcases
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 0d92f6cf5c99b..f74828afe6fc5 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.427.0",
+ "version": "3.428.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-connectparticipant/CHANGELOG.md b/clients/client-connectparticipant/CHANGELOG.md
index bc99cbdf71da3..09a0be02f44eb 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-connectparticipant
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 19663f57fcb6f..b6a05987ad0e4 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.427.0",
+ "version": "3.428.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 a990e5ae98b8d..2d4c7af38672a 100644
--- a/clients/client-controltower/CHANGELOG.md
+++ b/clients/client-controltower/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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+
+### Features
+
+* **client-controltower:** Added new EnabledControl resource details to ListEnabledControls API and added new GetEnabledControl API. ([784c6fb](https://github.com/aws/aws-sdk-js-v3/commit/784c6fb6561f80222b9d39f159b6f44ae4be5a2a))
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 dfca13ec6a637..2dd78e70980a2 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.427.0",
+ "version": "3.428.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-cost-and-usage-report-service/CHANGELOG.md b/clients/client-cost-and-usage-report-service/CHANGELOG.md
index 0390158b7be81..c736f13ca3575 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-cost-and-usage-report-service
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 57f7658d08104..7a1889d609a15 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.427.0",
+ "version": "3.428.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-cost-explorer/CHANGELOG.md b/clients/client-cost-explorer/CHANGELOG.md
index c7ec475834d80..985a8631cdc5d 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-cost-explorer
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 5f8554048f03b..03902475bb676 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.427.0",
+ "version": "3.428.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-customer-profiles/CHANGELOG.md b/clients/client-customer-profiles/CHANGELOG.md
index bd89ea447c28f..76c1541fc8819 100644
--- a/clients/client-customer-profiles/CHANGELOG.md
+++ b/clients/client-customer-profiles/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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+
+### Features
+
+* **client-customer-profiles:** Adds sensitive trait to various shapes in Customer Profiles Calculated Attribute API model. ([73c9229](https://github.com/aws/aws-sdk-js-v3/commit/73c9229645cd57746c812bc85b4d230bd6f70ffb))
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 049b34f4e8c01..30ed2d1b42c70 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.427.0",
+ "version": "3.428.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-data-pipeline/CHANGELOG.md b/clients/client-data-pipeline/CHANGELOG.md
index 96cc2e019adde..a6ba452a46cb1 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-data-pipeline
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 1f999e859fb7c..28e185bd00ddf 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.427.0",
+ "version": "3.428.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-database-migration-service/CHANGELOG.md b/clients/client-database-migration-service/CHANGELOG.md
index ad1bdddfbefb9..33766b77c030c 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-database-migration-service
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 5fb298ee114c9..fb96a62d4102f 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.427.0",
+ "version": "3.428.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-databrew/CHANGELOG.md b/clients/client-databrew/CHANGELOG.md
index a9312df420969..5b08594c07e59 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-databrew
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 c1c608ca66da2..7923b5083feb8 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.427.0",
+ "version": "3.428.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-dataexchange/CHANGELOG.md b/clients/client-dataexchange/CHANGELOG.md
index ffea6c50522db..43cb17ad6c314 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-dataexchange
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 80b1901b5aab5..70d05d729e77c 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.427.0",
+ "version": "3.428.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-datasync/CHANGELOG.md b/clients/client-datasync/CHANGELOG.md
index ec1e3df952cb6..51edb5f8acd9d 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-datasync
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 8722c573ce3db..a288a2b0df86a 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.427.0",
+ "version": "3.428.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-datazone/CHANGELOG.md b/clients/client-datazone/CHANGELOG.md
index e05ee47125cbc..1298f7d3c759b 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-datazone
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 2ec0ac7f18c4c..4abefb6105d31 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.427.0",
+ "version": "3.428.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-dax/CHANGELOG.md b/clients/client-dax/CHANGELOG.md
index 523824d917a67..cce53fef0858b 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-dax
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 d022be7bff9ee..549408466189d 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.427.0",
+ "version": "3.428.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 2bbc086109402..6da0cbdb3144e 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-detective
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 45e14e8c6f20c..cb5c9e3be190b 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.427.0",
+ "version": "3.428.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-device-farm/CHANGELOG.md b/clients/client-device-farm/CHANGELOG.md
index cf0a8711c9acd..c8676c59e02f6 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-device-farm
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 bf2f96be02233..a8412d402d1a3 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.427.0",
+ "version": "3.428.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-devops-guru/CHANGELOG.md b/clients/client-devops-guru/CHANGELOG.md
index cd568d3c844c8..a0206ea59cff0 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-devops-guru
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 589c4ae4431d1..c829268d93c7a 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.427.0",
+ "version": "3.428.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-direct-connect/CHANGELOG.md b/clients/client-direct-connect/CHANGELOG.md
index 1b0be252a78d7..fa0306e5e86bf 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-direct-connect
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 2809a67040ac0..55ddf98a274d9 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.427.0",
+ "version": "3.428.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-directory-service/CHANGELOG.md b/clients/client-directory-service/CHANGELOG.md
index c92276fa3baf9..d2ebc461c553f 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-directory-service
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 7130c5d2ce2a5..0a6f073ae983e 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.427.0",
+ "version": "3.428.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-dlm/CHANGELOG.md b/clients/client-dlm/CHANGELOG.md
index 25f9b67a08913..2d6ae878fee8c 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-dlm
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 7348db30b16d9..95de6ba9ae716 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.427.0",
+ "version": "3.428.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-docdb-elastic/CHANGELOG.md b/clients/client-docdb-elastic/CHANGELOG.md
index 9ec28cb176e6b..82073ab80fadd 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-docdb-elastic
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 e8624669c421e..63b234a9c772a 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.427.0",
+ "version": "3.428.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-docdb/CHANGELOG.md b/clients/client-docdb/CHANGELOG.md
index 17ad570839366..c1bdf61a573e8 100644
--- a/clients/client-docdb/CHANGELOG.md
+++ b/clients/client-docdb/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-docdb
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 2d7871bc11da1..b314b1d7309a5 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.427.0",
+ "version": "3.428.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-drs/CHANGELOG.md b/clients/client-drs/CHANGELOG.md
index 6798ab8553c94..62f9471536f87 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-drs
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 40f95644c88e4..d149f7f350600 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.427.0",
+ "version": "3.428.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-dynamodb-streams/CHANGELOG.md b/clients/client-dynamodb-streams/CHANGELOG.md
index 781a4fc112420..a423a408416a9 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-dynamodb-streams
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 8f1de958f65e9..a227533bee393 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.427.0",
+ "version": "3.428.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-dynamodb/CHANGELOG.md b/clients/client-dynamodb/CHANGELOG.md
index 4189ab91c9f04..aaa833e7e7a64 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-dynamodb
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 c4e96f57d837d..3e1f004abbf14 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.427.0",
+ "version": "3.428.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-ebs/CHANGELOG.md b/clients/client-ebs/CHANGELOG.md
index 3083c792727ce..aaa09f6696bae 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-ebs
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 8b13da5010013..39d268e225809 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.427.0",
+ "version": "3.428.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-ec2-instance-connect/CHANGELOG.md b/clients/client-ec2-instance-connect/CHANGELOG.md
index 3dfd98cf6dbde..73f1be985de6f 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-ec2-instance-connect
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 f9e6f317d27e2..70a72bbec1e25 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.427.0",
+ "version": "3.428.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-ec2/CHANGELOG.md b/clients/client-ec2/CHANGELOG.md
index b61a55c76f679..784a22ad01499 100644
--- a/clients/client-ec2/CHANGELOG.md
+++ b/clients/client-ec2/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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+
+### Features
+
+* **client-ec2:** This release adds Ubuntu Pro as a supported platform for On-Demand Capacity Reservations and adds support for setting an Amazon Machine Image (AMI) to disabled state. Disabling the AMI makes it private if it was previously shared, and prevents new EC2 instance launches from it. ([9c57ae3](https://github.com/aws/aws-sdk-js-v3/commit/9c57ae3280837f11350664050bb11d0ba768f149))
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
diff --git a/clients/client-ec2/package.json b/clients/client-ec2/package.json
index 202d7f077ad2b..2f73fab343453 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.427.0",
+ "version": "3.428.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-ecr-public/CHANGELOG.md b/clients/client-ecr-public/CHANGELOG.md
index c0e8f88031b74..eb896621b2f1a 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-ecr-public
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 7a91bb17b6603..7b6d26e387902 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.427.0",
+ "version": "3.428.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-ecr/CHANGELOG.md b/clients/client-ecr/CHANGELOG.md
index a36aa0abb890f..d528d76cce214 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-ecr
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 5656c8adddb70..d66a7a170de4a 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.427.0",
+ "version": "3.428.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-ecs/CHANGELOG.md b/clients/client-ecs/CHANGELOG.md
index 811a0e950e78e..8fbc45f39d3f6 100644
--- a/clients/client-ecs/CHANGELOG.md
+++ b/clients/client-ecs/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-ecs
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 2a5967dca5744..5c1d66a38a6b6 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.427.0",
+ "version": "3.428.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-efs/CHANGELOG.md b/clients/client-efs/CHANGELOG.md
index a75a385957ccf..cb7aaeaf7f183 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-efs
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 77c4f389b02e6..89d688e4cbd7b 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.427.0",
+ "version": "3.428.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-eks/CHANGELOG.md b/clients/client-eks/CHANGELOG.md
index 02a0b689d7512..663bdb7ce653d 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-eks
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 699a2a4c101c2..a2d1c76eb3ec1 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.427.0",
+ "version": "3.428.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-elastic-beanstalk/CHANGELOG.md b/clients/client-elastic-beanstalk/CHANGELOG.md
index 64bb9077ec2c7..18ff58427592d 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-elastic-beanstalk
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 a7b06847ded2a..9d673585db5cd 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.427.0",
+ "version": "3.428.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-elastic-inference/CHANGELOG.md b/clients/client-elastic-inference/CHANGELOG.md
index 7d6654ce6e83d..e738ad36b5689 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-elastic-inference
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 c3f0cb053103a..5da484ce30e9d 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.427.0",
+ "version": "3.428.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-elastic-load-balancing-v2/CHANGELOG.md b/clients/client-elastic-load-balancing-v2/CHANGELOG.md
index 877af5bec23a1..b023a141f3eca 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-elastic-load-balancing-v2
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 f4b3b2a24cde6..a405b1c1e85c9 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.427.0",
+ "version": "3.428.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-elastic-load-balancing/CHANGELOG.md b/clients/client-elastic-load-balancing/CHANGELOG.md
index 3da63b2c8d9ed..ab3d6c12b6345 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-elastic-load-balancing
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 ab1812fc90fec..9cb9467b1bb35 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.427.0",
+ "version": "3.428.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-elastic-transcoder/CHANGELOG.md b/clients/client-elastic-transcoder/CHANGELOG.md
index d19551dfa6411..5d4b143bf71aa 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-elastic-transcoder
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 a73402232bc38..d1d15f5c299e2 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.427.0",
+ "version": "3.428.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-elasticache/CHANGELOG.md b/clients/client-elasticache/CHANGELOG.md
index 1996c774cacab..76d67849677c6 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-elasticache
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 7fd72e7e886f2..f7ccecf3b1c4a 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.427.0",
+ "version": "3.428.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-elasticsearch-service/CHANGELOG.md b/clients/client-elasticsearch-service/CHANGELOG.md
index e129aaa419d95..c830bccc684c9 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-elasticsearch-service
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 d178dbd01e52d..1d97353f8b7dc 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.427.0",
+ "version": "3.428.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-emr-containers/CHANGELOG.md b/clients/client-emr-containers/CHANGELOG.md
index f5bc49000cc11..2762cd1c19048 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-emr-containers
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 00f0b06206d2b..ae163df943b20 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.427.0",
+ "version": "3.428.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-emr-serverless/CHANGELOG.md b/clients/client-emr-serverless/CHANGELOG.md
index 853e0d980858c..b1af181997f76 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-emr-serverless
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 8b738044f020f..789453367db77 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.427.0",
+ "version": "3.428.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-emr/CHANGELOG.md b/clients/client-emr/CHANGELOG.md
index fede2d7b51682..844b76e359af5 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-emr
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 81fb802daef9d..7fc6b5919c5fe 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.427.0",
+ "version": "3.428.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-entityresolution/CHANGELOG.md b/clients/client-entityresolution/CHANGELOG.md
index 7015dd5c6f460..6addcfd87a0d7 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-entityresolution
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 5522cd65c45b2..5f64974ee3b5e 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.427.0",
+ "version": "3.428.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-eventbridge/CHANGELOG.md b/clients/client-eventbridge/CHANGELOG.md
index 86a41088b7ffa..33dc0aa39d490 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-eventbridge
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 c69f72fc6add9..35bfa944bb3df 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.427.0",
+ "version": "3.428.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-evidently/CHANGELOG.md b/clients/client-evidently/CHANGELOG.md
index ddfa22d16767b..02b59dca8df45 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-evidently
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 e7a921dc93952..9bfab8de3af6a 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.427.0",
+ "version": "3.428.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-finspace-data/CHANGELOG.md b/clients/client-finspace-data/CHANGELOG.md
index c871bd49d1c97..d5d0154703233 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-finspace-data
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 cce9dac6dd338..5cee0e1d17f37 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.427.0",
+ "version": "3.428.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-finspace/CHANGELOG.md b/clients/client-finspace/CHANGELOG.md
index e2b3e4804ecd6..f8f626ba6f91f 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-finspace
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 a8cb9ba3551cd..9fb434d97f543 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.427.0",
+ "version": "3.428.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-firehose/CHANGELOG.md b/clients/client-firehose/CHANGELOG.md
index b40a4ef1173e5..a8944b9295543 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-firehose
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 ff5a138c7dbcf..738edc92773e6 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.427.0",
+ "version": "3.428.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-fis/CHANGELOG.md b/clients/client-fis/CHANGELOG.md
index 7ab9c2589bbe5..0c14d9bffe0fa 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-fis
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 e30483b384fc7..411dd52d95ba2 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.427.0",
+ "version": "3.428.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-fms/CHANGELOG.md b/clients/client-fms/CHANGELOG.md
index fcdd9f447dc1f..5920f4b6eca01 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-fms
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 cfeb5a84e5bf2..bebd8deb20838 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.427.0",
+ "version": "3.428.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-forecast/CHANGELOG.md b/clients/client-forecast/CHANGELOG.md
index 0e784bda598e2..22b1c199b94f4 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-forecast
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 a9e3b0da6ed72..7f47316c918e4 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.427.0",
+ "version": "3.428.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-forecastquery/CHANGELOG.md b/clients/client-forecastquery/CHANGELOG.md
index 87b6ac9c8496c..7f0b190c436c5 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-forecastquery
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 f928bedb22ca2..2bc2133704033 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.427.0",
+ "version": "3.428.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-frauddetector/CHANGELOG.md b/clients/client-frauddetector/CHANGELOG.md
index 7a0980d88a393..d5b460e17f589 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-frauddetector
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 5c6b360475db9..b5027c1f70690 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.427.0",
+ "version": "3.428.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-fsx/CHANGELOG.md b/clients/client-fsx/CHANGELOG.md
index 05c53fbf33781..e91602d0a1222 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-fsx
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
diff --git a/clients/client-fsx/package.json b/clients/client-fsx/package.json
index 599ba9ab338f7..389a825eba61f 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.427.0",
+ "version": "3.428.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-gamelift/CHANGELOG.md b/clients/client-gamelift/CHANGELOG.md
index 480c9431d0ca7..1d111426749a6 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-gamelift
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 a7a2fe6e0ff04..703d00d46d9e7 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.427.0",
+ "version": "3.428.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-gamesparks/CHANGELOG.md b/clients/client-gamesparks/CHANGELOG.md
index e78a50655096e..d05877ac7d374 100644
--- a/clients/client-gamesparks/CHANGELOG.md
+++ b/clients/client-gamesparks/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-gamesparks
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**Note:** Version bump only for package @aws-sdk/client-gamesparks
diff --git a/clients/client-gamesparks/package.json b/clients/client-gamesparks/package.json
index e54e9185f26e4..1c2bcbdccbd39 100644
--- a/clients/client-gamesparks/package.json
+++ b/clients/client-gamesparks/package.json
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/client-gamesparks",
"description": "AWS SDK for JavaScript Gamesparks Client for Node.js, Browser and React Native",
- "version": "3.427.0",
+ "version": "3.428.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-glacier/CHANGELOG.md b/clients/client-glacier/CHANGELOG.md
index d514da6262138..2185869068de2 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-glacier
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 d50f69196a18e..27bad15629f9e 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.427.0",
+ "version": "3.428.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-global-accelerator/CHANGELOG.md b/clients/client-global-accelerator/CHANGELOG.md
index 0f1fbea437075..946667b0948ee 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-global-accelerator
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 7da461af6edde..d3c2128bbf07f 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.427.0",
+ "version": "3.428.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-glue/CHANGELOG.md b/clients/client-glue/CHANGELOG.md
index 2707fd07e8ef8..099b9dcc1318f 100644
--- a/clients/client-glue/CHANGELOG.md
+++ b/clients/client-glue/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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+
+### Features
+
+* **client-glue:** Extending version control support to GitLab and Bitbucket from AWSGlue ([b683df3](https://github.com/aws/aws-sdk-js-v3/commit/b683df3c866f42d759c18b10be7007bf8e24f608))
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 0b408ab3d7289..9021b32f80067 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.427.0",
+ "version": "3.428.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-grafana/CHANGELOG.md b/clients/client-grafana/CHANGELOG.md
index 8e69f12835833..93dde71e1711c 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-grafana
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 0dfd9b3a47737..0cbad2fa57b8d 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.427.0",
+ "version": "3.428.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-greengrass/CHANGELOG.md b/clients/client-greengrass/CHANGELOG.md
index d23c2869fe040..e24c124ad6cb9 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-greengrass
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 6a5515aba639b..ce26925753d4e 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.427.0",
+ "version": "3.428.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-greengrassv2/CHANGELOG.md b/clients/client-greengrassv2/CHANGELOG.md
index e8208a8bf2697..6b501fba8c9a0 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-greengrassv2
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 ac29444cd614d..92310d80e846d 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.427.0",
+ "version": "3.428.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-groundstation/CHANGELOG.md b/clients/client-groundstation/CHANGELOG.md
index 450377536c5a3..1d9e31f622993 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-groundstation
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 005f3a0949b2e..b9834e487229e 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.427.0",
+ "version": "3.428.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-guardduty/CHANGELOG.md b/clients/client-guardduty/CHANGELOG.md
index 3150c10989fbd..b67a530720aab 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-guardduty
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 ea4e0e56fd88f..f3b97a7d1bcc6 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.427.0",
+ "version": "3.428.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-health/CHANGELOG.md b/clients/client-health/CHANGELOG.md
index 14a97fb27cd2f..0b96431f04978 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-health
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 d6e20c0124701..0f410dd88db07 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.427.0",
+ "version": "3.428.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-healthlake/CHANGELOG.md b/clients/client-healthlake/CHANGELOG.md
index 1b0abcd6a0ba5..756524a6cbc31 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-healthlake
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 0326ed6696efd..7e22fce0b1ebc 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.427.0",
+ "version": "3.428.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-honeycode/CHANGELOG.md b/clients/client-honeycode/CHANGELOG.md
index a0eb4e2503f04..8bd934c0ae18b 100644
--- a/clients/client-honeycode/CHANGELOG.md
+++ b/clients/client-honeycode/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-honeycode
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**Note:** Version bump only for package @aws-sdk/client-honeycode
diff --git a/clients/client-honeycode/package.json b/clients/client-honeycode/package.json
index 861ca95eb5161..cd6f188a1ec8f 100644
--- a/clients/client-honeycode/package.json
+++ b/clients/client-honeycode/package.json
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/client-honeycode",
"description": "AWS SDK for JavaScript Honeycode Client for Node.js, Browser and React Native",
- "version": "3.427.0",
+ "version": "3.428.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-iam/CHANGELOG.md b/clients/client-iam/CHANGELOG.md
index 91305f7a18d01..5441ab8166391 100644
--- a/clients/client-iam/CHANGELOG.md
+++ b/clients/client-iam/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-iam
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 e83ca86714873..46584e158e7d9 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.427.0",
+ "version": "3.428.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-identitystore/CHANGELOG.md b/clients/client-identitystore/CHANGELOG.md
index 26da78bcd5bdf..61337b5d57269 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-identitystore
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 e5145a75f5779..ca7bd75cd3639 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.427.0",
+ "version": "3.428.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-imagebuilder/CHANGELOG.md b/clients/client-imagebuilder/CHANGELOG.md
index 94dbeb56fa044..6ec24781ba7fb 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-imagebuilder
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 c30eebe2c0b37..a635250bd1511 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.427.0",
+ "version": "3.428.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-inspector/CHANGELOG.md b/clients/client-inspector/CHANGELOG.md
index 7aa14a84dd7c8..73dcdce88ae27 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-inspector
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 de118fd381bde..182a80d78981d 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.427.0",
+ "version": "3.428.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-inspector2/CHANGELOG.md b/clients/client-inspector2/CHANGELOG.md
index 037f2a7cb102f..27cc4fe6059ac 100644
--- a/clients/client-inspector2/CHANGELOG.md
+++ b/clients/client-inspector2/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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+
+### Features
+
+* **client-inspector2:** Add MacOs ec2 platform support ([2964c2f](https://github.com/aws/aws-sdk-js-v3/commit/2964c2f75c0e59c6bfd700bde7fe1bbecaef60c5))
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 7ee55b54a3cc0..7ee09ff02b611 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.427.0",
+ "version": "3.428.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-internetmonitor/CHANGELOG.md b/clients/client-internetmonitor/CHANGELOG.md
index 6b34f7dd7a5f7..31850d9eb7500 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-internetmonitor
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 e21a986cb5cd6..c278f64ddb195 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.427.0",
+ "version": "3.428.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-iot-1click-devices-service/CHANGELOG.md b/clients/client-iot-1click-devices-service/CHANGELOG.md
index 942517b97f9ff..6009a2b42b47e 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-iot-1click-devices-service
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 7b1d15eaef398..8d1b852925169 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.427.0",
+ "version": "3.428.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-iot-1click-projects/CHANGELOG.md b/clients/client-iot-1click-projects/CHANGELOG.md
index 040fc5625397d..479749107b5af 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-iot-1click-projects
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 0ded19775f1e1..f8d2f1f5e541b 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.427.0",
+ "version": "3.428.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-iot-data-plane/CHANGELOG.md b/clients/client-iot-data-plane/CHANGELOG.md
index b1b17a3347017..aec1e9e182ed1 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-iot-data-plane
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 a1de8518ad4cf..1629a1bae85a3 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.427.0",
+ "version": "3.428.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-iot-events-data/CHANGELOG.md b/clients/client-iot-events-data/CHANGELOG.md
index db35d2934c1ea..1bfe190aeebe3 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-iot-events-data
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 9bab9ed7afa7c..cd4aa2b1da9ca 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.427.0",
+ "version": "3.428.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-iot-events/CHANGELOG.md b/clients/client-iot-events/CHANGELOG.md
index b154b4b9f80c8..e950e94034499 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-iot-events
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 d534bb30c3e92..eda2aa02d7432 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.427.0",
+ "version": "3.428.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-iot-jobs-data-plane/CHANGELOG.md b/clients/client-iot-jobs-data-plane/CHANGELOG.md
index bffe3e75da15c..b14a410ca9aaf 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-iot-jobs-data-plane
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 8c0033a68150d..e704f35d218a0 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.427.0",
+ "version": "3.428.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-iot-roborunner/CHANGELOG.md b/clients/client-iot-roborunner/CHANGELOG.md
index 2b4fc3123716c..8871ca117185e 100644
--- a/clients/client-iot-roborunner/CHANGELOG.md
+++ b/clients/client-iot-roborunner/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-iot-roborunner
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**Note:** Version bump only for package @aws-sdk/client-iot-roborunner
diff --git a/clients/client-iot-roborunner/package.json b/clients/client-iot-roborunner/package.json
index 1a22c04e9cd0b..dfd05d226b739 100644
--- a/clients/client-iot-roborunner/package.json
+++ b/clients/client-iot-roborunner/package.json
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/client-iot-roborunner",
"description": "AWS SDK for JavaScript Iot Roborunner Client for Node.js, Browser and React Native",
- "version": "3.427.0",
+ "version": "3.428.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-iot-wireless/CHANGELOG.md b/clients/client-iot-wireless/CHANGELOG.md
index 296d4d4e3100d..e7a74c2627989 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-iot-wireless
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 760764f250e09..6bf12c8c03f1b 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.427.0",
+ "version": "3.428.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-iot/CHANGELOG.md b/clients/client-iot/CHANGELOG.md
index 1959eac6da520..573915518ddfc 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-iot
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 9dafe3fafa045..595a669e31e94 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.427.0",
+ "version": "3.428.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-iotanalytics/CHANGELOG.md b/clients/client-iotanalytics/CHANGELOG.md
index 401a2af5a235f..b4a6062a3a8e9 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-iotanalytics
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 663e0a6a0c8ec..3530c57518d93 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.427.0",
+ "version": "3.428.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-iotdeviceadvisor/CHANGELOG.md b/clients/client-iotdeviceadvisor/CHANGELOG.md
index d0d3abf36a8e9..34c72e067cac7 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-iotdeviceadvisor
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 3b6667246b7c9..ebbaa406ea161 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.427.0",
+ "version": "3.428.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-iotfleethub/CHANGELOG.md b/clients/client-iotfleethub/CHANGELOG.md
index 696a95ef7dac9..40971a002844f 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-iotfleethub
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 65f5424a3a51d..6acc488433707 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.427.0",
+ "version": "3.428.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-iotfleetwise/CHANGELOG.md b/clients/client-iotfleetwise/CHANGELOG.md
index 2e1e48dbbce72..d8f4cdd742aa6 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-iotfleetwise
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 a3b7d7d3c5983..70b0e0b0d540c 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.427.0",
+ "version": "3.428.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-iotsecuretunneling/CHANGELOG.md b/clients/client-iotsecuretunneling/CHANGELOG.md
index de8a17498e58a..c05832a6d78da 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-iotsecuretunneling
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 ea98d65311e67..96d2d85b6d93d 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.427.0",
+ "version": "3.428.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-iotsitewise/CHANGELOG.md b/clients/client-iotsitewise/CHANGELOG.md
index a5d5ea2118439..a88f710f64c34 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-iotsitewise
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 4747838855b12..31c963596955f 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.427.0",
+ "version": "3.428.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-iotthingsgraph/CHANGELOG.md b/clients/client-iotthingsgraph/CHANGELOG.md
index 639c0b1e09faa..b78eddacf71d3 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-iotthingsgraph
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 a39714739f3cb..026faeb824f3a 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.427.0",
+ "version": "3.428.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-iottwinmaker/CHANGELOG.md b/clients/client-iottwinmaker/CHANGELOG.md
index ed0c0fb4d6074..6215e6b384047 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-iottwinmaker
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 d5288892eafc8..05c998657089c 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.427.0",
+ "version": "3.428.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-ivs-realtime/CHANGELOG.md b/clients/client-ivs-realtime/CHANGELOG.md
index 1e411ab941d84..ba65164d6b644 100644
--- a/clients/client-ivs-realtime/CHANGELOG.md
+++ b/clients/client-ivs-realtime/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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+
+### Features
+
+* **client-ivs-realtime:** Update GetParticipant to return additional metadata. ([4adb626](https://github.com/aws/aws-sdk-js-v3/commit/4adb62606861bc185678ff64d9871cc3930cefac))
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 c812394afce3f..5062dc47991f7 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.427.0",
+ "version": "3.428.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-ivs/CHANGELOG.md b/clients/client-ivs/CHANGELOG.md
index f35af224e9841..0880b18141e48 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-ivs
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 18159f4ad3428..efbbb83a8856c 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.427.0",
+ "version": "3.428.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-ivschat/CHANGELOG.md b/clients/client-ivschat/CHANGELOG.md
index 8f946fb2c0ce3..8f959bf019b01 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-ivschat
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 44c43c2fb0180..ad00c4b75e922 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.427.0",
+ "version": "3.428.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-kafka/CHANGELOG.md b/clients/client-kafka/CHANGELOG.md
index 064f93efc7810..0077b45cdc1da 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-kafka
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 df4da19cf371c..0880b0a1220a0 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.427.0",
+ "version": "3.428.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-kafkaconnect/CHANGELOG.md b/clients/client-kafkaconnect/CHANGELOG.md
index 456b4259ad1fd..97e63d25dd288 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-kafkaconnect
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 b0f1077c63a14..cd0debce95068 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.427.0",
+ "version": "3.428.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-kendra-ranking/CHANGELOG.md b/clients/client-kendra-ranking/CHANGELOG.md
index 5d2629580f4e2..734a2ab4039ad 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-kendra-ranking
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 9fde65545126d..8f766caaab874 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.427.0",
+ "version": "3.428.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-kendra/CHANGELOG.md b/clients/client-kendra/CHANGELOG.md
index 261ad39e6c8af..ca1724b7a884b 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-kendra
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 f0c304627f8fa..702703d98eacf 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.427.0",
+ "version": "3.428.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-keyspaces/CHANGELOG.md b/clients/client-keyspaces/CHANGELOG.md
index 29d46d83d42e5..c9642c160d74b 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-keyspaces
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 994f75587cde2..581a115ab3d8f 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.427.0",
+ "version": "3.428.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-kinesis-analytics-v2/CHANGELOG.md b/clients/client-kinesis-analytics-v2/CHANGELOG.md
index 3a634a19bcb68..e37aea7a8ca75 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-kinesis-analytics-v2
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 f9fb039172057..3601dece03c06 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.427.0",
+ "version": "3.428.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-kinesis-analytics/CHANGELOG.md b/clients/client-kinesis-analytics/CHANGELOG.md
index f63f11b112ddb..30e8dc183cc52 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-kinesis-analytics
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 27e4a02571549..2199650c1e809 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.427.0",
+ "version": "3.428.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-kinesis-video-archived-media/CHANGELOG.md b/clients/client-kinesis-video-archived-media/CHANGELOG.md
index af67ac70c3fdc..ffd1cb1a1f72d 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-kinesis-video-archived-media
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 5602e199db48d..2b57af1f5c45f 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.427.0",
+ "version": "3.428.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-kinesis-video-media/CHANGELOG.md b/clients/client-kinesis-video-media/CHANGELOG.md
index 69ae1ae96f322..b15e4c0447a8b 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-kinesis-video-media
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 29358af11f445..6424bb5e71d90 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.427.0",
+ "version": "3.428.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-kinesis-video-signaling/CHANGELOG.md b/clients/client-kinesis-video-signaling/CHANGELOG.md
index f3058797f24b7..8b02a92dd52de 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-kinesis-video-signaling
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 48ae4fc63b0cb..cde1201ee90bc 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.427.0",
+ "version": "3.428.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-kinesis-video-webrtc-storage/CHANGELOG.md b/clients/client-kinesis-video-webrtc-storage/CHANGELOG.md
index de3b5f405ed17..542d1d5c10f39 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-kinesis-video-webrtc-storage
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 1710a3649d407..e1bd75b9ae98d 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.427.0",
+ "version": "3.428.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-kinesis-video/CHANGELOG.md b/clients/client-kinesis-video/CHANGELOG.md
index 807728247a761..cdf3138a8615f 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-kinesis-video
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 1d1f5e802c98c..ecf9f350b6024 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.427.0",
+ "version": "3.428.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-kinesis/CHANGELOG.md b/clients/client-kinesis/CHANGELOG.md
index a56fd91b2dd31..11904bbd8a1d8 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-kinesis
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 6a9d5887a7e59..f4d55d044e64a 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.427.0",
+ "version": "3.428.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-kms/CHANGELOG.md b/clients/client-kms/CHANGELOG.md
index 7744d9f249f6a..e16dc76a6ce09 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-kms
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 2fca124732113..35c7e2f92620d 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.427.0",
+ "version": "3.428.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-lakeformation/CHANGELOG.md b/clients/client-lakeformation/CHANGELOG.md
index 7fc6b6d4b7338..26c6ce8a2fd4b 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-lakeformation
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 ef83a63229e3b..97fdc5118de85 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.427.0",
+ "version": "3.428.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-lambda/CHANGELOG.md b/clients/client-lambda/CHANGELOG.md
index b5e2a90ce7fdf..bc2a0df3d25b2 100644
--- a/clients/client-lambda/CHANGELOG.md
+++ b/clients/client-lambda/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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+
+### Features
+
+* **client-lambda:** Adds support for Lambda functions to access Dual-Stack subnets over IPv6, via an opt-in flag in CreateFunction and UpdateFunctionConfiguration APIs ([2bb63a0](https://github.com/aws/aws-sdk-js-v3/commit/2bb63a023100d2133b8050c1eb528f04444bd576))
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 b772ab1295692..660f7da9fc4e2 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.427.0",
+ "version": "3.428.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-lex-model-building-service/CHANGELOG.md b/clients/client-lex-model-building-service/CHANGELOG.md
index fba54b3f0c8cd..10d1511ef8b82 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-lex-model-building-service
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 7ad0e533e0e8d..b4f9f399da6a1 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.427.0",
+ "version": "3.428.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-lex-models-v2/CHANGELOG.md b/clients/client-lex-models-v2/CHANGELOG.md
index 50da8646b3501..ac4f9da710aa4 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-lex-models-v2
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 72f459306ca80..8ce3f7fae65ce 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.427.0",
+ "version": "3.428.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-lex-runtime-service/CHANGELOG.md b/clients/client-lex-runtime-service/CHANGELOG.md
index 1fad8d8ae9590..7a934262b638c 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-lex-runtime-service
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 cf7689e8b3b02..2dd26d4684ea0 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.427.0",
+ "version": "3.428.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-lex-runtime-v2/CHANGELOG.md b/clients/client-lex-runtime-v2/CHANGELOG.md
index cf819d9a86b33..322cf7b20b7a5 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-lex-runtime-v2
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 8f4bfec0ce55f..4f3bf1df49779 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.427.0",
+ "version": "3.428.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-license-manager-linux-subscriptions/CHANGELOG.md b/clients/client-license-manager-linux-subscriptions/CHANGELOG.md
index ba98fa997bc8f..a494ebfc9efb5 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-license-manager-linux-subscriptions
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 4aea44f59ac12..31213d17e6bf7 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.427.0",
+ "version": "3.428.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-license-manager-user-subscriptions/CHANGELOG.md b/clients/client-license-manager-user-subscriptions/CHANGELOG.md
index 8de2234e691ea..5bdeb7ff9b0b9 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-license-manager-user-subscriptions
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 da7ad016e367c..499480c7ec237 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.427.0",
+ "version": "3.428.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-license-manager/CHANGELOG.md b/clients/client-license-manager/CHANGELOG.md
index 5d5d409ff8ae0..8d4e35bd6b30d 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-license-manager
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 6d6b051732274..5b6f838306d6b 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.427.0",
+ "version": "3.428.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-lightsail/CHANGELOG.md b/clients/client-lightsail/CHANGELOG.md
index e0a210c65f50d..a49fdc7703946 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-lightsail
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 ff63c4bd49620..9d56bac0972b5 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.427.0",
+ "version": "3.428.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-location/CHANGELOG.md b/clients/client-location/CHANGELOG.md
index 6813873570851..ce75fe2351c09 100644
--- a/clients/client-location/CHANGELOG.md
+++ b/clients/client-location/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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+
+### Features
+
+* **client-location:** This release adds endpoint updates for all AWS Location resource operations. ([f71b216](https://github.com/aws/aws-sdk-js-v3/commit/f71b2162e204e6bd55685b443964e34944040d66))
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 bb60ec7a5191c..15318f943a752 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.427.0",
+ "version": "3.428.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-lookoutequipment/CHANGELOG.md b/clients/client-lookoutequipment/CHANGELOG.md
index c60e36d77ccf4..b63c42a79fed0 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-lookoutequipment
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 fcec2da36ff7c..b563aa1bb0d9f 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.427.0",
+ "version": "3.428.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-lookoutmetrics/CHANGELOG.md b/clients/client-lookoutmetrics/CHANGELOG.md
index 72e518c8d61e6..ce08d825dbae5 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-lookoutmetrics
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 60980cb8a8cc2..37d25a4dca761 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.427.0",
+ "version": "3.428.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-lookoutvision/CHANGELOG.md b/clients/client-lookoutvision/CHANGELOG.md
index 36773b9b5b44a..f5ebb1c53b21e 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-lookoutvision
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 61384ec8582db..b1b12b83522a7 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.427.0",
+ "version": "3.428.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-m2/CHANGELOG.md b/clients/client-m2/CHANGELOG.md
index 9f8d829e286ed..292ebccce35ab 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-m2
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 4503d5358b323..22a3ac3839508 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.427.0",
+ "version": "3.428.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-machine-learning/CHANGELOG.md b/clients/client-machine-learning/CHANGELOG.md
index 55c04f7e2ce86..ee7d7ff89dbd3 100644
--- a/clients/client-machine-learning/CHANGELOG.md
+++ b/clients/client-machine-learning/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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+
+### Features
+
+* **client-machine-learning:** This release marks Password field as sensitive ([4d5eac6](https://github.com/aws/aws-sdk-js-v3/commit/4d5eac693235fa55b8f817a7b545befe0d0a30a6))
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 d210829d005bb..6801217928d48 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.427.0",
+ "version": "3.428.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-macie/CHANGELOG.md b/clients/client-macie/CHANGELOG.md
index 4399d1a55d987..d237b01cf888d 100644
--- a/clients/client-macie/CHANGELOG.md
+++ b/clients/client-macie/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-macie
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**Note:** Version bump only for package @aws-sdk/client-macie
diff --git a/clients/client-macie/package.json b/clients/client-macie/package.json
index 32275f771eb8a..a5bc68a6c1fd9 100644
--- a/clients/client-macie/package.json
+++ b/clients/client-macie/package.json
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/client-macie",
"description": "AWS SDK for JavaScript Macie Client for Node.js, Browser and React Native",
- "version": "3.427.0",
+ "version": "3.428.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-macie2/CHANGELOG.md b/clients/client-macie2/CHANGELOG.md
index 8d01ab99ff78e..ab54356549283 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-macie2
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 b7317c1117734..03ac56a5d5222 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.427.0",
+ "version": "3.428.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 78515962692d6..461dcc8b4ba4c 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-managedblockchain-query
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 a54cde8d22d92..086c325fb7304 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.427.0",
+ "version": "3.428.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/CHANGELOG.md b/clients/client-managedblockchain/CHANGELOG.md
index 8f13ca345b4b3..b94bc4828731c 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-managedblockchain
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 770ed31b17929..cef709331e844 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.427.0",
+ "version": "3.428.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-marketplace-catalog/CHANGELOG.md b/clients/client-marketplace-catalog/CHANGELOG.md
index 175fffcf0c3b7..9cd132b04c5bb 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-marketplace-catalog
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
diff --git a/clients/client-marketplace-catalog/package.json b/clients/client-marketplace-catalog/package.json
index 4f1b1f73f9548..626d6e92d9e9b 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.427.0",
+ "version": "3.428.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-marketplace-commerce-analytics/CHANGELOG.md b/clients/client-marketplace-commerce-analytics/CHANGELOG.md
index 397ad5956a005..1eb773a176fe3 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-marketplace-commerce-analytics
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 955e27fe5395d..e93ad3d5a2afa 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.427.0",
+ "version": "3.428.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-marketplace-entitlement-service/CHANGELOG.md b/clients/client-marketplace-entitlement-service/CHANGELOG.md
index feca2b9274e81..aa8c37716831f 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-marketplace-entitlement-service
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 887a2c5cf7247..d277f46847487 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.427.0",
+ "version": "3.428.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-marketplace-metering/CHANGELOG.md b/clients/client-marketplace-metering/CHANGELOG.md
index 94c4dba2a62b8..c433c8d40fc62 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-marketplace-metering
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 990fafddaa450..6405b37999745 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.427.0",
+ "version": "3.428.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-mediaconnect/CHANGELOG.md b/clients/client-mediaconnect/CHANGELOG.md
index 28c9326675162..5e4a1e0af7b75 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-mediaconnect
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 ff2b43fc2ddf9..42d246faad6f4 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.427.0",
+ "version": "3.428.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-mediaconvert/CHANGELOG.md b/clients/client-mediaconvert/CHANGELOG.md
index a4adcc51760e4..e82738b86466f 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-mediaconvert
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 43fc62306c0e2..b09662fd463ef 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.427.0",
+ "version": "3.428.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-medialive/CHANGELOG.md b/clients/client-medialive/CHANGELOG.md
index 09606c1521213..9e5513e51f791 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-medialive
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 34c5bb1d2366a..a49b585ebe4bc 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.427.0",
+ "version": "3.428.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-mediapackage-vod/CHANGELOG.md b/clients/client-mediapackage-vod/CHANGELOG.md
index d32ebf37a291a..90d6afc37a80b 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-mediapackage-vod
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 030c21e9edaee..a14c030ac20a4 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.427.0",
+ "version": "3.428.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-mediapackage/CHANGELOG.md b/clients/client-mediapackage/CHANGELOG.md
index a1b2bf5241c0a..31e68db61c70a 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-mediapackage
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 06c536549663c..d9241567d085c 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.427.0",
+ "version": "3.428.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-mediapackagev2/CHANGELOG.md b/clients/client-mediapackagev2/CHANGELOG.md
index 12ed75d2bc604..3a69446e23635 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-mediapackagev2
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 682f5f208018d..0dbb163841285 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.427.0",
+ "version": "3.428.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-mediastore-data/CHANGELOG.md b/clients/client-mediastore-data/CHANGELOG.md
index ba280647c6445..a2d94ea706793 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-mediastore-data
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 9f3277e356228..c49b1ffaa7e79 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.427.0",
+ "version": "3.428.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-mediastore/CHANGELOG.md b/clients/client-mediastore/CHANGELOG.md
index ac2f3b22b9472..30bc192da1567 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-mediastore
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 d4b4215f13b6f..447e6cf8a0986 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.427.0",
+ "version": "3.428.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-mediatailor/CHANGELOG.md b/clients/client-mediatailor/CHANGELOG.md
index d3c199b06238e..1c23bee58a8e5 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-mediatailor
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 d809a732e9b06..69e2d8612a82e 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.427.0",
+ "version": "3.428.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-medical-imaging/CHANGELOG.md b/clients/client-medical-imaging/CHANGELOG.md
index 73fcacf514296..2e3a7fe4dfc54 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-medical-imaging
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 3175f4d04a999..a8b73280991a9 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.427.0",
+ "version": "3.428.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-memorydb/CHANGELOG.md b/clients/client-memorydb/CHANGELOG.md
index 3053d4581e0dc..36813057db5dc 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-memorydb
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 bcfb79b0cc255..8a83a8ead1cce 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.427.0",
+ "version": "3.428.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-mgn/CHANGELOG.md b/clients/client-mgn/CHANGELOG.md
index 467f4aec0ae48..450c7a04a4b85 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-mgn
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 28dca54f5fcd9..bc1f995ca1288 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.427.0",
+ "version": "3.428.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-migration-hub-refactor-spaces/CHANGELOG.md b/clients/client-migration-hub-refactor-spaces/CHANGELOG.md
index dd03b878272ea..678becb5ad33d 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-migration-hub-refactor-spaces
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 482b83c33452c..bd970803a4a12 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.427.0",
+ "version": "3.428.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-migration-hub/CHANGELOG.md b/clients/client-migration-hub/CHANGELOG.md
index 7c1f227ee9fae..3432f143ba143 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-migration-hub
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 0d944cb460c77..c79ed49785b22 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.427.0",
+ "version": "3.428.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-migrationhub-config/CHANGELOG.md b/clients/client-migrationhub-config/CHANGELOG.md
index 96c32e5132940..1292195eb1c17 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-migrationhub-config
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 87aff2cea296f..28fef44f2b281 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.427.0",
+ "version": "3.428.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-migrationhuborchestrator/CHANGELOG.md b/clients/client-migrationhuborchestrator/CHANGELOG.md
index 3b98cc89b96a9..93ecc5ec97adf 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-migrationhuborchestrator
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 6e7f735a84c6b..dded67de1bfe5 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.427.0",
+ "version": "3.428.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-migrationhubstrategy/CHANGELOG.md b/clients/client-migrationhubstrategy/CHANGELOG.md
index 2daa681243ff7..dec6a674c5ea2 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-migrationhubstrategy
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 43f1c34fcb1b1..a6104b618bc01 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.427.0",
+ "version": "3.428.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-mobile/CHANGELOG.md b/clients/client-mobile/CHANGELOG.md
index 7043bab3a7016..cb42cacc25154 100644
--- a/clients/client-mobile/CHANGELOG.md
+++ b/clients/client-mobile/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-mobile
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**Note:** Version bump only for package @aws-sdk/client-mobile
diff --git a/clients/client-mobile/package.json b/clients/client-mobile/package.json
index 2649e24ae8fea..42151bd76f5c8 100644
--- a/clients/client-mobile/package.json
+++ b/clients/client-mobile/package.json
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/client-mobile",
"description": "AWS SDK for JavaScript Mobile Client for Node.js, Browser and React Native",
- "version": "3.427.0",
+ "version": "3.428.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-mq/CHANGELOG.md b/clients/client-mq/CHANGELOG.md
index 64005f1f6e132..28090a4233227 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-mq
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 d6688d469b32e..99efc7439ea16 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.427.0",
+ "version": "3.428.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-mturk/CHANGELOG.md b/clients/client-mturk/CHANGELOG.md
index 019c76dd02ade..becccb92d9d3f 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-mturk
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 625e4d82dcb6e..21fe3bb38a85d 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.427.0",
+ "version": "3.428.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-mwaa/CHANGELOG.md b/clients/client-mwaa/CHANGELOG.md
index 3fcd8436f56ed..be2dd4982767a 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-mwaa
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 eb0a5eeedb436..860a0702913f6 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.427.0",
+ "version": "3.428.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-neptune/CHANGELOG.md b/clients/client-neptune/CHANGELOG.md
index bc3651a11dbe9..f1e9718928010 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-neptune
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 f34620bf2c31f..f26b7dc2e3d53 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.427.0",
+ "version": "3.428.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-neptunedata/CHANGELOG.md b/clients/client-neptunedata/CHANGELOG.md
index 0b861af7f0bc5..3502bd58d0e7b 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-neptunedata
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 4534e94e2d2dd..f76371eeb0771 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.427.0",
+ "version": "3.428.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-network-firewall/CHANGELOG.md b/clients/client-network-firewall/CHANGELOG.md
index 24bf9f70c0de2..262f25f6c9088 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-network-firewall
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 cb72df3a0fe86..82be695b529b3 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.427.0",
+ "version": "3.428.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-networkmanager/CHANGELOG.md b/clients/client-networkmanager/CHANGELOG.md
index c6fd58097e2cc..a4f636784e760 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-networkmanager
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 397fb7cbe27d8..2ecc8f8ace3e5 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.427.0",
+ "version": "3.428.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-nimble/CHANGELOG.md b/clients/client-nimble/CHANGELOG.md
index 268af278b5c48..60ce08f73cdf8 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-nimble
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 ea85e2213b44a..bf266a1cae5bf 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.427.0",
+ "version": "3.428.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-oam/CHANGELOG.md b/clients/client-oam/CHANGELOG.md
index f448b287bcf4b..f978ca0d3c5f2 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-oam
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 0a87078f57359..28653a33cf70e 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.427.0",
+ "version": "3.428.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-omics/CHANGELOG.md b/clients/client-omics/CHANGELOG.md
index 6fa899dbc7c33..76ea36a8509e2 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-omics
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 a8e7b42609d94..304c306c8f359 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.427.0",
+ "version": "3.428.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-opensearch/CHANGELOG.md b/clients/client-opensearch/CHANGELOG.md
index 1da543d0e0eb1..96d2df27e4c33 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-opensearch
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 c9774ed0481e5..79d990e70b81e 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.427.0",
+ "version": "3.428.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-opensearchserverless/CHANGELOG.md b/clients/client-opensearchserverless/CHANGELOG.md
index a1d238fd35075..d4b2bd7f0cec7 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-opensearchserverless
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 0e851ac75f77c..eab0b98e45e4f 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.427.0",
+ "version": "3.428.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-opsworks/CHANGELOG.md b/clients/client-opsworks/CHANGELOG.md
index e183d0e2cb5e0..4024104bc17c6 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-opsworks
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 dafc0dac54b3a..952b922b6bc7b 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.427.0",
+ "version": "3.428.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-opsworkscm/CHANGELOG.md b/clients/client-opsworkscm/CHANGELOG.md
index fca6a98324565..77313cf330db3 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-opsworkscm
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 f40b3108e53e8..9ffdf471a96fb 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.427.0",
+ "version": "3.428.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-organizations/CHANGELOG.md b/clients/client-organizations/CHANGELOG.md
index 25acf4d95a887..3411bac299ae9 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-organizations
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 c160502f655b7..04a95b8d2c727 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.427.0",
+ "version": "3.428.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-osis/CHANGELOG.md b/clients/client-osis/CHANGELOG.md
index bd6f02e40ead9..2270c0dbcf106 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-osis
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 2135b146e4037..0fbe575aedcf4 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.427.0",
+ "version": "3.428.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-outposts/CHANGELOG.md b/clients/client-outposts/CHANGELOG.md
index 87e30bfb1d833..e33801ed5cca3 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-outposts
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 b0f46356c44cf..51cbb81f4ff66 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.427.0",
+ "version": "3.428.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-panorama/CHANGELOG.md b/clients/client-panorama/CHANGELOG.md
index d1c61cd8329a3..462858d219bcd 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-panorama
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 a337df172dae9..2d3255e08b9bc 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.427.0",
+ "version": "3.428.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-payment-cryptography-data/CHANGELOG.md b/clients/client-payment-cryptography-data/CHANGELOG.md
index 8a625fa94e75b..f762d507ec645 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-payment-cryptography-data
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 ba994b702615b..892e45a691e29 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.427.0",
+ "version": "3.428.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-payment-cryptography/CHANGELOG.md b/clients/client-payment-cryptography/CHANGELOG.md
index d96e99173c737..50c15ac908bf7 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-payment-cryptography
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 7343031d9c71f..a3eab6a51d4c9 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.427.0",
+ "version": "3.428.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-pca-connector-ad/CHANGELOG.md b/clients/client-pca-connector-ad/CHANGELOG.md
index 9112e54930c9a..81efa76fb3393 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-pca-connector-ad
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 f01bb088ab806..f7f4c961229ae 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.427.0",
+ "version": "3.428.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 66de947f5c179..9c04be5914392 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-personalize-events
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 a7e355aa90959..50dce8602ab3d 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.427.0",
+ "version": "3.428.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-runtime/CHANGELOG.md b/clients/client-personalize-runtime/CHANGELOG.md
index b7707776ca91c..c18e68f7b94d7 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-personalize-runtime
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 6fa7dd1afd149..70c617f174b69 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.427.0",
+ "version": "3.428.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/CHANGELOG.md b/clients/client-personalize/CHANGELOG.md
index 012cfea5e6434..f7ba16574411a 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-personalize
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 0cb3d77c4a7e0..2328532346b41 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.427.0",
+ "version": "3.428.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-pi/CHANGELOG.md b/clients/client-pi/CHANGELOG.md
index 5ff5e9ac6f86b..c4dd8eac51b38 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-pi
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 a8d21ce36aeba..f8f8af01dbdf6 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.427.0",
+ "version": "3.428.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-pinpoint-email/CHANGELOG.md b/clients/client-pinpoint-email/CHANGELOG.md
index 3a59812eb4521..75201569406d4 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-pinpoint-email
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 92cc58e502e65..73f8f15d43636 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.427.0",
+ "version": "3.428.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-pinpoint-sms-voice-v2/CHANGELOG.md b/clients/client-pinpoint-sms-voice-v2/CHANGELOG.md
index 909364063639c..07e633b4a2b49 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-pinpoint-sms-voice-v2
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 713fcb0cb434c..8c7f5dffce495 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.427.0",
+ "version": "3.428.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-pinpoint-sms-voice/CHANGELOG.md b/clients/client-pinpoint-sms-voice/CHANGELOG.md
index 48d8d3f85790d..80921f4b17506 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-pinpoint-sms-voice
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 61956b9cd5357..5f6d01cc6c49d 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.427.0",
+ "version": "3.428.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-pinpoint/CHANGELOG.md b/clients/client-pinpoint/CHANGELOG.md
index 0362366f5d8bb..1a55979582a64 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-pinpoint
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 22a8fd6ada0d4..f58cdbc2b087c 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.427.0",
+ "version": "3.428.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-pipes/CHANGELOG.md b/clients/client-pipes/CHANGELOG.md
index 07d013989686a..03a6ac15d9375 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-pipes
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 58fdbfc6386ed..ead5a86b61729 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.427.0",
+ "version": "3.428.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-polly/CHANGELOG.md b/clients/client-polly/CHANGELOG.md
index 6ca350d49e514..7e9af0b22d5df 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-polly
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 5fa49a320d40d..1248f705c6c5a 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.427.0",
+ "version": "3.428.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-pricing/CHANGELOG.md b/clients/client-pricing/CHANGELOG.md
index 60af0ebb6b628..2c9314d63befb 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-pricing
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 3befe71f77968..acb89c019d10e 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.427.0",
+ "version": "3.428.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-privatenetworks/CHANGELOG.md b/clients/client-privatenetworks/CHANGELOG.md
index 397376d13b610..c190bdf2e8c1f 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-privatenetworks
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 93efe49349943..a919eecba97cf 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.427.0",
+ "version": "3.428.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-proton/CHANGELOG.md b/clients/client-proton/CHANGELOG.md
index b6645b9b2f709..349d9d826e577 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-proton
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 2d36dd83250f3..efef8caae916b 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.427.0",
+ "version": "3.428.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-qldb-session/CHANGELOG.md b/clients/client-qldb-session/CHANGELOG.md
index 9556948ffec25..2ed0e8788a8ec 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-qldb-session
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 e5399a6153ed0..f8992d22cde04 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.427.0",
+ "version": "3.428.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-qldb/CHANGELOG.md b/clients/client-qldb/CHANGELOG.md
index 58a0ba974129a..38c9ddc23fedc 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-qldb
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 066007bf8bc15..434fb6a63a5ea 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.427.0",
+ "version": "3.428.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-quicksight/CHANGELOG.md b/clients/client-quicksight/CHANGELOG.md
index d3486dc726900..a25a683257d23 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-quicksight
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
diff --git a/clients/client-quicksight/package.json b/clients/client-quicksight/package.json
index 0c647e5bdf273..3aaa5c43883ad 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.427.0",
+ "version": "3.428.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-ram/CHANGELOG.md b/clients/client-ram/CHANGELOG.md
index 0d21012e8a1a9..b29d92331fe63 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-ram
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 18e443e43d3b9..2ddc2b63bb918 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.427.0",
+ "version": "3.428.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-rbin/CHANGELOG.md b/clients/client-rbin/CHANGELOG.md
index b64a75b675e3b..72d4a7ce6b476 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-rbin
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 e21b8ad90ed74..022b2711fc9b6 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.427.0",
+ "version": "3.428.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-rds-data/CHANGELOG.md b/clients/client-rds-data/CHANGELOG.md
index 7c4add659cbdf..0f06287929bfa 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-rds-data
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 6963789033015..05d7dc876ee33 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.427.0",
+ "version": "3.428.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-rds/CHANGELOG.md b/clients/client-rds/CHANGELOG.md
index 31ac498205662..e403d1ca5fad4 100644
--- a/clients/client-rds/CHANGELOG.md
+++ b/clients/client-rds/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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+
+### Features
+
+* **client-rds:** This release adds support for adding a dedicated log volume to open-source RDS instances. ([634a983](https://github.com/aws/aws-sdk-js-v3/commit/634a98311610222f33aa38a6912eccda25ff6d5f))
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 0ecb1a547bd9d..d297cff4a5830 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.427.0",
+ "version": "3.428.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-redshift-data/CHANGELOG.md b/clients/client-redshift-data/CHANGELOG.md
index 4ebe0ac7021c5..076e89d26dc60 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-redshift-data
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 3bb6d78188c4c..2ad907d8f0780 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.427.0",
+ "version": "3.428.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-redshift-serverless/CHANGELOG.md b/clients/client-redshift-serverless/CHANGELOG.md
index bdc886cac8067..9972a075ebecb 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-redshift-serverless
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 7e6a2812eda2f..9dfb7d1d576b0 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.427.0",
+ "version": "3.428.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-redshift/CHANGELOG.md b/clients/client-redshift/CHANGELOG.md
index 2cc07331a9568..79ab7355c5b2f 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-redshift
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 d61504828e95b..8d113fcf713fd 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.427.0",
+ "version": "3.428.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-rekognition/CHANGELOG.md b/clients/client-rekognition/CHANGELOG.md
index 5803458a57f73..3ecc4cf6996e9 100644
--- a/clients/client-rekognition/CHANGELOG.md
+++ b/clients/client-rekognition/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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+
+### Features
+
+* **client-rekognition:** Amazon Rekognition introduces support for Custom Moderation. This allows the enhancement of accuracy for detect moderation labels operations by creating custom adapters tuned on customer data. ([87763f3](https://github.com/aws/aws-sdk-js-v3/commit/87763f3b71b3bdc7e07cafbbcf6be210e137d1e2))
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 cc7edeb5387e3..f4c61eb0a893b 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.427.0",
+ "version": "3.428.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-rekognitionstreaming/CHANGELOG.md b/clients/client-rekognitionstreaming/CHANGELOG.md
index 4310c81769c49..83e839fbe4517 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-rekognitionstreaming
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 0bef5bfdf7ac3..abcd5fb5dfa7c 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.427.0",
+ "version": "3.428.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-resiliencehub/CHANGELOG.md b/clients/client-resiliencehub/CHANGELOG.md
index 45e4905bf0e97..69723faf1c2cf 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-resiliencehub
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 0d0ce2a04962f..7dc4ea38e3d7d 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.427.0",
+ "version": "3.428.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-resource-explorer-2/CHANGELOG.md b/clients/client-resource-explorer-2/CHANGELOG.md
index 7554feaaf4725..c5b8f5e20cdc7 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-resource-explorer-2
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 b098cfdaf8b9c..d96a9a637d890 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.427.0",
+ "version": "3.428.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-resource-groups-tagging-api/CHANGELOG.md b/clients/client-resource-groups-tagging-api/CHANGELOG.md
index b9d3381e6e656..5597fb609bfa3 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-resource-groups-tagging-api
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 8bb904079afa7..207cac042dae0 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.427.0",
+ "version": "3.428.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-resource-groups/CHANGELOG.md b/clients/client-resource-groups/CHANGELOG.md
index e6cce1543bef0..d58300deeedf6 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-resource-groups
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 7d2527e0d3435..b29e0bd70228e 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.427.0",
+ "version": "3.428.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-robomaker/CHANGELOG.md b/clients/client-robomaker/CHANGELOG.md
index 2ac876dcddd03..1652451a35797 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-robomaker
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 07cd2dc55df2f..f0d1284bc9647 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.427.0",
+ "version": "3.428.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-rolesanywhere/CHANGELOG.md b/clients/client-rolesanywhere/CHANGELOG.md
index 264c8492f96a3..0b714606552d2 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-rolesanywhere
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 bf7d9db11063d..394a66b9e9143 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.427.0",
+ "version": "3.428.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-route-53-domains/CHANGELOG.md b/clients/client-route-53-domains/CHANGELOG.md
index 24beb1ddd1dc9..17ad823bc5675 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-route-53-domains
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 7a64db370cad7..a89979846b431 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.427.0",
+ "version": "3.428.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-route-53/CHANGELOG.md b/clients/client-route-53/CHANGELOG.md
index 17c691bdb41e9..f5bbb6b36a710 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-route-53
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 a463348cc0a91..6993a314af61c 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.427.0",
+ "version": "3.428.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-route53-recovery-cluster/CHANGELOG.md b/clients/client-route53-recovery-cluster/CHANGELOG.md
index 0d67f6a2cc1d1..4e98de1fc2edb 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-route53-recovery-cluster
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 d3f3f9df19aa3..914b4eaabd34b 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.427.0",
+ "version": "3.428.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-route53-recovery-control-config/CHANGELOG.md b/clients/client-route53-recovery-control-config/CHANGELOG.md
index 5614096b7d3c4..e841b5b61fa9b 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-route53-recovery-control-config
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 30240d9275763..c90335ade5038 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.427.0",
+ "version": "3.428.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-route53-recovery-readiness/CHANGELOG.md b/clients/client-route53-recovery-readiness/CHANGELOG.md
index 81d0098810b53..8c0ac07c44716 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-route53-recovery-readiness
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 212a41a9b0334..25111c02db741 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.427.0",
+ "version": "3.428.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 05628b821d5ed..232aa7f89ce73 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-route53resolver
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 3ec1782e1f836..e38240ff47db6 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.427.0",
+ "version": "3.428.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-rum/CHANGELOG.md b/clients/client-rum/CHANGELOG.md
index b16a7f62e93a9..1fa2f49c15680 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-rum
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 083206fe39ea5..97d66f6bc9ecc 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.427.0",
+ "version": "3.428.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-s3-control/CHANGELOG.md b/clients/client-s3-control/CHANGELOG.md
index 3a1d609dbb65a..bb349936871f4 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-s3-control
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 11c4ce78ec4d2..3cd1ef6b6da4a 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.427.0",
+ "version": "3.428.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-s3/CHANGELOG.md b/clients/client-s3/CHANGELOG.md
index 358b19d4572eb..302c2eafd5d4f 100644
--- a/clients/client-s3/CHANGELOG.md
+++ b/clients/client-s3/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-s3
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
diff --git a/clients/client-s3/package.json b/clients/client-s3/package.json
index 5de80523fbfd6..fe60eb0b221b3 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.427.0",
+ "version": "3.428.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-s3outposts/CHANGELOG.md b/clients/client-s3outposts/CHANGELOG.md
index 6932eaa6db9f3..cdcd2573f9834 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-s3outposts
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 8fc475bf9c103..1857a3e8320b4 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.427.0",
+ "version": "3.428.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-sagemaker-a2i-runtime/CHANGELOG.md b/clients/client-sagemaker-a2i-runtime/CHANGELOG.md
index 5843f74845b48..402fcb477d626 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-sagemaker-a2i-runtime
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 b3fc4a200c3b8..ed0385aa03375 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.427.0",
+ "version": "3.428.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-sagemaker-edge/CHANGELOG.md b/clients/client-sagemaker-edge/CHANGELOG.md
index a93fa716fa9bc..ae097c8fe0b91 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-sagemaker-edge
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 dc15f46ff12e2..f3b1a8b01a7fd 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.427.0",
+ "version": "3.428.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-sagemaker-featurestore-runtime/CHANGELOG.md b/clients/client-sagemaker-featurestore-runtime/CHANGELOG.md
index 27e52786892b6..3e41b2cd5f758 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-sagemaker-featurestore-runtime
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 467eb25743bdb..0edeba12d8513 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.427.0",
+ "version": "3.428.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-sagemaker-geospatial/CHANGELOG.md b/clients/client-sagemaker-geospatial/CHANGELOG.md
index 86a98d6252e3c..4eec57ddabea0 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-sagemaker-geospatial
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 bb93f8a17a629..513d70a0e66d7 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.427.0",
+ "version": "3.428.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-sagemaker-metrics/CHANGELOG.md b/clients/client-sagemaker-metrics/CHANGELOG.md
index b59513e02837f..3389a16987002 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-sagemaker-metrics
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 65b411d6a840a..0a0d6a45ce859 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.427.0",
+ "version": "3.428.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-sagemaker-runtime/CHANGELOG.md b/clients/client-sagemaker-runtime/CHANGELOG.md
index 3b146b38621e6..c2c2daf02e9b4 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-sagemaker-runtime
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 8ebce2d221457..08fc7475cbfb7 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.427.0",
+ "version": "3.428.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-sagemaker/CHANGELOG.md b/clients/client-sagemaker/CHANGELOG.md
index 21d2edbe158d7..c18da69a1afa1 100644
--- a/clients/client-sagemaker/CHANGELOG.md
+++ b/clients/client-sagemaker/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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+
+### Features
+
+* **client-sagemaker:** Amazon SageMaker Canvas adds KendraSettings and DirectDeploySettings support for CanvasAppSettings ([685916c](https://github.com/aws/aws-sdk-js-v3/commit/685916ce1a1d171c083afe0800bd3c4124408caa))
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 5fdf10c850813..e6e339a67a2ce 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.427.0",
+ "version": "3.428.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-savingsplans/CHANGELOG.md b/clients/client-savingsplans/CHANGELOG.md
index 8ead22dfbc6dd..f89d25bb4b033 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-savingsplans
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 ffdf4a498f5cc..5412d72fa7cb1 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.427.0",
+ "version": "3.428.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-scheduler/CHANGELOG.md b/clients/client-scheduler/CHANGELOG.md
index f6387a5ff355b..b444c183c0215 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-scheduler
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 c85b1ba0de9a2..9c8df31f2ad13 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.427.0",
+ "version": "3.428.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-schemas/CHANGELOG.md b/clients/client-schemas/CHANGELOG.md
index 3e501e3f950b2..c40ad0fd1df58 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-schemas
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 d993bb7a720a0..78a18d5e8f184 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.427.0",
+ "version": "3.428.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-secrets-manager/CHANGELOG.md b/clients/client-secrets-manager/CHANGELOG.md
index a47f24c5a8445..a2c31f3b68966 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-secrets-manager
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 d2d3965ec41a9..1f63a7059cbe1 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.427.0",
+ "version": "3.428.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-securityhub/CHANGELOG.md b/clients/client-securityhub/CHANGELOG.md
index b8cba27b8dc78..17000cf573e95 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-securityhub
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 f0aefbade163d..ff23b8d7466e1 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.427.0",
+ "version": "3.428.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-securitylake/CHANGELOG.md b/clients/client-securitylake/CHANGELOG.md
index 126187d645f63..3508516209d45 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-securitylake
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 5a20b5fef1f71..74720e41e8376 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.427.0",
+ "version": "3.428.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-serverlessapplicationrepository/CHANGELOG.md b/clients/client-serverlessapplicationrepository/CHANGELOG.md
index 9127cbd8aeb89..5b0a01294eb27 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-serverlessapplicationrepository
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 979cacc61c22d..56c6f50b49fa4 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.427.0",
+ "version": "3.428.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-service-catalog-appregistry/CHANGELOG.md b/clients/client-service-catalog-appregistry/CHANGELOG.md
index b09096c2b52f3..3c0357f7c6f05 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-service-catalog-appregistry
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 4d540ac0a1eb8..2aa74e283dc5b 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.427.0",
+ "version": "3.428.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-service-catalog/CHANGELOG.md b/clients/client-service-catalog/CHANGELOG.md
index 3a848ad1ac563..3a78e66490fa7 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-service-catalog
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 5f20efd3d1ccf..8a53f7ee47b38 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.427.0",
+ "version": "3.428.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-service-quotas/CHANGELOG.md b/clients/client-service-quotas/CHANGELOG.md
index 69d1fe81d168a..4c7f37c93770f 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-service-quotas
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 cd45f632be0a6..3f6904ef79aa2 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.427.0",
+ "version": "3.428.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-servicediscovery/CHANGELOG.md b/clients/client-servicediscovery/CHANGELOG.md
index a93435ddbb749..8b251b32e2fd1 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-servicediscovery
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 6e05c1062157f..4f8b0fb21f70a 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.427.0",
+ "version": "3.428.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-ses/CHANGELOG.md b/clients/client-ses/CHANGELOG.md
index 32c4ceb082b8a..48d963714953d 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-ses
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 6b62cf8516a44..4132b39f7003f 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.427.0",
+ "version": "3.428.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-sesv2/CHANGELOG.md b/clients/client-sesv2/CHANGELOG.md
index 5595815e9d920..b2962f6f1075c 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-sesv2
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 c8a902bae2ee3..9037877bbac67 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.427.0",
+ "version": "3.428.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-sfn/CHANGELOG.md b/clients/client-sfn/CHANGELOG.md
index 6711d8c9ed28f..c61873884297d 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-sfn
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 38f40482f600f..9eed11e64c2b5 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.427.0",
+ "version": "3.428.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-shield/CHANGELOG.md b/clients/client-shield/CHANGELOG.md
index 5892778bde98a..bd91c1d6f053d 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-shield
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 bc1f33711a887..4e01f3678a2d5 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.427.0",
+ "version": "3.428.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-signer/CHANGELOG.md b/clients/client-signer/CHANGELOG.md
index 5dac86d965a96..4961418589277 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-signer
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 34ba7b5698e32..49167a35461d2 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.427.0",
+ "version": "3.428.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-simspaceweaver/CHANGELOG.md b/clients/client-simspaceweaver/CHANGELOG.md
index 37d377692e9cd..0906782501369 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-simspaceweaver
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 7295177d0c8ef..5f48d1e73bdcd 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.427.0",
+ "version": "3.428.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-sms/CHANGELOG.md b/clients/client-sms/CHANGELOG.md
index 5505d7753b820..3e745f9a59e84 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-sms
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 521caa2e30032..7cf7fc8fdc422 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.427.0",
+ "version": "3.428.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-snow-device-management/CHANGELOG.md b/clients/client-snow-device-management/CHANGELOG.md
index 73ce2e47ef017..324056d89eae9 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-snow-device-management
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 ed88e8d2067f8..54d9deba2163e 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.427.0",
+ "version": "3.428.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-snowball/CHANGELOG.md b/clients/client-snowball/CHANGELOG.md
index e84c06e2194bd..b7a49a7517a20 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-snowball
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 d682db3d648cb..cfd8809966b30 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.427.0",
+ "version": "3.428.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-sns/CHANGELOG.md b/clients/client-sns/CHANGELOG.md
index fce344304fe5f..de528731f4bd5 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-sns
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 413377c88d4ed..8a7acccf85169 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.427.0",
+ "version": "3.428.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-sqs/CHANGELOG.md b/clients/client-sqs/CHANGELOG.md
index b527ee5d895a7..18f1b0498764a 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-sqs
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 c2b66dc5b3f14..6c1846c190946 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.427.0",
+ "version": "3.428.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-contacts/CHANGELOG.md b/clients/client-ssm-contacts/CHANGELOG.md
index d302d39b76af2..711ff3149494d 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-ssm-contacts
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 8dff718884c50..f791be15ffbc7 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.427.0",
+ "version": "3.428.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-incidents/CHANGELOG.md b/clients/client-ssm-incidents/CHANGELOG.md
index 57d038d8039e0..de7dca43f4c87 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-ssm-incidents
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 112f194838dc7..25af21c6af93d 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.427.0",
+ "version": "3.428.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 c009b6283e572..64fc673d29ef9 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-ssm-sap
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 c489e1019056b..62c907d8f23a6 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.427.0",
+ "version": "3.428.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/CHANGELOG.md b/clients/client-ssm/CHANGELOG.md
index e66c6d7c25da0..28fb6decc47d6 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-ssm
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 1815058d16ccd..d52880dd29797 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.427.0",
+ "version": "3.428.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-sso-admin/CHANGELOG.md b/clients/client-sso-admin/CHANGELOG.md
index 34f962ad67795..744676d0658af 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-sso-admin
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 10c39390275f2..bb9d8eb923b08 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.427.0",
+ "version": "3.428.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-sso-oidc/CHANGELOG.md b/clients/client-sso-oidc/CHANGELOG.md
index 1245e2b30b429..36f4aa6f09d1c 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-sso-oidc
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 1b12b9c38a200..68f191a0538a0 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.427.0",
+ "version": "3.428.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-sso/CHANGELOG.md b/clients/client-sso/CHANGELOG.md
index d1304a4a0f16d..ced261b1604e2 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-sso
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 9bace95bfbb08..5a0ba3d0cc377 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.427.0",
+ "version": "3.428.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-storage-gateway/CHANGELOG.md b/clients/client-storage-gateway/CHANGELOG.md
index 979755b5c8534..efb8ddda6dd87 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-storage-gateway
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 a20fa35182b98..ff3b6b785e468 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.427.0",
+ "version": "3.428.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-sts/CHANGELOG.md b/clients/client-sts/CHANGELOG.md
index df2ddbc55f493..730f3ece50065 100644
--- a/clients/client-sts/CHANGELOG.md
+++ b/clients/client-sts/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-sts
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 7b2e7a8707405..01ebb521ff388 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.427.0",
+ "version": "3.428.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-support-app/CHANGELOG.md b/clients/client-support-app/CHANGELOG.md
index a058a923510a4..14df7af09ed48 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-support-app
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 b9b7d71276678..5e6cbc7a08b5f 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.427.0",
+ "version": "3.428.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-support/CHANGELOG.md b/clients/client-support/CHANGELOG.md
index 7929157a4ccb9..ead424b4d9732 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-support
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 91c1d361f7a03..2f9f5703aa1bc 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.427.0",
+ "version": "3.428.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-swf/CHANGELOG.md b/clients/client-swf/CHANGELOG.md
index a937ebb7de7fa..a651716a2effc 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-swf
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 99729f3af9847..7475f3c30401f 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.427.0",
+ "version": "3.428.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-synthetics/CHANGELOG.md b/clients/client-synthetics/CHANGELOG.md
index 51aa8b2b9e7b8..ec42604cf7fa4 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-synthetics
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 75c7eb659bcb7..a9d1480dde2d9 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.427.0",
+ "version": "3.428.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 a450c624e1fdd..01fcdb7c62b1c 100644
--- a/clients/client-textract/CHANGELOG.md
+++ b/clients/client-textract/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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+
+### Features
+
+* **client-textract:** This release adds 9 new APIs for adapter and adapter version management, 3 new APIs for tagging, and updates AnalyzeDocument and StartDocumentAnalysis API parameters for using adapters. ([4ce1e29](https://github.com/aws/aws-sdk-js-v3/commit/4ce1e296e2ef4433d5463aa424028c4787ffc2ba))
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 a9b9060f94745..35b8886a79c2b 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.427.0",
+ "version": "3.428.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 c183cba442487..8ea3a4f3b0ec0 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-timestream-query
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 4b732e9078367..355c809362d04 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.427.0",
+ "version": "3.428.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-write/CHANGELOG.md b/clients/client-timestream-write/CHANGELOG.md
index db3d690af61fc..b51b2415ec7b3 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-timestream-write
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 2dd051aaf125f..ef2e120222ca1 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.427.0",
+ "version": "3.428.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-tnb/CHANGELOG.md b/clients/client-tnb/CHANGELOG.md
index 7889117fbec5b..5aa29df88cc1c 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-tnb
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 673f8a4a5e81b..fef6901906c46 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.427.0",
+ "version": "3.428.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-transcribe-streaming/CHANGELOG.md b/clients/client-transcribe-streaming/CHANGELOG.md
index 463e57afb213a..164322ea3293f 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-transcribe-streaming
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 b722c41d76440..f7aae3dc7fde7 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.427.0",
+ "version": "3.428.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-transcribe/CHANGELOG.md b/clients/client-transcribe/CHANGELOG.md
index 40f5f151db737..b23af5191be26 100644
--- a/clients/client-transcribe/CHANGELOG.md
+++ b/clients/client-transcribe/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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+
+### Features
+
+* **client-transcribe:** This release is to enable m4a format to customers ([8c24c28](https://github.com/aws/aws-sdk-js-v3/commit/8c24c2881d77f0ef0d3f68c4fd7e748a146b4d9b))
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 a4429b612be90..e576bbb1911dc 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.427.0",
+ "version": "3.428.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-transfer/CHANGELOG.md b/clients/client-transfer/CHANGELOG.md
index e31dcf15a8737..e17f1a5cf3780 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-transfer
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
diff --git a/clients/client-transfer/package.json b/clients/client-transfer/package.json
index 188977d099536..1c70467dea75b 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.427.0",
+ "version": "3.428.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-translate/CHANGELOG.md b/clients/client-translate/CHANGELOG.md
index 5644e54e42b43..5f5db39215dbc 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-translate
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 f2ee1b16b35f6..9234b46bc0d00 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.427.0",
+ "version": "3.428.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-verifiedpermissions/CHANGELOG.md b/clients/client-verifiedpermissions/CHANGELOG.md
index eb5c676ec251a..0c9d164b1661f 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-verifiedpermissions
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 b1cc0dbb7923a..2aa2573fd99e0 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.427.0",
+ "version": "3.428.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-voice-id/CHANGELOG.md b/clients/client-voice-id/CHANGELOG.md
index a7cb50b86793a..5fa95413f8745 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-voice-id
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 b6c4a2eef7da6..4dc28162005ec 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.427.0",
+ "version": "3.428.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-vpc-lattice/CHANGELOG.md b/clients/client-vpc-lattice/CHANGELOG.md
index d63dfc47b2494..b5d9a86b0bcb0 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-vpc-lattice
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 101a2f2bba1a5..7f14db50bab9b 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.427.0",
+ "version": "3.428.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-waf-regional/CHANGELOG.md b/clients/client-waf-regional/CHANGELOG.md
index 70ba131cb5dd1..e5fc8dbdfdef3 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-waf-regional
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 872ccdccc87a6..032b776bd91a4 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.427.0",
+ "version": "3.428.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-waf/CHANGELOG.md b/clients/client-waf/CHANGELOG.md
index 0ba826b5a7cbe..190b40d2a483d 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-waf
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 18be953dc0603..1d1a40e086400 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.427.0",
+ "version": "3.428.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-wafv2/CHANGELOG.md b/clients/client-wafv2/CHANGELOG.md
index dd6daac83980f..52106642bcfe4 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-wafv2
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 8d315842369cf..7d526273b2b07 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.427.0",
+ "version": "3.428.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-wellarchitected/CHANGELOG.md b/clients/client-wellarchitected/CHANGELOG.md
index a3a7cc98803b9..5168c1343b419 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-wellarchitected
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 9db1d26e699bb..988c77d6670c9 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.427.0",
+ "version": "3.428.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-wisdom/CHANGELOG.md b/clients/client-wisdom/CHANGELOG.md
index e86a072e13475..0b5226325bc0d 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-wisdom
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 2841c20e622cf..4cc5069366ddc 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.427.0",
+ "version": "3.428.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-workdocs/CHANGELOG.md b/clients/client-workdocs/CHANGELOG.md
index 00b38014463c1..f7fda0f811a85 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-workdocs
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 a231b89c88bb9..edb48335cdcb8 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.427.0",
+ "version": "3.428.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-worklink/CHANGELOG.md b/clients/client-worklink/CHANGELOG.md
index a123235119803..4955a895895c6 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-worklink
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 827dace9d08a1..eabf6f60e4a3c 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.427.0",
+ "version": "3.428.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-workmail/CHANGELOG.md b/clients/client-workmail/CHANGELOG.md
index c99c776f30e9d..dae1f8f2d6ecf 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-workmail
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 9ff9776188bd8..b45a90314ddb1 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.427.0",
+ "version": "3.428.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-workmailmessageflow/CHANGELOG.md b/clients/client-workmailmessageflow/CHANGELOG.md
index 2accd65d482c9..ed878ece26403 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-workmailmessageflow
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 429633a2d7113..cc80cca461f6c 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.427.0",
+ "version": "3.428.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-workspaces-web/CHANGELOG.md b/clients/client-workspaces-web/CHANGELOG.md
index 2f0a6873dd224..0749fa24dffc9 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-workspaces-web
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 ca2dfe6df490f..9c8e649a81d70 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.427.0",
+ "version": "3.428.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-workspaces/CHANGELOG.md b/clients/client-workspaces/CHANGELOG.md
index 9054e002069d0..0032c0c302b02 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-workspaces
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 7a1a609d021cc..f2b62ecbda415 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.427.0",
+ "version": "3.428.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-xray/CHANGELOG.md b/clients/client-xray/CHANGELOG.md
index d9ffec8a78201..3e27ee83ac677 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/client-xray
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 e6b86f304d67f..a95c22f64eeb8 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.427.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/lerna.json b/lerna.json
index 4eedf3937c862..841d1489232d3 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.427.0",
+ "version": "3.428.0",
"npmClient": "yarn",
"useWorkspaces": true,
"command": {
diff --git a/lib/lib-dynamodb/CHANGELOG.md b/lib/lib-dynamodb/CHANGELOG.md
index a14b98a2d57fc..968b0f4974eaf 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+
+### Bug Fixes
+
+* **lib-dynamodb:** add e2e suite and bug fixes for lib-dynamodb ([#5306](https://github.com/aws/aws-sdk-js-v3/issues/5306)) ([2fe0a88](https://github.com/aws/aws-sdk-js-v3/commit/2fe0a883f8e5bb8ab855874072be62bc07441762))
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 77885868d7333..8634a15c05f30 100644
--- a/lib/lib-dynamodb/package.json
+++ b/lib/lib-dynamodb/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/lib-dynamodb",
- "version": "3.427.0",
+ "version": "3.428.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 f77b4bb5f68ce..93d37ec76ef6d 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/lib-storage
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 e1fb32c4c7b97..2dbea555817b8 100644
--- a/lib/lib-storage/package.json
+++ b/lib/lib-storage/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/lib-storage",
- "version": "3.427.0",
+ "version": "3.428.0",
"description": "Storage higher order operation",
"main": "./dist-cjs/index.js",
"module": "./dist-es/index.js",
diff --git a/packages/body-checksum-browser/CHANGELOG.md b/packages/body-checksum-browser/CHANGELOG.md
index 633372a08c3f3..396bdf148aa5e 100644
--- a/packages/body-checksum-browser/CHANGELOG.md
+++ b/packages/body-checksum-browser/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/body-checksum-browser
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/body-checksum-browser
diff --git a/packages/body-checksum-browser/package.json b/packages/body-checksum-browser/package.json
index 5bf7358c38bf9..0339d79591119 100644
--- a/packages/body-checksum-browser/package.json
+++ b/packages/body-checksum-browser/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/body-checksum-browser",
- "version": "3.425.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/packages/body-checksum-node/CHANGELOG.md b/packages/body-checksum-node/CHANGELOG.md
index a5aca155e356c..cc9d9052fe95e 100644
--- a/packages/body-checksum-node/CHANGELOG.md
+++ b/packages/body-checksum-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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/body-checksum-node
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/body-checksum-node
diff --git a/packages/body-checksum-node/package.json b/packages/body-checksum-node/package.json
index 043610bdc4980..3c8ae45d7fd3c 100644
--- a/packages/body-checksum-node/package.json
+++ b/packages/body-checksum-node/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/body-checksum-node",
- "version": "3.425.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/packages/cloudfront-signer/CHANGELOG.md b/packages/cloudfront-signer/CHANGELOG.md
index 87df43529dce1..d1718f54d8d6d 100644
--- a/packages/cloudfront-signer/CHANGELOG.md
+++ b/packages/cloudfront-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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/cloudfront-signer
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/cloudfront-signer
diff --git a/packages/cloudfront-signer/package.json b/packages/cloudfront-signer/package.json
index 258f7d0c41ffe..3c9d8781aadf3 100644
--- a/packages/cloudfront-signer/package.json
+++ b/packages/cloudfront-signer/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/cloudfront-signer",
- "version": "3.425.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/packages/credential-provider-cognito-identity/CHANGELOG.md b/packages/credential-provider-cognito-identity/CHANGELOG.md
index 2296fd6bb66c9..6094044a25cc2 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/credential-provider-cognito-identity
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 e6aecb405df69..ab2ca8d2242af 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.427.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/packages/credential-provider-env/CHANGELOG.md b/packages/credential-provider-env/CHANGELOG.md
index 779e46c166f6b..758b505b52793 100644
--- a/packages/credential-provider-env/CHANGELOG.md
+++ b/packages/credential-provider-env/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/credential-provider-env
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/credential-provider-env
diff --git a/packages/credential-provider-env/package.json b/packages/credential-provider-env/package.json
index cc9c795dcf6cd..e890b0534fb1a 100644
--- a/packages/credential-provider-env/package.json
+++ b/packages/credential-provider-env/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/credential-provider-env",
- "version": "3.425.0",
+ "version": "3.428.0",
"description": "AWS credential provider that sources credentials from known environment variables",
"main": "./dist-cjs/index.js",
"module": "./dist-es/index.js",
diff --git a/packages/credential-provider-http/CHANGELOG.md b/packages/credential-provider-http/CHANGELOG.md
index 5a02105b9a071..74ea01e449496 100644
--- a/packages/credential-provider-http/CHANGELOG.md
+++ b/packages/credential-provider-http/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/credential-provider-http
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/credential-provider-http
diff --git a/packages/credential-provider-http/package.json b/packages/credential-provider-http/package.json
index f414a13ca06e1..d609c03a3fa42 100644
--- a/packages/credential-provider-http/package.json
+++ b/packages/credential-provider-http/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/credential-provider-http",
- "version": "3.425.0",
+ "version": "3.428.0",
"description": "AWS credential provider for containers and HTTP sources",
"main": "./dist-cjs/index.js",
"module": "./dist-es/index.js",
diff --git a/packages/credential-provider-ini/CHANGELOG.md b/packages/credential-provider-ini/CHANGELOG.md
index d2ce7e2daa4b9..8909fab4ed45d 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/credential-provider-ini
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 8f0bc0dda3a4a..f1b1557f1ad23 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.427.0",
+ "version": "3.428.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 b5a9d8fff7fe3..5bab0317675fe 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/credential-provider-node
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 342dc13b79944..beebdf135bd5b 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.427.0",
+ "version": "3.428.0",
"description": "AWS credential provider that sources credentials from a Node.JS environment. ",
"engines": {
"node": ">=14.0.0"
diff --git a/packages/credential-provider-process/CHANGELOG.md b/packages/credential-provider-process/CHANGELOG.md
index d0dbc1225ce45..b5bb64c122a72 100644
--- a/packages/credential-provider-process/CHANGELOG.md
+++ b/packages/credential-provider-process/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/credential-provider-process
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/credential-provider-process
diff --git a/packages/credential-provider-process/package.json b/packages/credential-provider-process/package.json
index 746b85c4aae4f..79465090d8126 100644
--- a/packages/credential-provider-process/package.json
+++ b/packages/credential-provider-process/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/credential-provider-process",
- "version": "3.425.0",
+ "version": "3.428.0",
"description": "AWS credential provider that sources credential_process from ~/.aws/credentials and ~/.aws/config",
"main": "./dist-cjs/index.js",
"module": "./dist-es/index.js",
diff --git a/packages/credential-provider-sso/CHANGELOG.md b/packages/credential-provider-sso/CHANGELOG.md
index 3e67ec77cac12..982d872fa5bfa 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/credential-provider-sso
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 589ce3496276c..4cd27cfca3d73 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.427.0",
+ "version": "3.428.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-provider-web-identity/CHANGELOG.md b/packages/credential-provider-web-identity/CHANGELOG.md
index 01bb0fc4bd096..8ce803d754734 100644
--- a/packages/credential-provider-web-identity/CHANGELOG.md
+++ b/packages/credential-provider-web-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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/credential-provider-web-identity
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/credential-provider-web-identity
diff --git a/packages/credential-provider-web-identity/package.json b/packages/credential-provider-web-identity/package.json
index 66d9b2344bb1f..da3f004d41ddb 100644
--- a/packages/credential-provider-web-identity/package.json
+++ b/packages/credential-provider-web-identity/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/credential-provider-web-identity",
- "version": "3.425.0",
+ "version": "3.428.0",
"description": "AWS credential provider that calls STS assumeRole 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 dafdeec31dd78..f84a98ff5f3ed 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/credential-providers
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 43221d30139ac..61f289e0787e4 100644
--- a/packages/credential-providers/package.json
+++ b/packages/credential-providers/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/credential-providers",
- "version": "3.427.0",
+ "version": "3.428.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/eventstream-handler-node/CHANGELOG.md b/packages/eventstream-handler-node/CHANGELOG.md
index 581275b2e6cf9..e2d8b1f459899 100644
--- a/packages/eventstream-handler-node/CHANGELOG.md
+++ b/packages/eventstream-handler-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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/eventstream-handler-node
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/eventstream-handler-node
diff --git a/packages/eventstream-handler-node/package.json b/packages/eventstream-handler-node/package.json
index b78f6528c0e1f..a691cfedaa365 100644
--- a/packages/eventstream-handler-node/package.json
+++ b/packages/eventstream-handler-node/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/eventstream-handler-node",
- "version": "3.425.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/packages/karma-credential-loader/CHANGELOG.md b/packages/karma-credential-loader/CHANGELOG.md
index 20e4723a16436..e2251398faedb 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/karma-credential-loader
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 a2b34a438ae66..9e685b8960fd0 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.427.0",
+ "version": "3.428.0",
"private": true,
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
diff --git a/packages/middleware-api-key/CHANGELOG.md b/packages/middleware-api-key/CHANGELOG.md
index e240b2105ef81..ccf11f5ab8b3b 100644
--- a/packages/middleware-api-key/CHANGELOG.md
+++ b/packages/middleware-api-key/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/middleware-api-key
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/middleware-api-key
diff --git a/packages/middleware-api-key/package.json b/packages/middleware-api-key/package.json
index 49ebbdb118631..1cadb2fd15979 100644
--- a/packages/middleware-api-key/package.json
+++ b/packages/middleware-api-key/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/middleware-api-key",
- "version": "3.425.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/packages/middleware-bucket-endpoint/CHANGELOG.md b/packages/middleware-bucket-endpoint/CHANGELOG.md
index 6f0f37966146d..bf9b5196ac461 100644
--- a/packages/middleware-bucket-endpoint/CHANGELOG.md
+++ b/packages/middleware-bucket-endpoint/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/middleware-bucket-endpoint
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/middleware-bucket-endpoint
diff --git a/packages/middleware-bucket-endpoint/package.json b/packages/middleware-bucket-endpoint/package.json
index 2a48b7bdce06d..660ece9759a19 100644
--- a/packages/middleware-bucket-endpoint/package.json
+++ b/packages/middleware-bucket-endpoint/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/middleware-bucket-endpoint",
- "version": "3.425.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/packages/middleware-endpoint-discovery/CHANGELOG.md b/packages/middleware-endpoint-discovery/CHANGELOG.md
index d0df24d5df920..e53a2f1635241 100644
--- a/packages/middleware-endpoint-discovery/CHANGELOG.md
+++ b/packages/middleware-endpoint-discovery/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/middleware-endpoint-discovery
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/middleware-endpoint-discovery
diff --git a/packages/middleware-endpoint-discovery/package.json b/packages/middleware-endpoint-discovery/package.json
index fcd60e737cf7f..78c3c9f9d7001 100644
--- a/packages/middleware-endpoint-discovery/package.json
+++ b/packages/middleware-endpoint-discovery/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/middleware-endpoint-discovery",
- "version": "3.425.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/packages/middleware-eventstream/CHANGELOG.md b/packages/middleware-eventstream/CHANGELOG.md
index d7b6ebad8e331..1f1318ac4fac9 100644
--- a/packages/middleware-eventstream/CHANGELOG.md
+++ b/packages/middleware-eventstream/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/middleware-eventstream
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/middleware-eventstream
diff --git a/packages/middleware-eventstream/package.json b/packages/middleware-eventstream/package.json
index 2204cf575c7b6..76df8ed85b856 100644
--- a/packages/middleware-eventstream/package.json
+++ b/packages/middleware-eventstream/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/middleware-eventstream",
- "version": "3.425.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/packages/middleware-expect-continue/CHANGELOG.md b/packages/middleware-expect-continue/CHANGELOG.md
index a303548b1b156..ca8ccb5de68e7 100644
--- a/packages/middleware-expect-continue/CHANGELOG.md
+++ b/packages/middleware-expect-continue/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/middleware-expect-continue
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/middleware-expect-continue
diff --git a/packages/middleware-expect-continue/package.json b/packages/middleware-expect-continue/package.json
index c57d13892ee3b..5226ace695bcb 100644
--- a/packages/middleware-expect-continue/package.json
+++ b/packages/middleware-expect-continue/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/middleware-expect-continue",
- "version": "3.425.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/packages/middleware-flexible-checksums/CHANGELOG.md b/packages/middleware-flexible-checksums/CHANGELOG.md
index 87c3440e550c8..eb39f5624e3ee 100644
--- a/packages/middleware-flexible-checksums/CHANGELOG.md
+++ b/packages/middleware-flexible-checksums/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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+
+### Bug Fixes
+
+* **middleware-flexible-checksums:** skip checksum validation for s3 whole-object multipart GET ([#5345](https://github.com/aws/aws-sdk-js-v3/issues/5345)) ([6a6a75e](https://github.com/aws/aws-sdk-js-v3/commit/6a6a75e69dbc05750cab0ce83c2235f87c75b922))
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/middleware-flexible-checksums
diff --git a/packages/middleware-flexible-checksums/package.json b/packages/middleware-flexible-checksums/package.json
index 63341c7187835..85f8aea33caaa 100644
--- a/packages/middleware-flexible-checksums/package.json
+++ b/packages/middleware-flexible-checksums/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/middleware-flexible-checksums",
- "version": "3.425.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/packages/middleware-host-header/CHANGELOG.md b/packages/middleware-host-header/CHANGELOG.md
index 1f4d5aa7ce7f7..3053a7dea5593 100644
--- a/packages/middleware-host-header/CHANGELOG.md
+++ b/packages/middleware-host-header/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/middleware-host-header
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/middleware-host-header
diff --git a/packages/middleware-host-header/package.json b/packages/middleware-host-header/package.json
index 741b86aa38aaa..b8f83b3bd9925 100644
--- a/packages/middleware-host-header/package.json
+++ b/packages/middleware-host-header/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/middleware-host-header",
- "version": "3.425.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/packages/middleware-location-constraint/CHANGELOG.md b/packages/middleware-location-constraint/CHANGELOG.md
index acb54e94ff709..ae6e245493041 100644
--- a/packages/middleware-location-constraint/CHANGELOG.md
+++ b/packages/middleware-location-constraint/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/middleware-location-constraint
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/middleware-location-constraint
diff --git a/packages/middleware-location-constraint/package.json b/packages/middleware-location-constraint/package.json
index b9b26d87a7966..409cfa3155edd 100644
--- a/packages/middleware-location-constraint/package.json
+++ b/packages/middleware-location-constraint/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/middleware-location-constraint",
- "version": "3.425.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/packages/middleware-logger/CHANGELOG.md b/packages/middleware-logger/CHANGELOG.md
index 6a1f98489b4e5..edabfd5aa232f 100644
--- a/packages/middleware-logger/CHANGELOG.md
+++ b/packages/middleware-logger/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/middleware-logger
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/middleware-logger
diff --git a/packages/middleware-logger/package.json b/packages/middleware-logger/package.json
index a8705f04d0a23..cb6ba001c973f 100644
--- a/packages/middleware-logger/package.json
+++ b/packages/middleware-logger/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/middleware-logger",
- "version": "3.425.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/packages/middleware-recursion-detection/CHANGELOG.md b/packages/middleware-recursion-detection/CHANGELOG.md
index 3b3eab38ccf94..797e450b3ee20 100644
--- a/packages/middleware-recursion-detection/CHANGELOG.md
+++ b/packages/middleware-recursion-detection/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/middleware-recursion-detection
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/middleware-recursion-detection
diff --git a/packages/middleware-recursion-detection/package.json b/packages/middleware-recursion-detection/package.json
index eb878457593ba..be0d29b6fa68d 100644
--- a/packages/middleware-recursion-detection/package.json
+++ b/packages/middleware-recursion-detection/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/middleware-recursion-detection",
- "version": "3.425.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/packages/middleware-sdk-api-gateway/CHANGELOG.md b/packages/middleware-sdk-api-gateway/CHANGELOG.md
index 1651e8d04c430..d3169c9c9c2df 100644
--- a/packages/middleware-sdk-api-gateway/CHANGELOG.md
+++ b/packages/middleware-sdk-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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/middleware-sdk-api-gateway
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/middleware-sdk-api-gateway
diff --git a/packages/middleware-sdk-api-gateway/package.json b/packages/middleware-sdk-api-gateway/package.json
index b24904a452521..aeecc5e37b8ce 100644
--- a/packages/middleware-sdk-api-gateway/package.json
+++ b/packages/middleware-sdk-api-gateway/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/middleware-sdk-api-gateway",
- "version": "3.425.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/packages/middleware-sdk-ec2/CHANGELOG.md b/packages/middleware-sdk-ec2/CHANGELOG.md
index a85d4ec0d5674..4d81f3e6f4411 100644
--- a/packages/middleware-sdk-ec2/CHANGELOG.md
+++ b/packages/middleware-sdk-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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/middleware-sdk-ec2
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/middleware-sdk-ec2
diff --git a/packages/middleware-sdk-ec2/package.json b/packages/middleware-sdk-ec2/package.json
index 60a36b3ca2ab5..d5c808a554ff1 100644
--- a/packages/middleware-sdk-ec2/package.json
+++ b/packages/middleware-sdk-ec2/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/middleware-sdk-ec2",
- "version": "3.425.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/packages/middleware-sdk-glacier/CHANGELOG.md b/packages/middleware-sdk-glacier/CHANGELOG.md
index bc27cd501a716..323174dd46679 100644
--- a/packages/middleware-sdk-glacier/CHANGELOG.md
+++ b/packages/middleware-sdk-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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/middleware-sdk-glacier
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/middleware-sdk-glacier
diff --git a/packages/middleware-sdk-glacier/package.json b/packages/middleware-sdk-glacier/package.json
index f20744d1cf21b..23f3bf651595e 100644
--- a/packages/middleware-sdk-glacier/package.json
+++ b/packages/middleware-sdk-glacier/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/middleware-sdk-glacier",
- "version": "3.425.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/packages/middleware-sdk-machinelearning/CHANGELOG.md b/packages/middleware-sdk-machinelearning/CHANGELOG.md
index 3e217f9814253..dc7e54d25b841 100644
--- a/packages/middleware-sdk-machinelearning/CHANGELOG.md
+++ b/packages/middleware-sdk-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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/middleware-sdk-machinelearning
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
diff --git a/packages/middleware-sdk-machinelearning/package.json b/packages/middleware-sdk-machinelearning/package.json
index f76e1f97a6e3d..72e1a08f276a6 100644
--- a/packages/middleware-sdk-machinelearning/package.json
+++ b/packages/middleware-sdk-machinelearning/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/middleware-sdk-machinelearning",
- "version": "3.427.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/packages/middleware-sdk-rds/CHANGELOG.md b/packages/middleware-sdk-rds/CHANGELOG.md
index 7dd31bb593a6e..d8c5371bba183 100644
--- a/packages/middleware-sdk-rds/CHANGELOG.md
+++ b/packages/middleware-sdk-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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/middleware-sdk-rds
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/middleware-sdk-rds
diff --git a/packages/middleware-sdk-rds/package.json b/packages/middleware-sdk-rds/package.json
index 256912deff6d0..c9bf4034ad5f6 100644
--- a/packages/middleware-sdk-rds/package.json
+++ b/packages/middleware-sdk-rds/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/middleware-sdk-rds",
- "version": "3.425.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/packages/middleware-sdk-route53/CHANGELOG.md b/packages/middleware-sdk-route53/CHANGELOG.md
index ba92acdabebda..85fb4a2eb1ba0 100644
--- a/packages/middleware-sdk-route53/CHANGELOG.md
+++ b/packages/middleware-sdk-route53/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/middleware-sdk-route53
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/middleware-sdk-route53
diff --git a/packages/middleware-sdk-route53/package.json b/packages/middleware-sdk-route53/package.json
index b888c31a83e98..5a3c89d0918b5 100644
--- a/packages/middleware-sdk-route53/package.json
+++ b/packages/middleware-sdk-route53/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/middleware-sdk-route53",
- "version": "3.425.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/packages/middleware-sdk-s3-control/CHANGELOG.md b/packages/middleware-sdk-s3-control/CHANGELOG.md
index 80732f4b9a1c1..0185fb1bdbfdd 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/middleware-sdk-s3-control
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 7f3ce85a3a744..e6da893b98f7c 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.427.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/packages/middleware-sdk-s3/CHANGELOG.md b/packages/middleware-sdk-s3/CHANGELOG.md
index 347692d242b61..9ba91f12b52f9 100644
--- a/packages/middleware-sdk-s3/CHANGELOG.md
+++ b/packages/middleware-sdk-s3/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/middleware-sdk-s3
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
diff --git a/packages/middleware-sdk-s3/package.json b/packages/middleware-sdk-s3/package.json
index aa8687e482a6c..57294cd0b90c2 100644
--- a/packages/middleware-sdk-s3/package.json
+++ b/packages/middleware-sdk-s3/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/middleware-sdk-s3",
- "version": "3.427.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/packages/middleware-sdk-sqs/CHANGELOG.md b/packages/middleware-sdk-sqs/CHANGELOG.md
index 76db15a88321f..0e026020c57c6 100644
--- a/packages/middleware-sdk-sqs/CHANGELOG.md
+++ b/packages/middleware-sdk-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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/middleware-sdk-sqs
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/middleware-sdk-sqs
diff --git a/packages/middleware-sdk-sqs/package.json b/packages/middleware-sdk-sqs/package.json
index 32cf3b0b699cd..f615f49e57783 100644
--- a/packages/middleware-sdk-sqs/package.json
+++ b/packages/middleware-sdk-sqs/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/middleware-sdk-sqs",
- "version": "3.425.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/packages/middleware-sdk-sts/CHANGELOG.md b/packages/middleware-sdk-sts/CHANGELOG.md
index 74a78819fb58f..652bd6a34d124 100644
--- a/packages/middleware-sdk-sts/CHANGELOG.md
+++ b/packages/middleware-sdk-sts/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/middleware-sdk-sts
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/middleware-sdk-sts
diff --git a/packages/middleware-sdk-sts/package.json b/packages/middleware-sdk-sts/package.json
index dbae6263eee98..76b6b2108a242 100644
--- a/packages/middleware-sdk-sts/package.json
+++ b/packages/middleware-sdk-sts/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/middleware-sdk-sts",
- "version": "3.425.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/packages/middleware-sdk-transcribe-streaming/CHANGELOG.md b/packages/middleware-sdk-transcribe-streaming/CHANGELOG.md
index ebc32a683ce5b..11039eab78822 100644
--- a/packages/middleware-sdk-transcribe-streaming/CHANGELOG.md
+++ b/packages/middleware-sdk-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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/middleware-sdk-transcribe-streaming
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/middleware-sdk-transcribe-streaming
diff --git a/packages/middleware-sdk-transcribe-streaming/package.json b/packages/middleware-sdk-transcribe-streaming/package.json
index 014338482f3f5..614952ca3d5d6 100644
--- a/packages/middleware-sdk-transcribe-streaming/package.json
+++ b/packages/middleware-sdk-transcribe-streaming/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/middleware-sdk-transcribe-streaming",
- "version": "3.425.0",
+ "version": "3.428.0",
"main": "./dist-cjs/index.js",
"module": "./dist-es/index.js",
"types": "./dist-types/index.d.ts",
diff --git a/packages/middleware-signing/CHANGELOG.md b/packages/middleware-signing/CHANGELOG.md
index e38a3158e8d8c..a0abef5d03fae 100644
--- a/packages/middleware-signing/CHANGELOG.md
+++ b/packages/middleware-signing/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/middleware-signing
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/middleware-signing
diff --git a/packages/middleware-signing/package.json b/packages/middleware-signing/package.json
index 5587c98906bfe..7ac4315a91f85 100644
--- a/packages/middleware-signing/package.json
+++ b/packages/middleware-signing/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/middleware-signing",
- "version": "3.425.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/packages/middleware-ssec/CHANGELOG.md b/packages/middleware-ssec/CHANGELOG.md
index 44c4c7e488ef5..5ea6959a4216b 100644
--- a/packages/middleware-ssec/CHANGELOG.md
+++ b/packages/middleware-ssec/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/middleware-ssec
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/middleware-ssec
diff --git a/packages/middleware-ssec/package.json b/packages/middleware-ssec/package.json
index e902268ba5f0a..563d29e8f8e28 100644
--- a/packages/middleware-ssec/package.json
+++ b/packages/middleware-ssec/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/middleware-ssec",
- "version": "3.425.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/packages/middleware-token/CHANGELOG.md b/packages/middleware-token/CHANGELOG.md
index 34509fea86511..9a30f33aea7c0 100644
--- a/packages/middleware-token/CHANGELOG.md
+++ b/packages/middleware-token/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/middleware-token
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**Note:** Version bump only for package @aws-sdk/middleware-token
diff --git a/packages/middleware-token/package.json b/packages/middleware-token/package.json
index 13217e50fca6d..6ae32946d6246 100644
--- a/packages/middleware-token/package.json
+++ b/packages/middleware-token/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/middleware-token",
- "version": "3.427.0",
+ "version": "3.428.0",
"description": "Middleware and Plugin for setting token authentication",
"main": "./dist-cjs/index.js",
"module": "./dist-es/index.js",
diff --git a/packages/middleware-user-agent/CHANGELOG.md b/packages/middleware-user-agent/CHANGELOG.md
index 04afa1db87feb..f527d363b801e 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/middleware-user-agent
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 92a5c3fa62523..5ec162770187d 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.427.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/packages/middleware-websocket/CHANGELOG.md b/packages/middleware-websocket/CHANGELOG.md
index e5869c5bd636d..be85ea606f4af 100644
--- a/packages/middleware-websocket/CHANGELOG.md
+++ b/packages/middleware-websocket/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/middleware-websocket
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/middleware-websocket
diff --git a/packages/middleware-websocket/package.json b/packages/middleware-websocket/package.json
index 09113737ca8d5..61218f6f86932 100644
--- a/packages/middleware-websocket/package.json
+++ b/packages/middleware-websocket/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/middleware-websocket",
- "version": "3.425.0",
+ "version": "3.428.0",
"main": "./dist-cjs/index.js",
"module": "./dist-es/index.js",
"types": "./dist-types/index.d.ts",
diff --git a/packages/polly-request-presigner/CHANGELOG.md b/packages/polly-request-presigner/CHANGELOG.md
index 78cfacf135be4..89a0c4cdc5332 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/polly-request-presigner
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 15c6c1298b029..2f50107da23b3 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.427.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/packages/rds-signer/CHANGELOG.md b/packages/rds-signer/CHANGELOG.md
index 4c3f0a3f2ee05..90b469a84d5d8 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/rds-signer
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 67abaff32845b..c4613888425ec 100644
--- a/packages/rds-signer/package.json
+++ b/packages/rds-signer/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/rds-signer",
- "version": "3.427.0",
+ "version": "3.428.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/region-config-resolver/CHANGELOG.md b/packages/region-config-resolver/CHANGELOG.md
index 801d9c77d64b4..225162ce5830d 100644
--- a/packages/region-config-resolver/CHANGELOG.md
+++ b/packages/region-config-resolver/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/region-config-resolver
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/region-config-resolver
diff --git a/packages/region-config-resolver/package.json b/packages/region-config-resolver/package.json
index d7331a9612251..530b5770afda0 100644
--- a/packages/region-config-resolver/package.json
+++ b/packages/region-config-resolver/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/region-config-resolver",
- "version": "3.425.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/packages/s3-presigned-post/CHANGELOG.md b/packages/s3-presigned-post/CHANGELOG.md
index 27328563b52b3..ea4478427254a 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/s3-presigned-post
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 077f842ed45ec..cfcb8c29dc126 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.427.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/packages/s3-request-presigner/CHANGELOG.md b/packages/s3-request-presigner/CHANGELOG.md
index 206337f80764b..bdd41f137ad1a 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/s3-request-presigner
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 c48627e8f7529..e23bf65340f76 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.427.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/packages/sha256-tree-hash/CHANGELOG.md b/packages/sha256-tree-hash/CHANGELOG.md
index bf23304d3ac28..99d7639f0168f 100644
--- a/packages/sha256-tree-hash/CHANGELOG.md
+++ b/packages/sha256-tree-hash/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/sha256-tree-hash
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/sha256-tree-hash
diff --git a/packages/sha256-tree-hash/package.json b/packages/sha256-tree-hash/package.json
index f335a794ff1ba..563524e2901cd 100644
--- a/packages/sha256-tree-hash/package.json
+++ b/packages/sha256-tree-hash/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/sha256-tree-hash",
- "version": "3.425.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/packages/signature-v4-crt/CHANGELOG.md b/packages/signature-v4-crt/CHANGELOG.md
index 20efd8c4cb049..00100af7123ce 100644
--- a/packages/signature-v4-crt/CHANGELOG.md
+++ b/packages/signature-v4-crt/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/signature-v4-crt
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/signature-v4-crt
diff --git a/packages/signature-v4-crt/package.json b/packages/signature-v4-crt/package.json
index 889cb9d54d8be..87f1d19ca27c9 100644
--- a/packages/signature-v4-crt/package.json
+++ b/packages/signature-v4-crt/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/signature-v4-crt",
- "version": "3.425.0",
+ "version": "3.428.0",
"description": "A revision of AWS Signature V4 request signer based on AWS Common Runtime https://github.com/awslabs/aws-crt-nodejs",
"main": "./dist-cjs/index.js",
"module": "./dist-es/index.js",
diff --git a/packages/signature-v4-multi-region/CHANGELOG.md b/packages/signature-v4-multi-region/CHANGELOG.md
index c9188a1995d33..9f448163cc22a 100644
--- a/packages/signature-v4-multi-region/CHANGELOG.md
+++ b/packages/signature-v4-multi-region/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/signature-v4-multi-region
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/signature-v4-multi-region
diff --git a/packages/signature-v4-multi-region/package.json b/packages/signature-v4-multi-region/package.json
index 4c5b95c8ef73f..1c91e208e57f3 100644
--- a/packages/signature-v4-multi-region/package.json
+++ b/packages/signature-v4-multi-region/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/signature-v4-multi-region",
- "version": "3.425.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/packages/smithy-client/CHANGELOG.md b/packages/smithy-client/CHANGELOG.md
index 27063f65f2b77..ae5df0a83b69e 100644
--- a/packages/smithy-client/CHANGELOG.md
+++ b/packages/smithy-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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/smithy-client
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/smithy-client
diff --git a/packages/smithy-client/package.json b/packages/smithy-client/package.json
index a01a401044cbc..a1c9dbe584bdd 100644
--- a/packages/smithy-client/package.json
+++ b/packages/smithy-client/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/smithy-client",
- "version": "3.425.0",
+ "version": "3.428.0",
"private": true,
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
diff --git a/packages/token-providers/CHANGELOG.md b/packages/token-providers/CHANGELOG.md
index 11414ca8297e4..9e96dfb2d809e 100644
--- a/packages/token-providers/CHANGELOG.md
+++ b/packages/token-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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/token-providers
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**Note:** Version bump only for package @aws-sdk/token-providers
diff --git a/packages/token-providers/package.json b/packages/token-providers/package.json
index 9824f8bab7c6e..6571b3c42c6a5 100644
--- a/packages/token-providers/package.json
+++ b/packages/token-providers/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/token-providers",
- "version": "3.427.0",
+ "version": "3.428.0",
"description": "A collection of token providers",
"main": "./dist-cjs/index.js",
"module": "./dist-es/index.js",
diff --git a/packages/types/CHANGELOG.md b/packages/types/CHANGELOG.md
index cc0c9441a1e6d..64458b68e40f4 100644
--- a/packages/types/CHANGELOG.md
+++ b/packages/types/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/types
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/types
diff --git a/packages/types/package.json b/packages/types/package.json
index 81e5806f41bd7..9c9c76ed6d57f 100755
--- a/packages/types/package.json
+++ b/packages/types/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/types",
- "version": "3.425.0",
+ "version": "3.428.0",
"main": "./dist-cjs/index.js",
"module": "./dist-es/index.js",
"types": "./dist-types/index.d.ts",
diff --git a/packages/util-create-request/CHANGELOG.md b/packages/util-create-request/CHANGELOG.md
index ceda5c930ae06..da77d3a171b98 100644
--- a/packages/util-create-request/CHANGELOG.md
+++ b/packages/util-create-request/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/util-create-request
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/util-create-request
diff --git a/packages/util-create-request/package.json b/packages/util-create-request/package.json
index e8ecb62908a7d..640ad2848575a 100644
--- a/packages/util-create-request/package.json
+++ b/packages/util-create-request/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/util-create-request",
- "version": "3.425.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/packages/util-dns/CHANGELOG.md b/packages/util-dns/CHANGELOG.md
index 5cd93d7197e69..e52ccfdf394ac 100644
--- a/packages/util-dns/CHANGELOG.md
+++ b/packages/util-dns/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/util-dns
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/util-dns
diff --git a/packages/util-dns/package.json b/packages/util-dns/package.json
index 4d024d85d0508..fd9310202c4d5 100644
--- a/packages/util-dns/package.json
+++ b/packages/util-dns/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/util-dns",
- "version": "3.425.0",
+ "version": "3.428.0",
"description": "Implementations of DNS host resolvers.",
"main": "./dist-cjs/index.js",
"module": "./dist-es/index.js",
diff --git a/packages/util-dynamodb/CHANGELOG.md b/packages/util-dynamodb/CHANGELOG.md
index 4c2886797ed94..e25fe38605a55 100644
--- a/packages/util-dynamodb/CHANGELOG.md
+++ b/packages/util-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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+
+### Bug Fixes
+
+* **lib-dynamodb:** add e2e suite and bug fixes for lib-dynamodb ([#5306](https://github.com/aws/aws-sdk-js-v3/issues/5306)) ([2fe0a88](https://github.com/aws/aws-sdk-js-v3/commit/2fe0a883f8e5bb8ab855874072be62bc07441762))
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 b1d77ec2e673e..3ed09aca3ad12 100644
--- a/packages/util-dynamodb/package.json
+++ b/packages/util-dynamodb/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/util-dynamodb",
- "version": "3.427.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/packages/util-endpoints/CHANGELOG.md b/packages/util-endpoints/CHANGELOG.md
index cb5a744769ec0..6456232ce8aa8 100644
--- a/packages/util-endpoints/CHANGELOG.md
+++ b/packages/util-endpoints/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/util-endpoints
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**Note:** Version bump only for package @aws-sdk/util-endpoints
diff --git a/packages/util-endpoints/package.json b/packages/util-endpoints/package.json
index c7e914985b74f..dfd5a7fdf2326 100644
--- a/packages/util-endpoints/package.json
+++ b/packages/util-endpoints/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/util-endpoints",
- "version": "3.427.0",
+ "version": "3.428.0",
"description": "Utilities to help with endpoint resolution",
"main": "./dist-cjs/index.js",
"module": "./dist-es/index.js",
diff --git a/packages/util-format-url/CHANGELOG.md b/packages/util-format-url/CHANGELOG.md
index 187f0610b2650..6ebce076e70d9 100644
--- a/packages/util-format-url/CHANGELOG.md
+++ b/packages/util-format-url/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/util-format-url
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/util-format-url
diff --git a/packages/util-format-url/package.json b/packages/util-format-url/package.json
index e2546ac21f248..35dbb686f2ea9 100644
--- a/packages/util-format-url/package.json
+++ b/packages/util-format-url/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/util-format-url",
- "version": "3.425.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/packages/util-user-agent-browser/CHANGELOG.md b/packages/util-user-agent-browser/CHANGELOG.md
index 3bbd172e15dea..60cd7b4d4be64 100644
--- a/packages/util-user-agent-browser/CHANGELOG.md
+++ b/packages/util-user-agent-browser/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/util-user-agent-browser
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/util-user-agent-browser
diff --git a/packages/util-user-agent-browser/package.json b/packages/util-user-agent-browser/package.json
index c1e8bb4223598..84ac89782c18d 100644
--- a/packages/util-user-agent-browser/package.json
+++ b/packages/util-user-agent-browser/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/util-user-agent-browser",
- "version": "3.425.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/packages/util-user-agent-node/CHANGELOG.md b/packages/util-user-agent-node/CHANGELOG.md
index a8dc70651b727..9c7b3c45afca6 100644
--- a/packages/util-user-agent-node/CHANGELOG.md
+++ b/packages/util-user-agent-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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/util-user-agent-node
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/util-user-agent-node
diff --git a/packages/util-user-agent-node/package.json b/packages/util-user-agent-node/package.json
index 322684040e124..7be49184aaa6a 100644
--- a/packages/util-user-agent-node/package.json
+++ b/packages/util-user-agent-node/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/util-user-agent-node",
- "version": "3.425.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/packages/xhr-http-handler/CHANGELOG.md b/packages/xhr-http-handler/CHANGELOG.md
index 6ac9f4cbd4e7c..a524434fe4429 100644
--- a/packages/xhr-http-handler/CHANGELOG.md
+++ b/packages/xhr-http-handler/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/xhr-http-handler
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/xhr-http-handler
diff --git a/packages/xhr-http-handler/package.json b/packages/xhr-http-handler/package.json
index 53f970f3c705c..d74230d74da09 100644
--- a/packages/xhr-http-handler/package.json
+++ b/packages/xhr-http-handler/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-sdk/xhr-http-handler",
- "version": "3.425.0",
+ "version": "3.428.0",
"description": "Provides a way to make requests using XMLHttpRequest",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
diff --git a/private/aws-client-api-test/CHANGELOG.md b/private/aws-client-api-test/CHANGELOG.md
index 364b95148ec0a..115fba88fafb0 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/aws-client-api-test
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 079cb3d9ff61f..8d1157714db7e 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.427.0",
+ "version": "3.428.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 5723a8f57a183..4ad67c2ea46d9 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/aws-client-retry-test
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 579770dd99730..f50eb1e346706 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.427.0",
+ "version": "3.428.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 3bf240fe7adc5..7858efff9159a 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/aws-echo-service
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 1ca28c77fdc14..d5c26f0b9e718 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.427.0",
+ "version": "3.428.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 9c2f365ddfde7..35a02f78efc7f 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/aws-middleware-test
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 e5e66e425d1df..a20af1625d183 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.427.0",
+ "version": "3.428.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 9d9a6582d160c..a64e6ce799302 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/aws-protocoltests-ec2
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 3d531ef057b4e..e35038c6131d1 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.427.0",
+ "version": "3.428.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 751a594b92378..737a8fc4dd97f 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/aws-protocoltests-json-10
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 816ddb89e7049..934c5a8b6b089 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.427.0",
+ "version": "3.428.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 f48128988cb36..64362375ee222 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/aws-protocoltests-json
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 44603d281b819..81efbb352115e 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.427.0",
+ "version": "3.428.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 807b7ee532328..e6e1dd7ae40d4 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/aws-protocoltests-query
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 4883af9d9fb38..fe5645be605bc 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.427.0",
+ "version": "3.428.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 59e9463db7d09..ecfe5e0966285 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/aws-protocoltests-restjson
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 60a105c633c3a..229e36c119ca6 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.427.0",
+ "version": "3.428.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 0ddef113fc664..755053af9fdd2 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/aws-protocoltests-restxml
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**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 d10e0729d1d6c..c336d740ac9bc 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.427.0",
+ "version": "3.428.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-restjson-server/CHANGELOG.md b/private/aws-restjson-server/CHANGELOG.md
index 32c5ab907f2b4..f824b4cd94a56 100644
--- a/private/aws-restjson-server/CHANGELOG.md
+++ b/private/aws-restjson-server/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/aws-restjson-server
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/aws-restjson-server
diff --git a/private/aws-restjson-server/package.json b/private/aws-restjson-server/package.json
index f0903c1996ccc..c111ef5561bf3 100644
--- a/private/aws-restjson-server/package.json
+++ b/private/aws-restjson-server/package.json
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/aws-restjson-server",
"description": "@aws-sdk/aws-restjson-server server",
- "version": "3.425.0",
+ "version": "3.428.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-restjson-validation-server/CHANGELOG.md b/private/aws-restjson-validation-server/CHANGELOG.md
index f2e8725579b72..4b16520f0ef7d 100644
--- a/private/aws-restjson-validation-server/CHANGELOG.md
+++ b/private/aws-restjson-validation-server/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/aws-restjson-validation-server
+
+
+
+
+
# [3.425.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.424.0...v3.425.0) (2023-10-04)
**Note:** Version bump only for package @aws-sdk/aws-restjson-validation-server
diff --git a/private/aws-restjson-validation-server/package.json b/private/aws-restjson-validation-server/package.json
index fcb850b4ed434..89090ec444ef4 100644
--- a/private/aws-restjson-validation-server/package.json
+++ b/private/aws-restjson-validation-server/package.json
@@ -1,7 +1,7 @@
{
"name": "@aws-sdk/aws-restjson-validation-server",
"description": "@aws-sdk/aws-restjson-validation-server server",
- "version": "3.425.0",
+ "version": "3.428.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 e2a16682c57b7..cb86a2f61a598 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.428.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.427.0...v3.428.0) (2023-10-12)
+
+**Note:** Version bump only for package @aws-sdk/weather
+
+
+
+
+
# [3.427.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.426.0...v3.427.0) (2023-10-06)
**Note:** Version bump only for package @aws-sdk/weather
diff --git a/private/weather/package.json b/private/weather/package.json
index dac554f91f3be..e2957a3f61021 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.427.0",
+ "version": "3.428.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
diff --git a/yarn.lock b/yarn.lock
index 45b344ab0efc4..09a464028f492 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -93,7 +93,7 @@
tslib "^1.11.1"
"@aws-sdk/client-sts@file:clients/client-sts":
- version "3.427.0"
+ version "3.428.0"
dependencies:
"@aws-crypto/sha256-browser" "3.0.0"
"@aws-crypto/sha256-js" "3.0.0"