@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:42.582Z") @Stability(value=Stable) public interface CfnDatabaseProps extends software.amazon.jsii.JsiiSerializable
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.timestream.*;
CfnDatabaseProps cfnDatabaseProps = CfnDatabaseProps.builder()
.databaseName("databaseName")
.kmsKeyId("kmsKeyId")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDatabaseProps.Builder
A builder for
CfnDatabaseProps |
static class |
CfnDatabaseProps.Jsii$Proxy
An implementation for
CfnDatabaseProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnDatabaseProps.Builder |
builder() |
default String |
getDatabaseName()
The name of the Timestream database.
|
default String |
getKmsKeyId()
The identifier of the AWS KMS key used to encrypt the data stored in the database.
|
default List<CfnTag> |
getTags()
The tags to add to the database.
|
@Stability(value=Stable) @Nullable default String getDatabaseName()
Length Constraints : Minimum length of 3 bytes. Maximum length of 256 bytes.
@Stability(value=Stable) @Nullable default String getKmsKeyId()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnDatabaseProps.Builder builder()
CfnDatabaseProps.Builder of CfnDatabasePropsCopyright © 2022. All rights reserved.