interface CfnDatastoreMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.HealthImaging.Mixins.CfnDatastoreMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awshealthimaging/mixins#CfnDatastoreMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.healthimaging.mixins.CfnDatastoreMixinProps |
Python | aws_cdk.mixins_preview.aws_healthimaging.mixins.CfnDatastoreMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_healthimaging » mixins » CfnDatastoreMixinProps |
Properties for CfnDatastorePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as healthimaging_mixins } from '@aws-cdk/mixins-preview/aws-healthimaging';
const cfnDatastoreMixinProps: healthimaging_mixins.CfnDatastoreMixinProps = {
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