Skip to content

Commit

Permalink
Make enum lowercase keys uppercase
Browse files Browse the repository at this point in the history
  • Loading branch information
rigwild committed Nov 24, 2022
1 parent d62266e commit 1d3bec7
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions packages/@aws-cdk/aws-cloudwatch/lib/metric-types.ts
Expand Up @@ -222,55 +222,55 @@ export enum Statistic {
*
* wm10 calculates the average while treating the 90% of the highest values to be equal to the value at the 10th percentile.
*/
wm10 = 'wm10',
WM10 = 'wm10',
/**
* Winsorized mean (WM) is similar to trimmed mean. However, with winsorized mean, the values that are outside the boundary are not ignored,
* but instead are considered to be equal to the value at the edge of the appropriate boundary.
* After this normalization, the average is calculated. You define the boundaries as one or two numbers between 0 and 100, up to 10 decimal places.
*
* wm50 calculates the average while treating the 50% of the highest values to be equal to the value at the 50th percentile.
*/
wm50 = 'wm50',
WM50 = 'wm50',
/**
* Winsorized mean (WM) is similar to trimmed mean. However, with winsorized mean, the values that are outside the boundary are not ignored,
* but instead are considered to be equal to the value at the edge of the appropriate boundary.
* After this normalization, the average is calculated. You define the boundaries as one or two numbers between 0 and 100, up to 10 decimal places.
*
* wm90 calculates the average while treating the 10% of the highest values to be equal to the value at the 90th percentile.
*/
wm90 = 'wm90',
WM90 = 'wm90',
/**
* Winsorized mean (WM) is similar to trimmed mean. However, with winsorized mean, the values that are outside the boundary are not ignored,
* but instead are considered to be equal to the value at the edge of the appropriate boundary.
* After this normalization, the average is calculated. You define the boundaries as one or two numbers between 0 and 100, up to 10 decimal places.
*
* wm95 calculates the average while treating the 5% of the highest values to be equal to the value at the 95th percentile.
*/
wm95 = 'wm95',
WM95 = 'wm95',
/**
* Winsorized mean (WM) is similar to trimmed mean. However, with winsorized mean, the values that are outside the boundary are not ignored,
* but instead are considered to be equal to the value at the edge of the appropriate boundary.
* After this normalization, the average is calculated. You define the boundaries as one or two numbers between 0 and 100, up to 10 decimal places.
*
* wm99 calculates the average while treating the 1% of the highest values to be equal to the value at the 99th percentile.
*/
wm99 = 'wm99',
WM99 = 'wm99',
/**
* Winsorized mean (WM) is similar to trimmed mean. However, with winsorized mean, the values that are outside the boundary are not ignored,
* but instead are considered to be equal to the value at the edge of the appropriate boundary.
* After this normalization, the average is calculated. You define the boundaries as one or two numbers between 0 and 100, up to 10 decimal places.
*
* wm99.9 calculates the average while treating the 0.1% of the highest values to be equal to the value at the 99.9th percentile.
*/
wm99_9 = 'wm99.9',
WM99_9 = 'wm99.9',
/**
* Winsorized mean (WM) is similar to trimmed mean. However, with winsorized mean, the values that are outside the boundary are not ignored,
* but instead are considered to be equal to the value at the edge of the appropriate boundary.
* After this normalization, the average is calculated. You define the boundaries as one or two numbers between 0 and 100, up to 10 decimal places.
*
* wm99.99 calculates the average while treating the 0.01% of the highest values to be equal to the value at the 99.99th percentile.
*/
wm99_99 = 'wm99.99',
WM99_99 = 'wm99.99',

/**
* Winsorized mean (WM) is similar to trimmed mean. However, with winsorized mean, the values that are outside the boundary are not ignored,
Expand Down

0 comments on commit 1d3bec7

Please sign in to comment.