types.go 348 B

12345678910111213141516
  1. package cloudwatch
  2. import (
  3. "github.com/aws/aws-sdk-go/service/cloudwatch"
  4. )
  5. type CloudWatchQuery struct {
  6. Region string
  7. Namespace string
  8. MetricName string
  9. Dimensions []*cloudwatch.Dimension
  10. Statistics []*string
  11. ExtendedStatistics []*string
  12. Period int
  13. Alias string
  14. }