WorkflowReference
- class aws_cdk.interfaces.aws_omics.WorkflowReference(*, workflow_arn, workflow_id)
Bases:
objectA reference to a Workflow resource.
- Parameters:
workflow_arn (
str) – The ARN of the Workflow resource.workflow_id (
str) – The Id 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.interfaces import aws_omics as interfaces_aws_omics workflow_reference = interfaces_aws_omics.WorkflowReference( workflow_arn="workflowArn", workflow_id="workflowId" )
Attributes
- workflow_arn
The ARN of the Workflow resource.
- workflow_id
The Id of the Workflow resource.