Interface IDefinitionConfig
Partial object from the StateMachine L1 construct properties containing definition information.
Namespace: Amazon.CDK.AWS.StepFunctions
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IDefinitionConfig
Syntax (vb)
Public Interface IDefinitionConfig
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 definition;
var definitionConfig = new DefinitionConfig {
Definition = definition,
DefinitionS3Location = new S3LocationProperty {
Bucket = "bucket",
Key = "key",
// the properties below are optional
Version = "version"
},
DefinitionString = "definitionString"
};
Synopsis
Properties
Definition | |
DefinitionS3Location | |
DefinitionString |
Properties
Definition
virtual object Definition { get; }
Property Value
System.Object
DefinitionS3Location
virtual CfnStateMachine.IS3LocationProperty DefinitionS3Location { get; }
Property Value
CfnStateMachine.IS3LocationProperty
DefinitionString
virtual string DefinitionString { get; }
Property Value
System.String