Class CfnImagePropsMixin.WorkflowConfigurationProperty
Contains control settings and configurable inputs for a workflow resource.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.ImageBuilder.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnImagePropsMixin.WorkflowConfigurationProperty : CfnImagePropsMixin.IWorkflowConfigurationProperty
Syntax (vb)
Public Class CfnImagePropsMixin.WorkflowConfigurationProperty Implements CfnImagePropsMixin.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.Mixins.Preview.AWS.ImageBuilder.Mixins;
var workflowConfigurationProperty = new WorkflowConfigurationProperty {
OnFailure = "onFailure",
ParallelGroup = "parallelGroup",
Parameters = new [] { new WorkflowParameterProperty {
Name = "name",
Value = new [] { "value" }
} },
WorkflowArn = "workflowArn"
};
Synopsis
Constructors
| WorkflowConfigurationProperty() | Contains control settings and configurable inputs for a workflow resource. |
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. |
Constructors
WorkflowConfigurationProperty()
Contains control settings and configurable inputs for a workflow resource.
public WorkflowConfigurationProperty()
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.Mixins.Preview.AWS.ImageBuilder.Mixins;
var workflowConfigurationProperty = new WorkflowConfigurationProperty {
OnFailure = "onFailure",
ParallelGroup = "parallelGroup",
Parameters = new [] { new WorkflowParameterProperty {
Name = "name",
Value = new [] { "value" }
} },
WorkflowArn = "workflowArn"
};
Properties
OnFailure
The action to take if the workflow fails.
public string? OnFailure { get; set; }
Property Value
Remarks
ParallelGroup
Test workflows are defined within named runtime groups called parallel groups.
public string? ParallelGroup { get; set; }
Property Value
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.
public object? Parameters { get; set; }
Property Value
Remarks
WorkflowArn
The Amazon Resource Name (ARN) of the workflow resource.
public string? WorkflowArn { get; set; }