Enum ExportableECSServiceField
- java.lang.Object
-
- java.lang.Enum<ExportableECSServiceField>
-
- software.amazon.awssdk.services.computeoptimizer.model.ExportableECSServiceField
-
- All Implemented Interfaces:
Serializable,Comparable<ExportableECSServiceField>
@Generated("software.amazon.awssdk:codegen") public enum ExportableECSServiceField extends Enum<ExportableECSServiceField>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ExportableECSServiceFieldfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<ExportableECSServiceField>knownValues()StringtoString()static ExportableECSServiceFieldvalueOf(String name)Returns the enum constant of this type with the specified name.static ExportableECSServiceField[]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 ExportableECSServiceField ACCOUNT_ID
-
SERVICE_ARN
public static final ExportableECSServiceField SERVICE_ARN
-
LOOKBACK_PERIOD_IN_DAYS
public static final ExportableECSServiceField LOOKBACK_PERIOD_IN_DAYS
-
LAST_REFRESH_TIMESTAMP
public static final ExportableECSServiceField LAST_REFRESH_TIMESTAMP
-
LAUNCH_TYPE
public static final ExportableECSServiceField LAUNCH_TYPE
-
CURRENT_PERFORMANCE_RISK
public static final ExportableECSServiceField CURRENT_PERFORMANCE_RISK
-
CURRENT_SERVICE_CONFIGURATION_MEMORY
public static final ExportableECSServiceField CURRENT_SERVICE_CONFIGURATION_MEMORY
-
CURRENT_SERVICE_CONFIGURATION_CPU
public static final ExportableECSServiceField CURRENT_SERVICE_CONFIGURATION_CPU
-
CURRENT_SERVICE_CONFIGURATION_TASK_DEFINITION_ARN
public static final ExportableECSServiceField CURRENT_SERVICE_CONFIGURATION_TASK_DEFINITION_ARN
-
CURRENT_SERVICE_CONFIGURATION_AUTO_SCALING_CONFIGURATION
public static final ExportableECSServiceField CURRENT_SERVICE_CONFIGURATION_AUTO_SCALING_CONFIGURATION
-
CURRENT_SERVICE_CONTAINER_CONFIGURATIONS
public static final ExportableECSServiceField CURRENT_SERVICE_CONTAINER_CONFIGURATIONS
-
UTILIZATION_METRICS_CPU_MAXIMUM
public static final ExportableECSServiceField UTILIZATION_METRICS_CPU_MAXIMUM
-
UTILIZATION_METRICS_MEMORY_MAXIMUM
public static final ExportableECSServiceField UTILIZATION_METRICS_MEMORY_MAXIMUM
-
FINDING
public static final ExportableECSServiceField FINDING
-
FINDING_REASON_CODES
public static final ExportableECSServiceField FINDING_REASON_CODES
-
RECOMMENDATION_OPTIONS_MEMORY
public static final ExportableECSServiceField RECOMMENDATION_OPTIONS_MEMORY
-
RECOMMENDATION_OPTIONS_CPU
public static final ExportableECSServiceField RECOMMENDATION_OPTIONS_CPU
-
RECOMMENDATION_OPTIONS_SAVINGS_OPPORTUNITY_PERCENTAGE
public static final ExportableECSServiceField RECOMMENDATION_OPTIONS_SAVINGS_OPPORTUNITY_PERCENTAGE
-
RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_CURRENCY
public static final ExportableECSServiceField RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_CURRENCY
-
RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_VALUE
public static final ExportableECSServiceField RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_VALUE
-
RECOMMENDATION_OPTIONS_CONTAINER_RECOMMENDATIONS
public static final ExportableECSServiceField RECOMMENDATION_OPTIONS_CONTAINER_RECOMMENDATIONS
-
RECOMMENDATION_OPTIONS_PROJECTED_UTILIZATION_METRICS_CPU_MAXIMUM
public static final ExportableECSServiceField RECOMMENDATION_OPTIONS_PROJECTED_UTILIZATION_METRICS_CPU_MAXIMUM
-
RECOMMENDATION_OPTIONS_PROJECTED_UTILIZATION_METRICS_MEMORY_MAXIMUM
public static final ExportableECSServiceField RECOMMENDATION_OPTIONS_PROJECTED_UTILIZATION_METRICS_MEMORY_MAXIMUM
-
TAGS
public static final ExportableECSServiceField TAGS
-
EFFECTIVE_RECOMMENDATION_PREFERENCES_SAVINGS_ESTIMATION_MODE
public static final ExportableECSServiceField EFFECTIVE_RECOMMENDATION_PREFERENCES_SAVINGS_ESTIMATION_MODE
-
RECOMMENDATION_OPTIONS_SAVINGS_OPPORTUNITY_AFTER_DISCOUNTS_PERCENTAGE
public static final ExportableECSServiceField RECOMMENDATION_OPTIONS_SAVINGS_OPPORTUNITY_AFTER_DISCOUNTS_PERCENTAGE
-
RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_CURRENCY_AFTER_DISCOUNTS
public static final ExportableECSServiceField RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_CURRENCY_AFTER_DISCOUNTS
-
RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_VALUE_AFTER_DISCOUNTS
public static final ExportableECSServiceField RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_VALUE_AFTER_DISCOUNTS
-
UNKNOWN_TO_SDK_VERSION
public static final ExportableECSServiceField UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static ExportableECSServiceField[] 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 (ExportableECSServiceField c : ExportableECSServiceField.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExportableECSServiceField 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<ExportableECSServiceField>
-
fromValue
public static ExportableECSServiceField 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:
- ExportableECSServiceField corresponding to the value
-
knownValues
public static Set<ExportableECSServiceField> 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 knownExportableECSServiceFields
-
-