Skip to content

Commit

Permalink
[issues-1787] add AssumeRole op to presign generate list
Browse files Browse the repository at this point in the history
This resolves customer issue 1787 by adding the AssumeRole
operation to the presign autogeneration list for codegen
on the aws sdk side
  • Loading branch information
isaiahvita committed Oct 17, 2022
1 parent a3c693e commit fc4159e
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,9 @@ public class AwsHttpPresignURLClientGenerator implements GoIntegration {
ShapeId.from("com.amazonaws.s3#DeleteBucket")
),
ShapeId.from("com.amazonaws.sts#AWSSecurityTokenServiceV20110615"), SetUtils.of(
ShapeId.from("com.amazonaws.sts#GetCallerIdentity"))
ShapeId.from("com.amazonaws.sts#GetCallerIdentity"),
ShapeId.from("com.amazonaws.sts#AssumeRole")
)
);

// map of service to list of operations for which presignedURL client and operation should
Expand Down
24 changes: 24 additions & 0 deletions service/sts/api_op_AssumeRole.go

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

0 comments on commit fc4159e

Please sign in to comment.