interface WorkflowConfigurationProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.ImageBuilder.CfnImage.WorkflowConfigurationProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsimagebuilder#CfnImage_WorkflowConfigurationProperty |
![]() | software.amazon.awscdk.services.imagebuilder.CfnImage.WorkflowConfigurationProperty |
![]() | aws_cdk.aws_imagebuilder.CfnImage.WorkflowConfigurationProperty |
![]() | aws-cdk-lib » aws_imagebuilder » CfnImage » WorkflowConfigurationProperty |
Contains control settings and configurable inputs for a workflow resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_imagebuilder as imagebuilder } from 'aws-cdk-lib';
const workflowConfigurationProperty: imagebuilder.CfnImage.WorkflowConfigurationProperty = {
onFailure: 'onFailure',
parallelGroup: 'parallelGroup',
parameters: [{
name: 'name',
value: ['value'],
}],
workflowArn: 'workflowArn',
};
Properties
Name | Type | Description |
---|---|---|
on | string | The action to take if the workflow fails. |
parallel | string | Test workflows are defined within named runtime groups called parallel groups. |
parameters? | IResolvable | IResolvable | Workflow [] | Contains parameter values for each of the parameters that the workflow document defined for the workflow resource. |
workflow | string | The Amazon Resource Name (ARN) of the workflow resource. |
onFailure?
Type:
string
(optional)
The action to take if the workflow fails.
parallelGroup?
Type:
string
(optional)
Test workflows are defined within named runtime groups called parallel groups.
The parallel group is the named group that contains this test workflow. Test workflows within a parallel group can run at the same time. Image Builder starts up to five test workflows in the group at the same time, and starts additional workflows as others complete, until all workflows in the group have completed. This field only applies for test workflows.
parameters?
Type:
IResolvable
|
IResolvable
|
Workflow
[]
(optional)
Contains parameter values for each of the parameters that the workflow document defined for the workflow resource.
workflowArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the workflow resource.