DatastoreReference

class aws_cdk.aws_healthimaging.DatastoreReference(*, datastore_arn, datastore_id)

Bases: object

A reference to a Datastore resource.

Parameters:
  • datastore_arn (str) – The ARN of the Datastore resource.

  • datastore_id (str) – The DatastoreId of the Datastore 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_healthimaging as healthimaging

datastore_reference = healthimaging.DatastoreReference(
    datastore_arn="datastoreArn",
    datastore_id="datastoreId"
)

Attributes

datastore_arn

The ARN of the Datastore resource.

datastore_id

The DatastoreId of the Datastore resource.