interface CfnDatastoreMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.HealthImaging.CfnDatastoreMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awshealthimaging#CfnDatastoreMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.healthimaging.CfnDatastoreMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_healthimaging.CfnDatastoreMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_healthimaging » 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 { aws_healthimaging as healthimaging } from '@aws-cdk/cfn-property-mixins';
const cfnDatastoreMixinProps: healthimaging.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