CfnDatastoreProps
- class aws_cdk.aws_healthimaging.CfnDatastoreProps(*, datastore_name=None, kms_key_arn=None, tags=None)
Bases:
object
Properties for defining a
CfnDatastore
.- 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 import aws_healthimaging as healthimaging cfn_datastore_props = healthimaging.CfnDatastoreProps( 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.