Module: AWSCDK::StepFunctionsTasks::DynamoReturnValues

Defined in:
step_functions_tasks/dynamo_return_values.rb

Overview

Use ReturnValues if you want to get the item attributes as they appear before or after they are changed.

Constant Summary collapse

NONE =
Deprecated.
Note:

Default:

Nothing is returned.

Jsii::Enum.new("aws-cdk-lib.aws_stepfunctions_tasks.DynamoReturnValues", "NONE")
ALL_OLD =
Deprecated.
Note:

Default:

Returns all of the attributes of the item.

Jsii::Enum.new("aws-cdk-lib.aws_stepfunctions_tasks.DynamoReturnValues", "ALL_OLD")
UPDATED_OLD =
Deprecated.
Note:

Default:

Returns only the updated attributes.

Jsii::Enum.new("aws-cdk-lib.aws_stepfunctions_tasks.DynamoReturnValues", "UPDATED_OLD")
ALL_NEW =
Deprecated.
Note:

Default:

Returns all of the attributes of the item.

Jsii::Enum.new("aws-cdk-lib.aws_stepfunctions_tasks.DynamoReturnValues", "ALL_NEW")
UPDATED_NEW =
Deprecated.
Note:

Default:

Returns only the updated attributes.

Jsii::Enum.new("aws-cdk-lib.aws_stepfunctions_tasks.DynamoReturnValues", "UPDATED_NEW")