Enum ResourceDetails.Type
- java.lang.Object
-
- java.lang.Enum<ResourceDetails.Type>
-
- software.amazon.awssdk.services.costoptimizationhub.model.ResourceDetails.Type
-
- All Implemented Interfaces:
Serializable,Comparable<ResourceDetails.Type>
- Enclosing class:
- ResourceDetails
public static enum ResourceDetails.Type extends Enum<ResourceDetails.Type>
- See Also:
ResourceDetails.type()
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ResourceDetails.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static ResourceDetails.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LAMBDA_FUNCTION
public static final ResourceDetails.Type LAMBDA_FUNCTION
-
ECS_SERVICE
public static final ResourceDetails.Type ECS_SERVICE
-
EC2_INSTANCE
public static final ResourceDetails.Type EC2_INSTANCE
-
EBS_VOLUME
public static final ResourceDetails.Type EBS_VOLUME
-
EC2_AUTO_SCALING_GROUP
public static final ResourceDetails.Type EC2_AUTO_SCALING_GROUP
-
EC2_RESERVED_INSTANCES
public static final ResourceDetails.Type EC2_RESERVED_INSTANCES
-
RDS_RESERVED_INSTANCES
public static final ResourceDetails.Type RDS_RESERVED_INSTANCES
-
ELASTI_CACHE_RESERVED_INSTANCES
public static final ResourceDetails.Type ELASTI_CACHE_RESERVED_INSTANCES
-
OPEN_SEARCH_RESERVED_INSTANCES
public static final ResourceDetails.Type OPEN_SEARCH_RESERVED_INSTANCES
-
REDSHIFT_RESERVED_INSTANCES
public static final ResourceDetails.Type REDSHIFT_RESERVED_INSTANCES
-
EC2_INSTANCE_SAVINGS_PLANS
public static final ResourceDetails.Type EC2_INSTANCE_SAVINGS_PLANS
-
COMPUTE_SAVINGS_PLANS
public static final ResourceDetails.Type COMPUTE_SAVINGS_PLANS
-
SAGE_MAKER_SAVINGS_PLANS
public static final ResourceDetails.Type SAGE_MAKER_SAVINGS_PLANS
-
RDS_DB_INSTANCE
public static final ResourceDetails.Type RDS_DB_INSTANCE
-
RDS_DB_INSTANCE_STORAGE
public static final ResourceDetails.Type RDS_DB_INSTANCE_STORAGE
-
UNKNOWN_TO_SDK_VERSION
public static final ResourceDetails.Type UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static ResourceDetails.Type[] 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 (ResourceDetails.Type c : ResourceDetails.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ResourceDetails.Type 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
-
-