
godep restore pushd $GOPATH/src/github.com/appc/spec git co master popd go get go4.org/errorutil rm -rf Godeps godep save ./... git add vendor git add -f $(git ls-files --other vendor/) git co -- Godeps/LICENSES Godeps/.license_file_state Godeps/OWNERS
18 lines
508 B
Go
18 lines
508 B
Go
package aws
|
|
|
|
import "github.com/aws/aws-sdk-go/aws/awserr"
|
|
|
|
var (
|
|
// ErrMissingRegion is an error that is returned if region configuration is
|
|
// not found.
|
|
//
|
|
// @readonly
|
|
ErrMissingRegion = awserr.New("MissingRegion", "could not find region configuration", nil)
|
|
|
|
// ErrMissingEndpoint is an error that is returned if an endpoint cannot be
|
|
// resolved for a service.
|
|
//
|
|
// @readonly
|
|
ErrMissingEndpoint = awserr.New("MissingEndpoint", "'Endpoint' configuration is required for this service", nil)
|
|
)
|