Enum ExportableIdleField
- java.lang.Object
-
- java.lang.Enum<ExportableIdleField>
-
- software.amazon.awssdk.services.computeoptimizer.model.ExportableIdleField
-
- All Implemented Interfaces:
Serializable,Comparable<ExportableIdleField>
@Generated("software.amazon.awssdk:codegen") public enum ExportableIdleField extends Enum<ExportableIdleField>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ExportableIdleFieldfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<ExportableIdleField>knownValues()StringtoString()static ExportableIdleFieldvalueOf(String name)Returns the enum constant of this type with the specified name.static ExportableIdleField[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACCOUNT_ID
public static final ExportableIdleField ACCOUNT_ID
-
RESOURCE_ARN
public static final ExportableIdleField RESOURCE_ARN
-
RESOURCE_ID
public static final ExportableIdleField RESOURCE_ID
-
RESOURCE_TYPE
public static final ExportableIdleField RESOURCE_TYPE
-
LAST_REFRESH_TIMESTAMP
public static final ExportableIdleField LAST_REFRESH_TIMESTAMP
-
LOOKBACK_PERIOD_IN_DAYS
public static final ExportableIdleField LOOKBACK_PERIOD_IN_DAYS
-
SAVINGS_OPPORTUNITY
public static final ExportableIdleField SAVINGS_OPPORTUNITY
-
SAVINGS_OPPORTUNITY_AFTER_DISCOUNT
public static final ExportableIdleField SAVINGS_OPPORTUNITY_AFTER_DISCOUNT
-
UTILIZATION_METRICS_CPU_MAXIMUM
public static final ExportableIdleField UTILIZATION_METRICS_CPU_MAXIMUM
-
UTILIZATION_METRICS_MEMORY_MAXIMUM
public static final ExportableIdleField UTILIZATION_METRICS_MEMORY_MAXIMUM
-
UTILIZATION_METRICS_NETWORK_OUT_BYTES_PER_SECOND_MAXIMUM
public static final ExportableIdleField UTILIZATION_METRICS_NETWORK_OUT_BYTES_PER_SECOND_MAXIMUM
-
UTILIZATION_METRICS_NETWORK_IN_BYTES_PER_SECOND_MAXIMUM
public static final ExportableIdleField UTILIZATION_METRICS_NETWORK_IN_BYTES_PER_SECOND_MAXIMUM
-
UTILIZATION_METRICS_DATABASE_CONNECTIONS_MAXIMUM
public static final ExportableIdleField UTILIZATION_METRICS_DATABASE_CONNECTIONS_MAXIMUM
-
UTILIZATION_METRICS_EBS_VOLUME_READ_IOPS_MAXIMUM
public static final ExportableIdleField UTILIZATION_METRICS_EBS_VOLUME_READ_IOPS_MAXIMUM
-
UTILIZATION_METRICS_EBS_VOLUME_WRITE_IOPS_MAXIMUM
public static final ExportableIdleField UTILIZATION_METRICS_EBS_VOLUME_WRITE_IOPS_MAXIMUM
-
UTILIZATION_METRICS_VOLUME_READ_OPS_PER_SECOND_MAXIMUM
public static final ExportableIdleField UTILIZATION_METRICS_VOLUME_READ_OPS_PER_SECOND_MAXIMUM
-
UTILIZATION_METRICS_VOLUME_WRITE_OPS_PER_SECOND_MAXIMUM
public static final ExportableIdleField UTILIZATION_METRICS_VOLUME_WRITE_OPS_PER_SECOND_MAXIMUM
-
FINDING
public static final ExportableIdleField FINDING
-
FINDING_DESCRIPTION
public static final ExportableIdleField FINDING_DESCRIPTION
-
TAGS
public static final ExportableIdleField TAGS
-
UNKNOWN_TO_SDK_VERSION
public static final ExportableIdleField UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static ExportableIdleField[] 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 (ExportableIdleField c : ExportableIdleField.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExportableIdleField 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<ExportableIdleField>
-
fromValue
public static ExportableIdleField 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:
- ExportableIdleField corresponding to the value
-
knownValues
public static Set<ExportableIdleField> 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 knownExportableIdleFields
-
-