Enum RDSInstanceFindingReasonCode
- java.lang.Object
-
- java.lang.Enum<RDSInstanceFindingReasonCode>
-
- software.amazon.awssdk.services.computeoptimizer.model.RDSInstanceFindingReasonCode
-
- All Implemented Interfaces:
Serializable,Comparable<RDSInstanceFindingReasonCode>
@Generated("software.amazon.awssdk:codegen") public enum RDSInstanceFindingReasonCode extends Enum<RDSInstanceFindingReasonCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RDSInstanceFindingReasonCodefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<RDSInstanceFindingReasonCode>knownValues()StringtoString()static RDSInstanceFindingReasonCodevalueOf(String name)Returns the enum constant of this type with the specified name.static RDSInstanceFindingReasonCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CPU_OVERPROVISIONED
public static final RDSInstanceFindingReasonCode CPU_OVERPROVISIONED
-
NETWORK_BANDWIDTH_OVERPROVISIONED
public static final RDSInstanceFindingReasonCode NETWORK_BANDWIDTH_OVERPROVISIONED
-
EBSIOPS_OVERPROVISIONED
public static final RDSInstanceFindingReasonCode EBSIOPS_OVERPROVISIONED
-
EBSIOPS_UNDERPROVISIONED
public static final RDSInstanceFindingReasonCode EBSIOPS_UNDERPROVISIONED
-
EBS_THROUGHPUT_OVERPROVISIONED
public static final RDSInstanceFindingReasonCode EBS_THROUGHPUT_OVERPROVISIONED
-
CPU_UNDERPROVISIONED
public static final RDSInstanceFindingReasonCode CPU_UNDERPROVISIONED
-
NETWORK_BANDWIDTH_UNDERPROVISIONED
public static final RDSInstanceFindingReasonCode NETWORK_BANDWIDTH_UNDERPROVISIONED
-
EBS_THROUGHPUT_UNDERPROVISIONED
public static final RDSInstanceFindingReasonCode EBS_THROUGHPUT_UNDERPROVISIONED
-
NEW_GENERATION_DB_INSTANCE_CLASS_AVAILABLE
public static final RDSInstanceFindingReasonCode NEW_GENERATION_DB_INSTANCE_CLASS_AVAILABLE
-
NEW_ENGINE_VERSION_AVAILABLE
public static final RDSInstanceFindingReasonCode NEW_ENGINE_VERSION_AVAILABLE
-
DB_CLUSTER_WRITER_UNDERPROVISIONED
public static final RDSInstanceFindingReasonCode DB_CLUSTER_WRITER_UNDERPROVISIONED
-
MEMORY_UNDERPROVISIONED
public static final RDSInstanceFindingReasonCode MEMORY_UNDERPROVISIONED
-
INSTANCE_STORAGE_READ_IOPS_UNDERPROVISIONED
public static final RDSInstanceFindingReasonCode INSTANCE_STORAGE_READ_IOPS_UNDERPROVISIONED
-
INSTANCE_STORAGE_WRITE_IOPS_UNDERPROVISIONED
public static final RDSInstanceFindingReasonCode INSTANCE_STORAGE_WRITE_IOPS_UNDERPROVISIONED
-
UNKNOWN_TO_SDK_VERSION
public static final RDSInstanceFindingReasonCode UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static RDSInstanceFindingReasonCode[] 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 (RDSInstanceFindingReasonCode c : RDSInstanceFindingReasonCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RDSInstanceFindingReasonCode 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<RDSInstanceFindingReasonCode>
-
fromValue
public static RDSInstanceFindingReasonCode 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:
- RDSInstanceFindingReasonCode corresponding to the value
-
knownValues
public static Set<RDSInstanceFindingReasonCode> 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 knownRDSInstanceFindingReasonCodes
-
-