Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

service/s3control: Fix GetAccessPointPolicy, DeleteAccessPointPolicy, and PutAccessPointPolicy operations not routing properly for S3 on Outposts #3599

Merged
merged 1 commit into from
Oct 15, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG_PENDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@
### SDK Enhancements

### SDK Bugs
* `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))
* Fixes [#3598](https://github.com/aws/aws-sdk-go/issues/3598).
10 changes: 5 additions & 5 deletions private/model/api/customization_passes.go
Original file line number Diff line number Diff line change
Expand Up @@ -224,11 +224,11 @@ func s3ControlCustomizations(a *API) error {

// List of input shapes that use accesspoint names as arnable fields
accessPointNameArnables := map[string]struct{}{
"GetAccessPointInput": {},
"DeleteAccessPointInput": {},
"PutAccessPointPolicy": {},
"GetAccessPointPolicy": {},
"DeleteAccessPointPolicy": {},
"GetAccessPointInput": {},
"DeleteAccessPointInput": {},
"PutAccessPointPolicyInput": {},
"GetAccessPointPolicyInput": {},
"DeleteAccessPointPolicyInput": {},
}

var endpointARNShape *ShapeRef
Expand Down
132 changes: 132 additions & 0 deletions service/s3control/api.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.