enum WorkflowSchemaVersion
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ImageBuilder.Alpha.WorkflowSchemaVersion |
Go | github.com/aws/aws-cdk-go/awsimagebuilderalpha/v2#WorkflowSchemaVersion |
Java | software.amazon.awscdk.services.imagebuilder.alpha.WorkflowSchemaVersion |
Python | aws_cdk.aws_imagebuilder_alpha.WorkflowSchemaVersion |
TypeScript (source) | @aws-cdk/aws-imagebuilder-alpha ยป WorkflowSchemaVersion |
The schema version of the workflow.
Example
const workflow = new imagebuilder.Workflow(this, 'MyWorkflow', {
workflowType: imagebuilder.WorkflowType.BUILD,
data: imagebuilder.WorkflowData.fromJsonObject({
schemaVersion: imagebuilder.WorkflowSchemaVersion.V1_0,
steps: [
{
name: 'LaunchBuildInstance',
action: imagebuilder.WorkflowAction.LAUNCH_INSTANCE,
onFailure: imagebuilder.WorkflowOnFailure.ABORT,
inputs: {
waitFor: 'ssmAgent',
},
},
{
name: 'ExecuteComponents',
action: imagebuilder.WorkflowAction.EXECUTE_COMPONENTS,
onFailure: imagebuilder.WorkflowOnFailure.ABORT,
inputs: {
'instanceId': 'i-123',
},
},
{
name: 'CreateImage',
action: imagebuilder.WorkflowAction.CREATE_IMAGE,
onFailure: imagebuilder.WorkflowOnFailure.ABORT,
inputs: {
'instanceId': 'i-123',
},
},
{
name: 'TerminateInstance',
action: imagebuilder.WorkflowAction.TERMINATE_INSTANCE,
onFailure: imagebuilder.WorkflowOnFailure.CONTINUE,
inputs: {
'instanceId': 'i-123',
},
},
],
outputs: [
{
name: 'ImageId',
value: '$.stepOutputs.CreateImage.imageId',
},
],
}),
});
Members
| Name | Description |
|---|---|
| V1_0 | Schema version 1.0 for the workflow document. |
V1_0
Schema version 1.0 for the workflow document.

.NET
Go
Java
Python
TypeScript (