enum DynamoReturnValues
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.StepFunctions.Tasks.DynamoReturnValues |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsstepfunctionstasks#DynamoReturnValues |
Java | software.amazon.awscdk.services.stepfunctions.tasks.DynamoReturnValues |
Python | aws_cdk.aws_stepfunctions_tasks.DynamoReturnValues |
TypeScript (source) | aws-cdk-lib » 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.