Interface CfnImagePipeline.IWorkflowConfigurationProperty
Contains control settings and configurable inputs for a workflow resource.
Namespace: Amazon.CDK.AWS.ImageBuilder
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IWorkflowConfigurationProperty
Syntax (vb)
Public Interface IWorkflowConfigurationProperty
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.ImageBuilder;
var workflowConfigurationProperty = new WorkflowConfigurationProperty {
OnFailure = "onFailure",
ParallelGroup = "parallelGroup",
Parameters = new [] { new WorkflowParameterProperty {
Name = "name",
Value = new [] { "value" }
} },
WorkflowArn = "workflowArn"
};
Synopsis
Properties
OnFailure | The action to take if the workflow fails. |
ParallelGroup | Test workflows are defined within named runtime groups called parallel groups. |
Parameters | Contains parameter values for each of the parameters that the workflow document defined for the workflow resource. |
WorkflowArn | The Amazon Resource Name (ARN) of the workflow resource. |
Properties
OnFailure
The action to take if the workflow fails.
virtual string OnFailure { get; }
Property Value
System.String
Remarks
ParallelGroup
Test workflows are defined within named runtime groups called parallel groups.
virtual string ParallelGroup { get; }
Property Value
System.String
Remarks
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
Contains parameter values for each of the parameters that the workflow document defined for the workflow resource.
virtual object Parameters { get; }
Property Value
System.Object
Remarks
WorkflowArn
The Amazon Resource Name (ARN) of the workflow resource.
virtual string WorkflowArn { get; }
Property Value
System.String