interface CfnDatastoreProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.HealthImaging.CfnDatastoreProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awshealthimaging#CfnDatastoreProps |
Java | software.amazon.awscdk.services.healthimaging.CfnDatastoreProps |
Python | aws_cdk.aws_healthimaging.CfnDatastoreProps |
TypeScript | aws-cdk-lib » aws_healthimaging » CfnDatastoreProps |
Properties for defining a CfnDatastore.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_healthimaging as healthimaging } from 'aws-cdk-lib';
const cfnDatastoreProps: healthimaging.CfnDatastoreProps = {
datastoreName: 'datastoreName',
kmsKeyArn: 'kmsKeyArn',
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| datastore | string | The data store name. |
| kms | string | The Amazon Resource Name (ARN) assigned to the Key Management Service (KMS) key for accessing encrypted data. |
| tags? | { [string]: string } | The tags provided when creating a data store. |
datastoreName?
Type:
string
(optional)
The data store name.
kmsKeyArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) assigned to the Key Management Service (KMS) key for accessing encrypted data.
tags?
Type:
{ [string]: string }
(optional)
The tags provided when creating a data store.

.NET
Go
Java
Python
TypeScript