enum DynamoReturnValues
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.StepFunctions.Tasks.DynamoReturnValues |
Java | software.amazon.awscdk.services.stepfunctions.tasks.DynamoReturnValues |
Python | aws_cdk.aws_stepfunctions_tasks.DynamoReturnValues |
TypeScript (source) | @aws-cdk/aws-stepfunctions-tasks » DynamoReturnValues |
Use ReturnValues if you want to get the item attributes as they appear before or after they are changed.
Members
| Name | Description |
|---|---|
| NONE | Nothing is returned. |
| ALL_OLD | Returns all of the attributes of the item. |
| UPDATED_OLD | Returns only the updated attributes. |
| ALL_NEW | Returns all of the attributes of the item. |
| UPDATED_NEW | Returns only the updated attributes. |
NONE
Nothing is returned.
ALL_OLD
Returns all of the attributes of the item.
UPDATED_OLD
Returns only the updated attributes.
ALL_NEW
Returns all of the attributes of the item.
UPDATED_NEW
Returns only the updated attributes.

.NET
Java
Python
TypeScript (