mirror of
https://github.com/Luzifer/cloudkeys-go.git
synced 2024-11-10 07:00:08 +00:00
13 lines
289 B
Go
13 lines
289 B
Go
|
package cognitoidentity
|
||
|
|
||
|
import "github.com/aws/aws-sdk-go/aws/request"
|
||
|
|
||
|
func init() {
|
||
|
initRequest = func(r *request.Request) {
|
||
|
switch r.Operation.Name {
|
||
|
case opGetOpenIdToken, opGetId, opGetCredentialsForIdentity:
|
||
|
r.Handlers.Sign.Clear() // these operations are unsigned
|
||
|
}
|
||
|
}
|
||
|
}
|