blob: 4010cc7fa147d48b942b92eb0a9fae03b0065bb1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package sts
import "github.com/aws/aws-sdk-go/aws/request"
func init() {
initRequest = func(r *request.Request) {
switch r.Operation.Name {
case opAssumeRoleWithSAML, opAssumeRoleWithWebIdentity:
r.Handlers.Sign.Clear() // these operations are unsigned
}
}
}
|