Show / Hide Table of Contents

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

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.

Properties

Definition

Partial object from the StateMachine L1 construct properties containing definition information.

object? Definition { get; }
Property Value

object

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"
            };

DefinitionS3Location

Partial object from the StateMachine L1 construct properties containing definition information.

CfnStateMachine.IS3LocationProperty? DefinitionS3Location { get; }
Property Value

CfnStateMachine.IS3LocationProperty

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"
            };

DefinitionString

Partial object from the StateMachine L1 construct properties containing definition information.

string? DefinitionString { get; }
Property Value

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;

            var definition;

            var definitionConfig = new DefinitionConfig {
                Definition = definition,
                DefinitionS3Location = new S3LocationProperty {
                    Bucket = "bucket",
                    Key = "key",

                    // the properties below are optional
                    Version = "version"
                },
                DefinitionString = "definitionString"
            };
Back to top Generated by DocFX