Skip to content

Commit

Permalink
fix(client-s3-control): populate memberName as contextParams value
Browse files Browse the repository at this point in the history
  • Loading branch information
trivikr committed Aug 12, 2024
1 parent 0fb2a7d commit b353e25
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export class DeleteAccessPointCommand extends $Command
.ep({
...commonParams,
RequiresAccountId: { type: "staticContextParams", value: true },
AccessPointName: { type: "contextParams", name: "AccessPointName" },
AccessPointName: { type: "contextParams", name: "Name" },
AccountId: { type: "contextParams", name: "AccountId" },
})
.m(function (this: any, Command: any, cs: any, config: S3ControlClientResolvedConfig, o: any) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export class DeleteAccessPointPolicyCommand extends $Command
.ep({
...commonParams,
RequiresAccountId: { type: "staticContextParams", value: true },
AccessPointName: { type: "contextParams", name: "AccessPointName" },
AccessPointName: { type: "contextParams", name: "Name" },
AccountId: { type: "contextParams", name: "AccountId" },
})
.m(function (this: any, Command: any, cs: any, config: S3ControlClientResolvedConfig, o: any) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export class GetAccessPointCommand extends $Command
.ep({
...commonParams,
RequiresAccountId: { type: "staticContextParams", value: true },
AccessPointName: { type: "contextParams", name: "AccessPointName" },
AccessPointName: { type: "contextParams", name: "Name" },
AccountId: { type: "contextParams", name: "AccountId" },
})
.m(function (this: any, Command: any, cs: any, config: S3ControlClientResolvedConfig, o: any) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export class GetAccessPointPolicyCommand extends $Command
.ep({
...commonParams,
RequiresAccountId: { type: "staticContextParams", value: true },
AccessPointName: { type: "contextParams", name: "AccessPointName" },
AccessPointName: { type: "contextParams", name: "Name" },
AccountId: { type: "contextParams", name: "AccountId" },
})
.m(function (this: any, Command: any, cs: any, config: S3ControlClientResolvedConfig, o: any) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export class GetAccessPointPolicyStatusCommand extends $Command
.ep({
...commonParams,
RequiresAccountId: { type: "staticContextParams", value: true },
AccessPointName: { type: "contextParams", name: "AccessPointName" },
AccessPointName: { type: "contextParams", name: "Name" },
AccountId: { type: "contextParams", name: "AccountId" },
})
.m(function (this: any, Command: any, cs: any, config: S3ControlClientResolvedConfig, o: any) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export class PutAccessPointPolicyCommand extends $Command
.ep({
...commonParams,
RequiresAccountId: { type: "staticContextParams", value: true },
AccessPointName: { type: "contextParams", name: "AccessPointName" },
AccessPointName: { type: "contextParams", name: "Name" },
AccountId: { type: "contextParams", name: "AccountId" },
})
.m(function (this: any, Command: any, cs: any, config: S3ControlClientResolvedConfig, o: any) {
Expand Down

0 comments on commit b353e25

Please sign in to comment.