Show / Hide Table of Contents

Class DynamoUpdateItem

A StepFunctions task to call DynamoUpdateItem.

Inheritance
System.Object
Construct
State
TaskStateBase
DynamoUpdateItem
Implements
IConstruct
Constructs.IConstruct
IDependable
IChainable
INextable
Inherited Members
TaskStateBase.AddCatch(IChainable, ICatchProps)
TaskStateBase.AddRetry(IRetryProps)
TaskStateBase.Metric(String, IMetricOptions)
TaskStateBase.MetricFailed(IMetricOptions)
TaskStateBase.MetricHeartbeatTimedOut(IMetricOptions)
TaskStateBase.MetricRunTime(IMetricOptions)
TaskStateBase.MetricScheduled(IMetricOptions)
TaskStateBase.MetricScheduleTime(IMetricOptions)
TaskStateBase.MetricStarted(IMetricOptions)
TaskStateBase.MetricSucceeded(IMetricOptions)
TaskStateBase.MetricTime(IMetricOptions)
TaskStateBase.MetricTimedOut(IMetricOptions)
TaskStateBase.Next(IChainable)
TaskStateBase.ToStateJson()
TaskStateBase.WhenBoundToGraph(StateGraph)
TaskStateBase.EndStates
State.FilterNextables(State[])
State.FindReachableEndStates(State, IFindStateOptions)
State.FindReachableStates(State, IFindStateOptions)
State.PrefixStates(IConstruct, String)
State.AddBranch(StateGraph)
State.AddChoice(Condition, State)
State.AddIterator(StateGraph)
State.AddPrefix(String)
State.BindToGraph(StateGraph)
State.MakeDefault(State)
State.MakeNext(State)
State.RenderBranches()
State.RenderChoices()
State.RenderInputOutput()
State.RenderIterator()
State.RenderNextEnd()
State.RenderResultSelector()
State.RenderRetryCatch()
State.Branches
State.Id
State.StartState
State.StateId
State.Comment
State.InputPath
State.OutputPath
State.Parameters
State.ResultPath
State.ResultSelector
State.DefaultChoice
State.Iteration
Construct.IsConstruct(Object)
Construct.OnPrepare()
Construct.OnSynthesize(ISynthesisSession)
Construct.OnValidate()
Construct.Prepare()
Construct.Synthesize(ISynthesisSession)
Construct.Validate()
Construct.Node
Namespace: Amazon.CDK.AWS.StepFunctions.Tasks
Assembly: Amazon.CDK.AWS.StepFunctions.Tasks.dll
Syntax (csharp)
public class DynamoUpdateItem : TaskStateBase, IConstruct, IDependable, IChainable, INextable
Syntax (vb)
Public Class DynamoUpdateItem
    Inherits TaskStateBase
    Implements IConstruct, IDependable, IChainable, INextable
Remarks

ExampleMetadata: infused

Examples
Table myTable;

new DynamoUpdateItem(this, "UpdateItem", new DynamoUpdateItemProps {
    Key = new Dictionary<string, DynamoAttributeValue> {
        { "MessageId", DynamoAttributeValue.FromString("message-007") }
    },
    Table = myTable,
    ExpressionAttributeValues = new Dictionary<string, DynamoAttributeValue> {
        { ":val", DynamoAttributeValue.NumberFromString(JsonPath.StringAt("$.Item.TotalCount.N")) },
        { ":rand", DynamoAttributeValue.FromNumber(20) }
    },
    UpdateExpression = "SET TotalCount = :val + :rand"
});

Synopsis

Constructors

DynamoUpdateItem(ByRefValue)

Used by jsii to construct an instance of this class from a Javascript-owned object reference

DynamoUpdateItem(DeputyBase.DeputyProps)

Used by jsii to construct an instance of this class from DeputyProps

DynamoUpdateItem(Construct, String, IDynamoUpdateItemProps)

Properties

TaskMetrics
TaskPolicies

Constructors

DynamoUpdateItem(ByRefValue)

Used by jsii to construct an instance of this class from a Javascript-owned object reference

protected DynamoUpdateItem(ByRefValue reference)
Parameters
reference Amazon.JSII.Runtime.Deputy.ByRefValue

The Javascript-owned object reference

DynamoUpdateItem(DeputyBase.DeputyProps)

Used by jsii to construct an instance of this class from DeputyProps

protected DynamoUpdateItem(DeputyBase.DeputyProps props)
Parameters
props Amazon.JSII.Runtime.Deputy.DeputyBase.DeputyProps

The deputy props

DynamoUpdateItem(Construct, String, IDynamoUpdateItemProps)

public DynamoUpdateItem(Construct scope, string id, IDynamoUpdateItemProps props)
Parameters
scope Constructs.Construct
id System.String
props IDynamoUpdateItemProps

Properties

TaskMetrics

protected override ITaskMetricsConfig TaskMetrics { get; }
Property Value

ITaskMetricsConfig

Overrides
TaskStateBase.TaskMetrics

TaskPolicies

protected override PolicyStatement[] TaskPolicies { get; }
Property Value

PolicyStatement[]

Overrides
TaskStateBase.TaskPolicies

Implements

IConstruct
Constructs.IConstruct
IDependable
IChainable
INextable
Back to top Generated by DocFX