Enum ExportableLicenseField
- java.lang.Object
-
- java.lang.Enum<ExportableLicenseField>
-
- software.amazon.awssdk.services.computeoptimizer.model.ExportableLicenseField
-
- All Implemented Interfaces:
Serializable,Comparable<ExportableLicenseField>
@Generated("software.amazon.awssdk:codegen") public enum ExportableLicenseField extends Enum<ExportableLicenseField>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ExportableLicenseFieldfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<ExportableLicenseField>knownValues()StringtoString()static ExportableLicenseFieldvalueOf(String name)Returns the enum constant of this type with the specified name.static ExportableLicenseField[]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 ExportableLicenseField ACCOUNT_ID
-
RESOURCE_ARN
public static final ExportableLicenseField RESOURCE_ARN
-
LOOKBACK_PERIOD_IN_DAYS
public static final ExportableLicenseField LOOKBACK_PERIOD_IN_DAYS
-
LAST_REFRESH_TIMESTAMP
public static final ExportableLicenseField LAST_REFRESH_TIMESTAMP
-
FINDING
public static final ExportableLicenseField FINDING
-
FINDING_REASON_CODES
public static final ExportableLicenseField FINDING_REASON_CODES
-
CURRENT_LICENSE_CONFIGURATION_NUMBER_OF_CORES
public static final ExportableLicenseField CURRENT_LICENSE_CONFIGURATION_NUMBER_OF_CORES
-
CURRENT_LICENSE_CONFIGURATION_INSTANCE_TYPE
public static final ExportableLicenseField CURRENT_LICENSE_CONFIGURATION_INSTANCE_TYPE
-
CURRENT_LICENSE_CONFIGURATION_OPERATING_SYSTEM
public static final ExportableLicenseField CURRENT_LICENSE_CONFIGURATION_OPERATING_SYSTEM
-
CURRENT_LICENSE_CONFIGURATION_LICENSE_NAME
public static final ExportableLicenseField CURRENT_LICENSE_CONFIGURATION_LICENSE_NAME
-
CURRENT_LICENSE_CONFIGURATION_LICENSE_EDITION
public static final ExportableLicenseField CURRENT_LICENSE_CONFIGURATION_LICENSE_EDITION
-
CURRENT_LICENSE_CONFIGURATION_LICENSE_MODEL
public static final ExportableLicenseField CURRENT_LICENSE_CONFIGURATION_LICENSE_MODEL
-
CURRENT_LICENSE_CONFIGURATION_LICENSE_VERSION
public static final ExportableLicenseField CURRENT_LICENSE_CONFIGURATION_LICENSE_VERSION
-
CURRENT_LICENSE_CONFIGURATION_METRICS_SOURCE
public static final ExportableLicenseField CURRENT_LICENSE_CONFIGURATION_METRICS_SOURCE
-
RECOMMENDATION_OPTIONS_OPERATING_SYSTEM
public static final ExportableLicenseField RECOMMENDATION_OPTIONS_OPERATING_SYSTEM
-
RECOMMENDATION_OPTIONS_LICENSE_EDITION
public static final ExportableLicenseField RECOMMENDATION_OPTIONS_LICENSE_EDITION
-
RECOMMENDATION_OPTIONS_LICENSE_MODEL
public static final ExportableLicenseField RECOMMENDATION_OPTIONS_LICENSE_MODEL
-
RECOMMENDATION_OPTIONS_SAVINGS_OPPORTUNITY_PERCENTAGE
public static final ExportableLicenseField RECOMMENDATION_OPTIONS_SAVINGS_OPPORTUNITY_PERCENTAGE
-
RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_CURRENCY
public static final ExportableLicenseField RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_CURRENCY
-
RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_VALUE
public static final ExportableLicenseField RECOMMENDATION_OPTIONS_ESTIMATED_MONTHLY_SAVINGS_VALUE
-
TAGS
public static final ExportableLicenseField TAGS
-
UNKNOWN_TO_SDK_VERSION
public static final ExportableLicenseField UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static ExportableLicenseField[] 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 (ExportableLicenseField c : ExportableLicenseField.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExportableLicenseField 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<ExportableLicenseField>
-
fromValue
public static ExportableLicenseField 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:
- ExportableLicenseField corresponding to the value
-
knownValues
public static Set<ExportableLicenseField> 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 knownExportableLicenseFields
-
-