You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package aws
|
|
|
|
// MissingRegionError is an error that is returned if region configuration
|
|
// value was not found.
|
|
type MissingRegionError struct{}
|
|
|
|
func (*MissingRegionError) Error() string {
|
|
return "an AWS region is required, but was not found"
|
|
}
|