Class DefinitionConfig
Partial object from the StateMachine L1 construct properties containing definition information.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.StepFunctions
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class DefinitionConfig : IDefinitionConfig
  Syntax (vb)
Public Class DefinitionConfig Implements 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
Constructors
| DefinitionConfig() | Partial object from the StateMachine L1 construct properties containing definition information.  | 
      
Properties
| Definition | Partial object from the StateMachine L1 construct properties containing definition information.  | 
      
| DefinitionS3Location | Partial object from the StateMachine L1 construct properties containing definition information.  | 
      
| DefinitionString | Partial object from the StateMachine L1 construct properties containing definition information.  | 
      
Constructors
DefinitionConfig()
Partial object from the StateMachine L1 construct properties containing definition information.
public DefinitionConfig()
  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"
            };
  Properties
Definition
Partial object from the StateMachine L1 construct properties containing definition information.
public object? Definition { get; set; }
  Property Value
Remarks
ExampleMetadata: fixture=_generated
DefinitionS3Location
Partial object from the StateMachine L1 construct properties containing definition information.
public CfnStateMachine.IS3LocationProperty? DefinitionS3Location { get; set; }
  Property Value
CfnStateMachine.IS3LocationProperty
Remarks
ExampleMetadata: fixture=_generated
DefinitionString
Partial object from the StateMachine L1 construct properties containing definition information.
public string? DefinitionString { get; set; }
  Property Value
Remarks
ExampleMetadata: fixture=_generated