Enum InstanceMetricName
- java.lang.Object
-
- java.lang.Enum<InstanceMetricName>
-
- software.amazon.awssdk.services.lightsail.model.InstanceMetricName
-
- All Implemented Interfaces:
Serializable,Comparable<InstanceMetricName>
@Generated("software.amazon.awssdk:codegen") public enum InstanceMetricName extends Enum<InstanceMetricName>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BURST_CAPACITY_PERCENTAGEBURST_CAPACITY_TIMECPU_UTILIZATIONMETADATA_NO_TOKENNETWORK_INNETWORK_OUTSTATUS_CHECK_FAILEDSTATUS_CHECK_FAILED_INSTANCESTATUS_CHECK_FAILED_SYSTEMUNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static InstanceMetricNamefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<InstanceMetricName>knownValues()StringtoString()static InstanceMetricNamevalueOf(String name)Returns the enum constant of this type with the specified name.static InstanceMetricName[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CPU_UTILIZATION
public static final InstanceMetricName CPU_UTILIZATION
-
NETWORK_IN
public static final InstanceMetricName NETWORK_IN
-
NETWORK_OUT
public static final InstanceMetricName NETWORK_OUT
-
STATUS_CHECK_FAILED
public static final InstanceMetricName STATUS_CHECK_FAILED
-
STATUS_CHECK_FAILED_INSTANCE
public static final InstanceMetricName STATUS_CHECK_FAILED_INSTANCE
-
STATUS_CHECK_FAILED_SYSTEM
public static final InstanceMetricName STATUS_CHECK_FAILED_SYSTEM
-
BURST_CAPACITY_TIME
public static final InstanceMetricName BURST_CAPACITY_TIME
-
BURST_CAPACITY_PERCENTAGE
public static final InstanceMetricName BURST_CAPACITY_PERCENTAGE
-
METADATA_NO_TOKEN
public static final InstanceMetricName METADATA_NO_TOKEN
-
UNKNOWN_TO_SDK_VERSION
public static final InstanceMetricName UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static InstanceMetricName[] 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 (InstanceMetricName c : InstanceMetricName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InstanceMetricName 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<InstanceMetricName>
-
fromValue
public static InstanceMetricName 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:
- InstanceMetricName corresponding to the value
-
knownValues
public static Set<InstanceMetricName> 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 knownInstanceMetricNames
-
-