Class StringDefinitionBody
Inherited Members
Namespace: Amazon.CDK.AWS.StepFunctions
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class StringDefinitionBody : DefinitionBody
Syntax (vb)
Public Class StringDefinitionBody 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 stringDefinitionBody = StringDefinitionBody.FromChainable(chainable);
Synopsis
Constructors
| StringDefinitionBody(string) |
Properties
| Body |
Methods
| Bind(Construct, IPrincipal, IStateMachineProps, StateGraph?) |
Constructors
StringDefinitionBody(string)
public StringDefinitionBody(string body)
Parameters
- body string
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 stringDefinitionBody = StringDefinitionBody.FromChainable(chainable);
Properties
Body
public virtual string Body { 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 stringDefinitionBody = StringDefinitionBody.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