Enum RDSDBMetricName
- java.lang.Object
-
- java.lang.Enum<RDSDBMetricName>
-
- software.amazon.awssdk.services.computeoptimizer.model.RDSDBMetricName
-
- All Implemented Interfaces:
Serializable,Comparable<RDSDBMetricName>
@Generated("software.amazon.awssdk:codegen") public enum RDSDBMetricName extends Enum<RDSDBMetricName>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RDSDBMetricNamefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<RDSDBMetricName>knownValues()StringtoString()static RDSDBMetricNamevalueOf(String name)Returns the enum constant of this type with the specified name.static RDSDBMetricName[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CPU
public static final RDSDBMetricName CPU
-
MEMORY
public static final RDSDBMetricName MEMORY
-
EBS_VOLUME_STORAGE_SPACE_UTILIZATION
public static final RDSDBMetricName EBS_VOLUME_STORAGE_SPACE_UTILIZATION
-
NETWORK_RECEIVE_THROUGHPUT
public static final RDSDBMetricName NETWORK_RECEIVE_THROUGHPUT
-
NETWORK_TRANSMIT_THROUGHPUT
public static final RDSDBMetricName NETWORK_TRANSMIT_THROUGHPUT
-
EBS_VOLUME_READ_IOPS
public static final RDSDBMetricName EBS_VOLUME_READ_IOPS
-
EBS_VOLUME_WRITE_IOPS
public static final RDSDBMetricName EBS_VOLUME_WRITE_IOPS
-
EBS_VOLUME_READ_THROUGHPUT
public static final RDSDBMetricName EBS_VOLUME_READ_THROUGHPUT
-
EBS_VOLUME_WRITE_THROUGHPUT
public static final RDSDBMetricName EBS_VOLUME_WRITE_THROUGHPUT
-
DATABASE_CONNECTIONS
public static final RDSDBMetricName DATABASE_CONNECTIONS
-
STORAGE_NETWORK_RECEIVE_THROUGHPUT
public static final RDSDBMetricName STORAGE_NETWORK_RECEIVE_THROUGHPUT
-
STORAGE_NETWORK_TRANSMIT_THROUGHPUT
public static final RDSDBMetricName STORAGE_NETWORK_TRANSMIT_THROUGHPUT
-
AURORA_MEMORY_HEALTH_STATE
public static final RDSDBMetricName AURORA_MEMORY_HEALTH_STATE
-
AURORA_MEMORY_NUM_DECLINED_SQL
public static final RDSDBMetricName AURORA_MEMORY_NUM_DECLINED_SQL
-
AURORA_MEMORY_NUM_KILL_CONN_TOTAL
public static final RDSDBMetricName AURORA_MEMORY_NUM_KILL_CONN_TOTAL
-
AURORA_MEMORY_NUM_KILL_QUERY_TOTAL
public static final RDSDBMetricName AURORA_MEMORY_NUM_KILL_QUERY_TOTAL
-
READ_IOPS_EPHEMERAL_STORAGE
public static final RDSDBMetricName READ_IOPS_EPHEMERAL_STORAGE
-
WRITE_IOPS_EPHEMERAL_STORAGE
public static final RDSDBMetricName WRITE_IOPS_EPHEMERAL_STORAGE
-
UNKNOWN_TO_SDK_VERSION
public static final RDSDBMetricName UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static RDSDBMetricName[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (RDSDBMetricName c : RDSDBMetricName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RDSDBMetricName valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
toString
public String toString()
- Overrides:
toStringin classEnum<RDSDBMetricName>
-
fromValue
public static RDSDBMetricName fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value- real value- Returns:
- RDSDBMetricName corresponding to the value
-
knownValues
public static Set<RDSDBMetricName> knownValues()
Use this in place ofvalues()to return aSetof all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION.- Returns:
- a
Setof knownRDSDBMetricNames
-
-