Class WorkflowReference
A reference to a Workflow resource.
Implements
Inherited Members
Namespace: Amazon.CDK.Interfaces.Transfer
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class WorkflowReference : IWorkflowReference
Syntax (vb)
Public Class WorkflowReference Implements IWorkflowReference
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.Interfaces.Transfer;
var workflowReference = new WorkflowReference {
WorkflowArn = "workflowArn",
WorkflowId = "workflowId"
};
Synopsis
Constructors
| WorkflowReference() | A reference to a Workflow resource. |
Properties
| WorkflowArn | The ARN of the Workflow resource. |
| WorkflowId | The WorkflowId of the Workflow resource. |
Constructors
WorkflowReference()
A reference to a Workflow resource.
public WorkflowReference()
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.Interfaces.Transfer;
var workflowReference = new WorkflowReference {
WorkflowArn = "workflowArn",
WorkflowId = "workflowId"
};
Properties
WorkflowArn
The ARN of the Workflow resource.
public string WorkflowArn { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
WorkflowId
The WorkflowId of the Workflow resource.
public string WorkflowId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated