ConfigurationReference

class aws_cdk.interfaces.aws_omics.ConfigurationReference(*, configuration_arn, configuration_name)

Bases: object

A reference to a Configuration resource.

Parameters:
  • configuration_arn (str) – The ARN of the Configuration resource.

  • configuration_name (str) – The Name of the Configuration 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_omics

configuration_reference = interfaces_omics.ConfigurationReference(
    configuration_arn="configurationArn",
    configuration_name="configurationName"
)

Attributes

configuration_arn

The ARN of the Configuration resource.

configuration_name

The Name of the Configuration resource.