Interface CfnDatastoreProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDatastoreProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.106.0 (build e852934)",
date="2025-02-26T00:07:39.141Z")
@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 class
A builder forCfnDatastoreProps
static final class
An implementation forCfnDatastoreProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnDatastoreProps.Builder
builder()
default String
The data store name.default String
The 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.Builder
ofCfnDatastoreProps
-