Interface CfnDatabaseMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDatabaseMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:05.832Z")
@Stability(Stable)
public interface CfnDatabaseMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnDatabasePropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.timestream.*;
CfnDatabaseMixinProps cfnDatabaseMixinProps = CfnDatabaseMixinProps.builder()
.databaseName("databaseName")
.kmsKeyId("kmsKeyId")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDatabaseMixinPropsstatic final classAn implementation forCfnDatabaseMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDatabaseName
The name of the Timestream database.Length Constraints : Minimum length of 3 bytes. Maximum length of 256 bytes.
- See Also:
-
getKmsKeyId
The identifier of the AWS key used to encrypt the data stored in the database.- See Also:
-
getTags
The tags to add to the database.- See Also:
-
builder
- Returns:
- a
CfnDatabaseMixinProps.BuilderofCfnDatabaseMixinProps
-