Skip to content

Commit 7867ee1

Browse files
authored
fix(client-s3-control): populate memberName as contextParams value (#6376)
1 parent 31e78b5 commit 7867ee1

7 files changed

+7
-7
lines changed

clients/client-s3-control/src/commands/DeleteAccessPointCommand.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export class DeleteAccessPointCommand extends $Command
9090
.ep({
9191
...commonParams,
9292
RequiresAccountId: { type: "staticContextParams", value: true },
93-
AccessPointName: { type: "contextParams", name: "AccessPointName" },
93+
AccessPointName: { type: "contextParams", name: "Name" },
9494
AccountId: { type: "contextParams", name: "AccountId" },
9595
})
9696
.m(function (this: any, Command: any, cs: any, config: S3ControlClientResolvedConfig, o: any) {

clients/client-s3-control/src/commands/DeleteAccessPointPolicyCommand.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ export class DeleteAccessPointPolicyCommand extends $Command
8686
.ep({
8787
...commonParams,
8888
RequiresAccountId: { type: "staticContextParams", value: true },
89-
AccessPointName: { type: "contextParams", name: "AccessPointName" },
89+
AccessPointName: { type: "contextParams", name: "Name" },
9090
AccountId: { type: "contextParams", name: "AccountId" },
9191
})
9292
.m(function (this: any, Command: any, cs: any, config: S3ControlClientResolvedConfig, o: any) {

clients/client-s3-control/src/commands/GetAccessPointCommand.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ export class GetAccessPointCommand extends $Command
111111
.ep({
112112
...commonParams,
113113
RequiresAccountId: { type: "staticContextParams", value: true },
114-
AccessPointName: { type: "contextParams", name: "AccessPointName" },
114+
AccessPointName: { type: "contextParams", name: "Name" },
115115
AccountId: { type: "contextParams", name: "AccountId" },
116116
})
117117
.m(function (this: any, Command: any, cs: any, config: S3ControlClientResolvedConfig, o: any) {

clients/client-s3-control/src/commands/GetAccessPointPolicyCommand.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ export class GetAccessPointPolicyCommand extends $Command
8686
.ep({
8787
...commonParams,
8888
RequiresAccountId: { type: "staticContextParams", value: true },
89-
AccessPointName: { type: "contextParams", name: "AccessPointName" },
89+
AccessPointName: { type: "contextParams", name: "Name" },
9090
AccountId: { type: "contextParams", name: "AccountId" },
9191
})
9292
.m(function (this: any, Command: any, cs: any, config: S3ControlClientResolvedConfig, o: any) {

clients/client-s3-control/src/commands/GetAccessPointPolicyStatusCommand.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export class GetAccessPointPolicyStatusCommand extends $Command
7777
.ep({
7878
...commonParams,
7979
RequiresAccountId: { type: "staticContextParams", value: true },
80-
AccessPointName: { type: "contextParams", name: "AccessPointName" },
80+
AccessPointName: { type: "contextParams", name: "Name" },
8181
AccountId: { type: "contextParams", name: "AccountId" },
8282
})
8383
.m(function (this: any, Command: any, cs: any, config: S3ControlClientResolvedConfig, o: any) {

clients/client-s3-control/src/commands/PutAccessPointPolicyCommand.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export class PutAccessPointPolicyCommand extends $Command
8989
.ep({
9090
...commonParams,
9191
RequiresAccountId: { type: "staticContextParams", value: true },
92-
AccessPointName: { type: "contextParams", name: "AccessPointName" },
92+
AccessPointName: { type: "contextParams", name: "Name" },
9393
AccountId: { type: "contextParams", name: "AccountId" },
9494
})
9595
.m(function (this: any, Command: any, cs: any, config: S3ControlClientResolvedConfig, o: any) {

scripts/generate-clients/config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Update this commit when taking up new changes from smithy-typescript.
22
module.exports = {
33
// Use full commit hash as we explicitly fetch it.
4-
SMITHY_TS_COMMIT: "7d4691ca45a17efbdfba4afb0a31b48edbf8ba60",
4+
SMITHY_TS_COMMIT: "fa63800730b1a7a59e231965941d2006dc031662",
55
};
66

77
if (module.exports.SMITHY_TS_COMMIT.length < 40) {

0 commit comments

Comments
 (0)