interface WorkflowAttributes
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ImageBuilder.Alpha.WorkflowAttributes |
Go | github.com/aws/aws-cdk-go/awsimagebuilderalpha/v2#WorkflowAttributes |
Java | software.amazon.awscdk.services.imagebuilder.alpha.WorkflowAttributes |
Python | aws_cdk.aws_imagebuilder_alpha.WorkflowAttributes |
TypeScript (source) | @aws-cdk/aws-imagebuilder-alpha ยป WorkflowAttributes |
Properties for an EC2 Image Builder Workflow.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as imagebuilder_alpha from '@aws-cdk/aws-imagebuilder-alpha';
const workflowAttributes: imagebuilder_alpha.WorkflowAttributes = {
workflowArn: 'workflowArn',
workflowName: 'workflowName',
workflowType: imagebuilder_alpha.WorkflowType.BUILD,
workflowVersion: 'workflowVersion',
};
Properties
| Name | Type | Description |
|---|---|---|
| workflow | string | The ARN of the workflow. |
| workflow | string | The name of the workflow. |
| workflow | Workflow | The type of the workflow. |
| workflow | string | The version of the workflow. |
workflowArn?
Type:
string
(optional, default: the ARN is automatically constructed if a workflowName and workflowType is provided, otherwise a
workflowArn is required)
The ARN of the workflow.
workflowName?
Type:
string
(optional, default: the name is automatically constructed if a workflowArn is provided, otherwise a workflowName is required)
The name of the workflow.
workflowType?
Type:
Workflow
(optional, default: the type is automatically constructed if a workflowArn is provided, otherwise a workflowType is required)
The type of the workflow.
workflowVersion?
Type:
string
(optional, default: x.x.x)
The version of the workflow.

.NET
Go
Java
Python
TypeScript (