Interface CfnDatastoreProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDatastoreProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-17T14:40:53.485Z")
@Stability(Stable)
public interface CfnDatastoreProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnDatastore.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.healthimaging.*;
CfnDatastoreProps cfnDatastoreProps = CfnDatastoreProps.builder()
.datastoreName("datastoreName")
.kmsKeyArn("kmsKeyArn")
.tags(Map.of(
"tagsKey", "tags"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDatastorePropsstatic final classAn implementation forCfnDatastoreProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnDatastoreProps.Builderbuilder()default StringThe data store name.default StringThe Amazon Resource Name (ARN) assigned to the Key Management Service (KMS) key for accessing encrypted data.getTags()The tags provided when creating a data store.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDatastoreName
The data store name.- See Also:
-
getKmsKeyArn
The Amazon Resource Name (ARN) assigned to the Key Management Service (KMS) key for accessing encrypted data.- See Also:
-
getTags
The tags provided when creating a data store.- See Also:
-
builder
- Returns:
- a
CfnDatastoreProps.BuilderofCfnDatastoreProps
-