Class CfnWorkflowMixinProps
Properties for CfnWorkflowPropsMixin.
Implements
Inherited Members
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
Remarks
Description
A description of the workflow.
public string? Description { get; set; }
Property Value
Remarks
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
Remarks
If you leave this parameter blank, there is no limit to the number of concurrent workflow runs.
Name
The name of the workflow representing the flow.
public string? Name { get; set; }
Property Value
Remarks
Tags
The tags to use with this workflow.
public object? Tags { get; set; }