mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-26 12:20:10 +01:00
002c028f22
vmctl: support of the remote read protocol Signed-off-by: hagen1778 <roman@victoriametrics.com> Co-authored-by: hagen1778 <roman@victoriametrics.com>
14 lines
472 B
Go
14 lines
472 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.
|
|
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.
|
|
ErrMissingEndpoint = awserr.New("MissingEndpoint", "'Endpoint' configuration is required for this service", nil)
|
|
)
|