Show / Hide Table of Contents

Interface IAssignableStateOptions

Option properties for state that can assign variables.

Namespace: Amazon.CDK.AWS.StepFunctions
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IAssignableStateOptions
Syntax (vb)
Public Interface IAssignableStateOptions
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.AWS.StepFunctions;

            var assign;

            var assignableStateOptions = new AssignableStateOptions {
                Assign = new Dictionary<string, object> {
                    { "assignKey", assign }
                }
            };

Synopsis

Properties

Assign

Workflow variables to store in this step.

Properties

Assign

Workflow variables to store in this step.

IDictionary<string, object>? Assign { get; }
Property Value

IDictionary<string, object>

Remarks

Using workflow variables, you can store data in a step and retrieve that data in future steps.

Default: - Not assign variables

See: https://docs.aws.amazon.com/step-functions/latest/dg/workflow-variables.html

Back to top Generated by DocFX