Show / Hide Table of Contents

Class CfnWorkflowMixinProps

Properties for CfnWorkflowPropsMixin.

Inheritance
object
CfnWorkflowMixinProps
Implements
ICfnWorkflowMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Glue
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnWorkflowMixinProps : ICfnWorkflowMixinProps
Syntax (vb)
Public Class CfnWorkflowMixinProps Implements ICfnWorkflowMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.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.CfnPropertyMixins.AWS.Glue;

             var defaultRunProperties;
             var tags;

             var cfnWorkflowMixinProps = new CfnWorkflowMixinProps {
                 DefaultRunProperties = defaultRunProperties,
                 Description = "description",
                 MaxConcurrentRuns = 123,
                 Name = "name",
                 Tags = tags
             };

Synopsis

Constructors

CfnWorkflowMixinProps()

Properties for CfnWorkflowPropsMixin.

Properties

DefaultRunProperties

A collection of properties to be used as part of each execution of the workflow.

Description

A description of the workflow.

MaxConcurrentRuns

You can use this parameter to prevent unwanted multiple updates to data, to control costs, or in some cases, to prevent exceeding the maximum number of concurrent runs of any of the component jobs.

Name

The name of the workflow representing the flow.

Tags

The tags to use with this workflow.

Constructors

CfnWorkflowMixinProps()

Properties for CfnWorkflowPropsMixin.

public CfnWorkflowMixinProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.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.CfnPropertyMixins.AWS.Glue;

             var defaultRunProperties;
             var tags;

             var cfnWorkflowMixinProps = new CfnWorkflowMixinProps {
                 DefaultRunProperties = defaultRunProperties,
                 Description = "description",
                 MaxConcurrentRuns = 123,
                 Name = "name",
                 Tags = tags
             };

Properties

DefaultRunProperties

A collection of properties to be used as part of each execution of the workflow.

public object? DefaultRunProperties { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-defaultrunproperties

Description

A description of the workflow.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-description

MaxConcurrentRuns

You can use this parameter to prevent unwanted multiple updates to data, to control costs, or in some cases, to prevent exceeding the maximum number of concurrent runs of any of the component jobs.

public double? MaxConcurrentRuns { get; set; }
Property Value

double?

Remarks

If you leave this parameter blank, there is no limit to the number of concurrent workflow runs.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-maxconcurrentruns

Name

The name of the workflow representing the flow.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-name

Tags

The tags to use with this workflow.

public object? Tags { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-tags

Implements

ICfnWorkflowMixinProps
Back to top Generated by DocFX