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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-healthimaging-datastore.html

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-healthimaging-datastore.html#cfn-healthimaging-datastore-datastorename

kms_key_arn

The Amazon Resource Name (ARN) assigned to the Key Management Service (KMS) key for accessing encrypted data.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-healthimaging-datastore.html#cfn-healthimaging-datastore-kmskeyarn

tags

The tags provided when creating a data store.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-healthimaging-datastore.html#cfn-healthimaging-datastore-tags