vendor: update all dependencies to latest versions
This commit is contained in:
parent
8e83fb6fb9
commit
7d3a17725d
4878 changed files with 1974229 additions and 201215 deletions
|
@ -68,7 +68,7 @@ func main() {
|
|||
ddbSvc.ListTables(&dynamodb.ListTablesInput{})
|
||||
|
||||
// Setting Config's Endpoint will override the EndpointResolver. Forcing
|
||||
// the service clien to make all operation to the endpoint specified
|
||||
// the service client to make all operation to the endpoint specified
|
||||
// the in the config.
|
||||
ddbSvcLocal := dynamodb.New(sess, &aws.Config{
|
||||
Endpoint: aws.String("http://localhost:8088"),
|
||||
|
|
11
vendor/github.com/aws/aws-sdk-go/example/aws/request/customRetryer/README.md
generated
vendored
Normal file
11
vendor/github.com/aws/aws-sdk-go/example/aws/request/customRetryer/README.md
generated
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
# Using Custom Retry Strategies with the SDK
|
||||
|
||||
This example highlights how you can define a custom retry strategy for the SDK to use. The example wraps the SDK's DefaultRetryer with a set of custom rules to not retry HTTP 5xx status codes. In all other cases the custom retry strategy falls back the SDK's DefaultRetryer's functionality.
|
||||
|
||||
## Usage
|
||||
|
||||
This example will attempt to make an Amazon CloudWatch Logs PutLogEvents DescribeLogGroups API call. This example expects to retrieve credentials from the `~/.aws/credentials` file.
|
||||
|
||||
```sh
|
||||
go run ./custom_retryer.go
|
||||
```
|
75
vendor/github.com/aws/aws-sdk-go/example/aws/request/customRetryer/custom_retryer.go
generated
vendored
Normal file
75
vendor/github.com/aws/aws-sdk-go/example/aws/request/customRetryer/custom_retryer.go
generated
vendored
Normal file
|
@ -0,0 +1,75 @@
|
|||
// +build example
|
||||
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/aws/aws-sdk-go/aws"
|
||||
"github.com/aws/aws-sdk-go/aws/awserr"
|
||||
"github.com/aws/aws-sdk-go/aws/client"
|
||||
"github.com/aws/aws-sdk-go/aws/credentials"
|
||||
"github.com/aws/aws-sdk-go/aws/defaults"
|
||||
"github.com/aws/aws-sdk-go/aws/endpoints"
|
||||
"github.com/aws/aws-sdk-go/aws/request"
|
||||
"github.com/aws/aws-sdk-go/aws/session"
|
||||
"github.com/aws/aws-sdk-go/service/cloudwatchlogs"
|
||||
)
|
||||
|
||||
func main() {
|
||||
sess := session.Must(
|
||||
session.NewSession(&aws.Config{
|
||||
// Use a custom retryer to provide custom retry rules.
|
||||
Retryer: CustomRetryer{DefaultRetryer: client.DefaultRetryer{NumMaxRetries: 3}},
|
||||
|
||||
// Use the SDK's SharedCredentialsProvider directly instead of the
|
||||
// SDK's default credential chain. This ensures that the
|
||||
// application can call Config.Credentials.Expire. This is counter
|
||||
// to the SDK's default credentials chain, which will never reread
|
||||
// the shared credentials file.
|
||||
Credentials: credentials.NewCredentials(&credentials.SharedCredentialsProvider{
|
||||
Filename: defaults.SharedCredentialsFilename(),
|
||||
Profile: "default",
|
||||
}),
|
||||
Region: aws.String(endpoints.UsWest2RegionID),
|
||||
}),
|
||||
)
|
||||
// Add a request handler to the AfterRetry handler stack that is used by the
|
||||
// SDK to be executed after the SDK has determined if it will retry.
|
||||
// This handler forces the SDK's Credentials to be expired, and next call to
|
||||
// Credentials.Get will attempt to refresh the credentials.
|
||||
sess.Handlers.AfterRetry.PushBack(func(req *request.Request) {
|
||||
if aerr, ok := req.Error.(awserr.RequestFailure); ok && aerr != nil {
|
||||
if aerr.Code() == "InvalidClaimException" {
|
||||
// Force the credentials to expire based on error code. Next
|
||||
// call to Credentials.Get will attempt to refresh credentials.
|
||||
req.Config.Credentials.Expire()
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
svc := cloudwatchlogs.New(sess)
|
||||
|
||||
resp, err := svc.DescribeLogGroups(&cloudwatchlogs.DescribeLogGroupsInput{})
|
||||
|
||||
fmt.Println(resp, err)
|
||||
}
|
||||
|
||||
// CustomRetryer wraps the SDK's built in DefaultRetryer adding additional
|
||||
// custom features. Such as, no retry for 5xx status codes, and refresh
|
||||
// credentials.
|
||||
type CustomRetryer struct {
|
||||
client.DefaultRetryer
|
||||
}
|
||||
|
||||
// ShouldRetry overrides the SDK's built in DefaultRetryer adding customization
|
||||
// to not retry 5xx status codes.
|
||||
func (r CustomRetryer) ShouldRetry(req *request.Request) bool {
|
||||
if req.HTTPResponse.StatusCode >= 500 {
|
||||
// Don't retry any 5xx status codes.
|
||||
return false
|
||||
}
|
||||
|
||||
// Fallback to SDK's built in retry rules
|
||||
return r.DefaultRetryer.ShouldRetry(req)
|
||||
}
|
2
vendor/github.com/aws/aws-sdk-go/example/aws/request/withContext/README.md
generated
vendored
2
vendor/github.com/aws/aws-sdk-go/example/aws/request/withContext/README.md
generated
vendored
|
@ -4,7 +4,7 @@ Uploads a file to S3 given a bucket and object key. Also takes a duration
|
|||
value to terminate the update if it doesn't complete within that time.
|
||||
|
||||
The AWS Region needs to be provided in the AWS shared config or on the
|
||||
environment variable as `AWS_REGION`. Credentials also must be provided
|
||||
environment variable as `AWS_REGION`. Credentials also must be provided.
|
||||
Will default to shared config file, but can load from environment if provided.
|
||||
|
||||
## Usage:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue