CfnDatastoreMixinProps
- class aws_cdk.mixins_preview.aws_healthimaging.mixins.CfnDatastoreMixinProps(*, datastore_name=None, kms_key_arn=None, tags=None)
Bases:
objectProperties for CfnDatastorePropsMixin.
- Parameters:
datastore_name (
Optional[str]) – The data store name.kms_key_arn (
Optional[str]) – The Amazon Resource Name (ARN) assigned to the Key Management Service (KMS) key for accessing encrypted data.tags (
Optional[Mapping[str,str]]) – The tags provided when creating a data store.
- See:
- 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.mixins_preview.aws_healthimaging import mixins as healthimaging_mixins cfn_datastore_mixin_props = healthimaging_mixins.CfnDatastoreMixinProps( datastore_name="datastoreName", kms_key_arn="kmsKeyArn", tags={ "tags_key": "tags" } )
Attributes
- datastore_name
The data store name.
- kms_key_arn
The Amazon Resource Name (ARN) assigned to the Key Management Service (KMS) key for accessing encrypted data.
- tags
The tags provided when creating a data store.