Enum DynamoConsumedCapacity
java.lang.Object
java.lang.Enum<DynamoConsumedCapacity>
software.amazon.awscdk.services.stepfunctions.tasks.DynamoConsumedCapacity
- All Implemented Interfaces:
Serializable
,Comparable<DynamoConsumedCapacity>
,java.lang.constant.Constable
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:17.684Z")
@Stability(Stable)
public enum DynamoConsumedCapacity
extends Enum<DynamoConsumedCapacity>
Determines the level of detail about provisioned throughput consumption that is returned.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe response includes the aggregate ConsumedCapacity for the operation, together with ConsumedCapacity for each table and secondary index that was accessed.No ConsumedCapacity details are included in the response.The response includes only the aggregate ConsumedCapacity for the operation. -
Method Summary
Modifier and TypeMethodDescriptionstatic DynamoConsumedCapacity
Returns the enum constant of this type with the specified name.static DynamoConsumedCapacity[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
INDEXES
The response includes the aggregate ConsumedCapacity for the operation, together with ConsumedCapacity for each table and secondary index that was accessed. -
TOTAL
The response includes only the aggregate ConsumedCapacity for the operation. -
NONE
No ConsumedCapacity details are included in the response.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-