WorkflowReference

class aws_cdk.aws_omics.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 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 import aws_omics as omics

workflow_reference = 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.