make that variable a string

This commit is contained in:
Nathan Haneysmith 2016-08-25 17:53:46 -07:00
parent 2457d95262
commit e931706249
1 changed files with 6 additions and 6 deletions

View File

@ -28,12 +28,12 @@ type (
Filename string `toml:"shared_credential_file"`
Token string `toml:"token"`
Period internal.Duration `toml:"period"`
Delay internal.Duration `toml:"delay"`
Namespace string `toml:"namespace"`
Metrics []*Metric `toml:"metrics"`
CacheTTL internal.Duration `toml:"cache_ttl"`
RateLimit internal.RateLimit `toml:"ratelimit"`
Period internal.Duration `toml:"period"`
Delay internal.Duration `toml:"delay"`
Namespace string `toml:"namespace"`
Metrics []*Metric `toml:"metrics"`
CacheTTL internal.Duration `toml:"cache_ttl"`
RateLimit string `toml:"ratelimit"`
client cloudwatchClient
metricCache *MetricCache
}