Enum FilterByDimension
- java.lang.Object
-
- java.lang.Enum<FilterByDimension>
-
- software.amazon.awssdk.services.ec2.model.FilterByDimension
-
- All Implemented Interfaces:
Serializable,Comparable<FilterByDimension>
@Generated("software.amazon.awssdk:codegen") public enum FilterByDimension extends Enum<FilterByDimension>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static FilterByDimensionfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<FilterByDimension>knownValues()StringtoString()static FilterByDimensionvalueOf(String name)Returns the enum constant of this type with the specified name.static FilterByDimension[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RESOURCE_REGION
public static final FilterByDimension RESOURCE_REGION
-
AVAILABILITY_ZONE_ID
public static final FilterByDimension AVAILABILITY_ZONE_ID
-
ACCOUNT_ID
public static final FilterByDimension ACCOUNT_ID
-
INSTANCE_FAMILY
public static final FilterByDimension INSTANCE_FAMILY
-
INSTANCE_TYPE
public static final FilterByDimension INSTANCE_TYPE
-
INSTANCE_PLATFORM
public static final FilterByDimension INSTANCE_PLATFORM
-
RESERVATION_ARN
public static final FilterByDimension RESERVATION_ARN
-
RESERVATION_ID
public static final FilterByDimension RESERVATION_ID
-
RESERVATION_TYPE
public static final FilterByDimension RESERVATION_TYPE
-
RESERVATION_CREATE_TIMESTAMP
public static final FilterByDimension RESERVATION_CREATE_TIMESTAMP
-
RESERVATION_START_TIMESTAMP
public static final FilterByDimension RESERVATION_START_TIMESTAMP
-
RESERVATION_END_TIMESTAMP
public static final FilterByDimension RESERVATION_END_TIMESTAMP
-
RESERVATION_END_DATE_TYPE
public static final FilterByDimension RESERVATION_END_DATE_TYPE
-
TENANCY
public static final FilterByDimension TENANCY
-
RESERVATION_STATE
public static final FilterByDimension RESERVATION_STATE
-
RESERVATION_INSTANCE_MATCH_CRITERIA
public static final FilterByDimension RESERVATION_INSTANCE_MATCH_CRITERIA
-
RESERVATION_UNUSED_FINANCIAL_OWNER
public static final FilterByDimension RESERVATION_UNUSED_FINANCIAL_OWNER
-
UNKNOWN_TO_SDK_VERSION
public static final FilterByDimension UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static FilterByDimension[] 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 (FilterByDimension c : FilterByDimension.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FilterByDimension 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<FilterByDimension>
-
fromValue
public static FilterByDimension 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:
- FilterByDimension corresponding to the value
-
knownValues
public static Set<FilterByDimension> 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 knownFilterByDimensions
-
-