Show / Hide Table of Contents

Class CfnImagePropsMixin.WorkflowConfigurationProperty

Contains control settings and configurable inputs for a workflow resource.

Inheritance
object
CfnImagePropsMixin.WorkflowConfigurationProperty
Implements
CfnImagePropsMixin.IWorkflowConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-workflowconfiguration.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-workflowconfiguration.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-workflowconfiguration.html#cfn-imagebuilder-image-workflowconfiguration-onfailure

ParallelGroup

Test workflows are defined within named runtime groups called parallel groups.

public string? ParallelGroup { get; set; }
Property Value

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-workflowconfiguration.html#cfn-imagebuilder-image-workflowconfiguration-parallelgroup

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-workflowconfiguration.html#cfn-imagebuilder-image-workflowconfiguration-parameters

Type union: either IResolvable or (either IResolvable or CfnImagePropsMixin.IWorkflowParameterProperty)[]

WorkflowArn

The Amazon Resource Name (ARN) of the workflow resource.

public string? WorkflowArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-workflowconfiguration.html#cfn-imagebuilder-image-workflowconfiguration-workflowarn

Implements

CfnImagePropsMixin.IWorkflowConfigurationProperty
Back to top Generated by DocFX