types.go 479 B

123456789101112131415161718192021
  1. package cloudwatch
  2. import (
  3. "github.com/aws/aws-sdk-go/service/cloudwatch"
  4. )
  5. type CloudWatchQuery struct {
  6. RefId string
  7. Region string
  8. Namespace string
  9. MetricName string
  10. Dimensions []*cloudwatch.Dimension
  11. Statistics []*string
  12. ExtendedStatistics []*string
  13. Period int
  14. Alias string
  15. Id string
  16. Expression string
  17. ReturnData bool
  18. HighResolution bool
  19. }