1 |
|
2 |
|
3 |
|
4 |
|
5 | export declare class CloudWatchUnit {
|
6 | static readonly Seconds = "Seconds";
|
7 | static readonly Microseconds = "Microseconds";
|
8 | static readonly Milliseconds = "Milliseconds";
|
9 | static readonly Bytes = "Bytes";
|
10 | static readonly Kilobytes = "Kilobytes";
|
11 | static readonly Megabytes = "Megabytes";
|
12 | static readonly Gigabytes = "Gigabytes";
|
13 | static readonly Terabytes = "Terabytes";
|
14 | static readonly Bits = "Bits";
|
15 | static readonly Kilobits = "Kilobits";
|
16 | static readonly Megabits = "Megabits";
|
17 | static readonly Gigabits = "Gigabits";
|
18 | static readonly Terabits = "Terabits";
|
19 | static readonly Percent = "Percent";
|
20 | static readonly Count = "Count";
|
21 | static readonly Bytes_Second = "Bytes/Second";
|
22 | static readonly Kilobytes_Second = "Kilobytes/Second";
|
23 | static readonly Megabytes_Second = "Megabytes/Second";
|
24 | static readonly Gigabytes_Second = "Gigabytes/Second";
|
25 | static readonly Terabytes_Second = "Terabytes/Second";
|
26 | static readonly Bits_Second = "Bits/Second";
|
27 | static readonly Kilobits_Second = "Kilobits/Second";
|
28 | static readonly Megabits_Second = "Megabits/Second";
|
29 | static readonly Gigabits_Second = "Gigabits/Second";
|
30 | static readonly Terabits_Second = "Terabits/Second";
|
31 | static readonly Count_Second = "Count/Second";
|
32 | static readonly None = "None";
|
33 | }
|