DatastoreReference
- class aws_cdk.interfaces.aws_healthimaging.DatastoreReference(*, datastore_arn, datastore_id)
Bases:
objectA 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.interfaces import aws_healthimaging as interfaces_aws_healthimaging datastore_reference = interfaces_aws_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.