NewStaticV4 is similar to NewStaticV2 with similar considerations.
(id, secret, token string)
| 34 | |
| 35 | // NewStaticV4 is similar to NewStaticV2 with similar considerations. |
| 36 | func NewStaticV4(id, secret, token string) *Credentials { |
| 37 | return NewStatic(id, secret, token, SignatureV4) |
| 38 | } |
| 39 | |
| 40 | // NewStatic returns a pointer to a new Credentials object |
| 41 | // wrapping a static credentials value provider. |