Class ChainDefinitionBody
Inherited Members
Namespace: Amazon.CDK.AWS.StepFunctions
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ChainDefinitionBody : DefinitionBody
Syntax (vb)
Public Class ChainDefinitionBody Inherits DefinitionBody
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;
IChainable chainable;
var chainDefinitionBody = ChainDefinitionBody.FromChainable(chainable);
Synopsis
Constructors
| ChainDefinitionBody(IChainable) |
Properties
| Chainable |
Methods
| Bind(Construct, IPrincipal, IStateMachineProps, StateGraph?) |
Constructors
ChainDefinitionBody(IChainable)
public ChainDefinitionBody(IChainable chainable)
Parameters
- chainable IChainable
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;
IChainable chainable;
var chainDefinitionBody = ChainDefinitionBody.FromChainable(chainable);
Properties
Chainable
public virtual IChainable Chainable { get; }
Property Value
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;
IChainable chainable;
var chainDefinitionBody = ChainDefinitionBody.FromChainable(chainable);
Methods
Bind(Construct, IPrincipal, IStateMachineProps, StateGraph?)
public override IDefinitionConfig Bind(Construct scope, IPrincipal sfnPrincipal, IStateMachineProps sfnProps, StateGraph? graph = null)
Parameters
- scope Construct
- sfnPrincipal IPrincipal
- sfnProps IStateMachineProps
- graph StateGraph
Returns
Overrides
Remarks
ExampleMetadata: fixture=_generated