/** @module count */ /** * Constants that determine cloud watch units. */ export declare class CloudWatchUnit { static readonly Seconds = "Seconds"; static readonly Microseconds = "Microseconds"; static readonly Milliseconds = "Milliseconds"; static readonly Bytes = "Bytes"; static readonly Kilobytes = "Kilobytes"; static readonly Megabytes = "Megabytes"; static readonly Gigabytes = "Gigabytes"; static readonly Terabytes = "Terabytes"; static readonly Bits = "Bits"; static readonly Kilobits = "Kilobits"; static readonly Megabits = "Megabits"; static readonly Gigabits = "Gigabits"; static readonly Terabits = "Terabits"; static readonly Percent = "Percent"; static readonly Count = "Count"; static readonly Bytes_Second = "Bytes/Second"; static readonly Kilobytes_Second = "Kilobytes/Second"; static readonly Megabytes_Second = "Megabytes/Second"; static readonly Gigabytes_Second = "Gigabytes/Second"; static readonly Terabytes_Second = "Terabytes/Second"; static readonly Bits_Second = "Bits/Second"; static readonly Kilobits_Second = "Kilobits/Second"; static readonly Megabits_Second = "Megabits/Second"; static readonly Gigabits_Second = "Gigabits/Second"; static readonly Terabits_Second = "Terabits/Second"; static readonly Count_Second = "Count/Second"; static readonly None = "None"; }