public enum Dimensions extends Enum<Dimensions>
| Enum Constant and Description | 
|---|
| HostHost used for per-host level metrics with a single metric namespace. | 
| JVMJVM used for per-JVM level metrics with a single metric namespace. | 
| MetricTypeType of metric such as HttpRequestTime, ClientExecuteTime, etc. | 
| RequestTypeType of request such as PutItemRequest, GetMetricStatisticsRequest,
 etc. | 
| Modifier and Type | Method and Description | 
|---|---|
| static Dimensions | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static Dimensions[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Dimensions MetricType
public static final Dimensions RequestType
public static final Dimensions Host
public static final Dimensions JVM
public static Dimensions[] values()
for (Dimensions c : Dimensions.values()) System.out.println(c);
public static Dimensions valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2013 Amazon Web Services, Inc. All Rights Reserved.