interface DatastoreReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.HealthImaging.DatastoreReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awshealthimaging#DatastoreReference |
Java | software.amazon.awscdk.interfaces.healthimaging.DatastoreReference |
Python | aws_cdk.interfaces.aws_healthimaging.DatastoreReference |
TypeScript | aws-cdk-lib » interfaces » aws_healthimaging » DatastoreReference |
A reference to a Datastore resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_healthimaging as interfaces_healthimaging } from 'aws-cdk-lib/interfaces';
const datastoreReference: interfaces_healthimaging.DatastoreReference = {
datastoreArn: 'datastoreArn',
datastoreId: 'datastoreId',
};
Properties
| Name | Type | Description |
|---|---|---|
| datastore | string | The ARN of the Datastore resource. |
| datastore | string | The DatastoreId of the Datastore resource. |
datastoreArn
Type:
string
The ARN of the Datastore resource.
datastoreId
Type:
string
The DatastoreId of the Datastore resource.

.NET
Go
Java
Python
TypeScript