Skip to content
This repository was archived by the owner on Jul 31, 2025. It is now read-only.

Commit b8ee473

Browse files
authored
service/s3control: Fix access-point policy operations not routing properly for S3 on Outposts (#3599)
Fixes operations: GetAccessPointPolicy, DeleteAccessPointPolicy, and PutAccessPointPolicy Reference: #3598
1 parent 32ff04d commit b8ee473

File tree

3 files changed

+139
-5
lines changed

3 files changed

+139
-5
lines changed

CHANGELOG_PENDING.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@
33
### SDK Enhancements
44

55
### SDK Bugs
6+
* `s3control`: Fixes bug in SDK that caused GetAccessPointPolicy, DeleteAccessPointPolicy, and PutAccessPointPolicy operations to not route properly for S3 on Outposts. ([#3599](https://github.com/aws/aws-sdk-go/pull/3599))
7+
* Fixes [#3598](https://github.com/aws/aws-sdk-go/issues/3598).

private/model/api/customization_passes.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -224,11 +224,11 @@ func s3ControlCustomizations(a *API) error {
224224

225225
// List of input shapes that use accesspoint names as arnable fields
226226
accessPointNameArnables := map[string]struct{}{
227-
"GetAccessPointInput": {},
228-
"DeleteAccessPointInput": {},
229-
"PutAccessPointPolicy": {},
230-
"GetAccessPointPolicy": {},
231-
"DeleteAccessPointPolicy": {},
227+
"GetAccessPointInput": {},
228+
"DeleteAccessPointInput": {},
229+
"PutAccessPointPolicyInput": {},
230+
"GetAccessPointPolicyInput": {},
231+
"DeleteAccessPointPolicyInput": {},
232232
}
233233

234234
var endpointARNShape *ShapeRef

service/s3control/api.go

Lines changed: 132 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)