Show / Hide Table of Contents

Class DynamoPutItem

A StepFunctions task to call DynamoPutItem.

Inheritance
System.Object
Construct
State
TaskStateBase
DynamoPutItem
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 DynamoPutItem : TaskStateBase, IConstruct, IDependable, IChainable, INextable
Syntax (vb)
Public Class DynamoPutItem
    Inherits TaskStateBase
    Implements IConstruct, IDependable, IChainable, INextable
Remarks

ExampleMetadata: infused

Examples
Table myTable;

new DynamoPutItem(this, "PutItem", new DynamoPutItemProps {
    Item = new Dictionary<string, DynamoAttributeValue> {
        { "MessageId", DynamoAttributeValue.FromString("message-id") }
    },
    Table = myTable,
    ResultPath = "$.Item"
});

Synopsis

Constructors

DynamoPutItem(ByRefValue)

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

DynamoPutItem(DeputyBase.DeputyProps)

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

DynamoPutItem(Construct, String, IDynamoPutItemProps)

Properties

TaskMetrics
TaskPolicies

Constructors

DynamoPutItem(ByRefValue)

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

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

The Javascript-owned object reference

DynamoPutItem(DeputyBase.DeputyProps)

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

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

The deputy props

DynamoPutItem(Construct, String, IDynamoPutItemProps)

public DynamoPutItem(Construct scope, string id, IDynamoPutItemProps props)
Parameters
scope Constructs.Construct
id System.String
props IDynamoPutItemProps

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