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

s3: Add support for addition presigned URL operations #1747

Merged
merged 1 commit into from Jul 1, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 8 additions & 0 deletions .changelog/b9b99ba465154cc3a7e8e04101e46672.json
@@ -0,0 +1,8 @@
{
"id": "b9b99ba4-6515-4cc3-a7e8-e04101e46672",
"type": "feature",
"description": "Add presign support for HeadBucket, DeleteObject, and DeleteBucket. Fixes [#1076](https://github.com/aws/aws-sdk-go-v2/issues/1076).",
"modules": [
"service/s3"
]
}
Expand Up @@ -91,8 +91,13 @@ public class AwsHttpPresignURLClientGenerator implements GoIntegration {
ShapeId.from("com.amazonaws.s3#AmazonS3"), SetUtils.of(
ShapeId.from("com.amazonaws.s3#GetObject"),
ShapeId.from("com.amazonaws.s3#PutObject"),

ShapeId.from("com.amazonaws.s3#UploadPart"),
ShapeId.from("com.amazonaws.s3#HeadObject")

ShapeId.from("com.amazonaws.s3#HeadObject"),
ShapeId.from("com.amazonaws.s3#HeadBucket"),
ShapeId.from("com.amazonaws.s3#DeleteObject"),
ShapeId.from("com.amazonaws.s3#DeleteBucket")
),
ShapeId.from("com.amazonaws.sts#AWSSecurityTokenServiceV20110615"), SetUtils.of(
ShapeId.from("com.amazonaws.sts#GetCallerIdentity"))
Expand Down
31 changes: 31 additions & 0 deletions service/s3/api_op_DeleteBucket.go

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

31 changes: 31 additions & 0 deletions service/s3/api_op_DeleteObject.go

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

31 changes: 31 additions & 0 deletions service/s3/api_op_HeadBucket.go

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