WorkflowReference
- class aws_cdk.aws_transfer.WorkflowReference(*, workflow_arn, workflow_id)
Bases:
object
A reference to a Workflow resource.
- Parameters:
workflow_arn (
str
) – The ARN of the Workflow resource.workflow_id (
str
) – The WorkflowId of the Workflow resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_transfer as transfer workflow_reference = transfer.WorkflowReference( workflow_arn="workflowArn", workflow_id="workflowId" )
Attributes
- workflow_arn
The ARN of the Workflow resource.
- workflow_id
The WorkflowId of the Workflow resource.