interface DefinitionConfig
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.StepFunctions.DefinitionConfig |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsstepfunctions#DefinitionConfig |
Java | software.amazon.awscdk.services.stepfunctions.DefinitionConfig |
Python | aws_cdk.aws_stepfunctions.DefinitionConfig |
TypeScript (source) | aws-cdk-lib » aws_stepfunctions » DefinitionConfig |
Obtainable from
Chain
.bind()
, Definition
.bind()
, File
.bind()
, String
.bind()
Partial object from the StateMachine L1 construct properties containing definition information.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_stepfunctions as stepfunctions } from 'aws-cdk-lib';
declare const definition: any;
const definitionConfig: stepfunctions.DefinitionConfig = {
definition: definition,
definitionS3Location: {
bucket: 'bucket',
key: 'key',
// the properties below are optional
version: 'version',
},
definitionString: 'definitionString',
};
Properties
Name | Type | Description |
---|---|---|
definition? | any | |
definition | S3 | |
definition | string |
definition?
Type:
any
(optional)
definitionS3Location?
Type:
S3
(optional)
definitionString?
Type:
string
(optional)