Enum ExportableLambdaFunctionField
- java.lang.Object
-
- java.lang.Enum<ExportableLambdaFunctionField>
-
- software.amazon.awssdk.services.computeoptimizer.model.ExportableLambdaFunctionField
-
- All Implemented Interfaces:
Serializable,Comparable<ExportableLambdaFunctionField>
@Generated("software.amazon.awssdk:codegen") public enum ExportableLambdaFunctionField extends Enum<ExportableLambdaFunctionField>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ExportableLambdaFunctionFieldfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<ExportableLambdaFunctionField>knownValues()StringtoString()static ExportableLambdaFunctionFieldvalueOf(String name)Returns the enum constant of this type with the specified name.static ExportableLambdaFunctionField[]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 ExportableLambdaFunctionField ACCOUNT_ID
-
FUNCTION_ARN
public static final ExportableLambdaFunctionField FUNCTION_ARN
-
FUNCTION_VERSION
public static final ExportableLambdaFunctionField FUNCTION_VERSION
-
FINDING
public static final ExportableLambdaFunctionField FINDING
-
FINDING_REASON_CODES
public static final ExportableLambdaFunctionField FINDING_REASON_CODES
-
NUMBER_OF_INVOCATIONS
public static final ExportableLambdaFunctionField NUMBER_OF_INVOCATIONS
-
UTILIZATION_METRICS_DURATION_MAXIMUM
public static final ExportableLambdaFunctionField UTILIZATION_METRICS_DURATION_MAXIMUM
-
UTILIZATION_METRICS_DURATION_AVERAGE
public static final ExportableLambdaFunctionField UTILIZATION_METRICS_DURATION_AVERAGE
-
UTILIZATION_METRICS_MEMORY_MAXIMUM
public static final ExportableLambdaFunctionField UTILIZATION_METRICS_MEMORY_MAXIMUM
-
UTILIZATION_METRICS_MEMORY_AVERAGE
public static final ExportableLambdaFunctionField UTILIZATION_METRICS_MEMORY_AVERAGE
-
LOOKBACK_PERIOD_IN_DAYS
public static final ExportableLambdaFunctionField LOOKBACK_PERIOD_IN_DAYS
-
CURRENT_CONFIGURATION_MEMORY_SIZE
public static final ExportableLambdaFunctionField CURRENT_CONFIGURATION_MEMORY_SIZE
-
CURRENT_CONFIGURATION_TIMEOUT
public static final ExportableLambdaFunctionField CURRENT_CONFIGURATION_TIMEOUT
-
CURRENT_COST_TOTAL
public static final ExportableLambdaFunctionField CURRENT_COST_TOTAL
-
CURRENT_COST_AVERAGE
public static final ExportableLambdaFunctionField CURRENT_COST_AVERAGE
-
RECOMMENDATION_OPTIONS_CONFIGURATION_MEMORY_SIZE
public static final ExportableLambdaFunctionField RECOMMENDATION_OPTIONS_CONFIGURATION_MEMORY_SIZE
-
RECOMMENDATION_OPTIONS_COST_LOW
public static final ExportableLambdaFunctionField RECOMMENDATION_OPTIONS_COST_LOW
-
RECOMMENDATION_OPTIONS_COST_HIGH
public static final ExportableLambdaFunctionField RECOMMENDATION_OPTIONS_COST_HIGH
-
RECOMMENDATION_OPTIONS_PROJECTED_UTILIZATION_METRICS_DURATION_LOWER_BOUND
public static final ExportableLambdaFunctionField RECOMMENDATION_OPTIONS_PROJECTED_UTILIZATION_METRICS_DURATION_LOWER_BOUND
-
RECOMMENDATION_OPTIONS_PROJECTED_UTILIZATION_METRICS_DURATION_UPPER_BOUND
public static final ExportableLambdaFunctionField RECOMMENDATION_OPTIONS_PROJECTED_UTILIZATION_METRICS_DURATION_UPPER_BOUND
-
RECOMMENDATION_OPTIONS_PROJECTED_UTILIZATION_METRICS_DURATION_EXPECTED
public static final ExportableLambdaFunctionField RECOMMENDATION_OPTIONS_PROJECTED_UTILIZATION_METRICS_DURATION_EXPECTED
-
LAST_REFRESH_TIMESTAMP
public static final ExportableLambdaFunctionField LAST_REFRESH_TIMESTAMP
-
CURRENT_PERFORMANCE_RISK
public static final ExportableLambdaFunctionField CURRENT_PERFORMANCE_RISK
-
RECOMMENDATION_OPTIONS_SAVINGS_OPPORTUNITY_PERCENTAGE
public static final ExportableLambdaFunctionField RECOMMENDATION_OPTIONS_SAVINGS_OPPORTUNITY_PERCENTAGE
-
RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_CURRENCY
public static final ExportableLambdaFunctionField RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_CURRENCY
-
RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_VALUE
public static final ExportableLambdaFunctionField RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_VALUE
-
TAGS
public static final ExportableLambdaFunctionField TAGS
-
EFFECTIVE_RECOMMENDATION_PREFERENCES_SAVINGS_ESTIMATION_MODE
public static final ExportableLambdaFunctionField EFFECTIVE_RECOMMENDATION_PREFERENCES_SAVINGS_ESTIMATION_MODE
-
RECOMMENDATION_OPTIONS_SAVINGS_OPPORTUNITY_AFTER_DISCOUNTS_PERCENTAGE
public static final ExportableLambdaFunctionField RECOMMENDATION_OPTIONS_SAVINGS_OPPORTUNITY_AFTER_DISCOUNTS_PERCENTAGE
-
RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_CURRENCY_AFTER_DISCOUNTS
public static final ExportableLambdaFunctionField RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_CURRENCY_AFTER_DISCOUNTS
-
RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_VALUE_AFTER_DISCOUNTS
public static final ExportableLambdaFunctionField RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_VALUE_AFTER_DISCOUNTS
-
UNKNOWN_TO_SDK_VERSION
public static final ExportableLambdaFunctionField UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static ExportableLambdaFunctionField[] 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 (ExportableLambdaFunctionField c : ExportableLambdaFunctionField.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExportableLambdaFunctionField 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<ExportableLambdaFunctionField>
-
fromValue
public static ExportableLambdaFunctionField 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:
- ExportableLambdaFunctionField corresponding to the value
-
knownValues
public static Set<ExportableLambdaFunctionField> 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 knownExportableLambdaFunctionFields
-
-