@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:36.948Z") @Stability(value=Stable) public interface CfnKeyspaceProps 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.cassandra.*;
CfnKeyspaceProps cfnKeyspaceProps = CfnKeyspaceProps.builder()
.keyspaceName("keyspaceName")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnKeyspaceProps.Builder
A builder for
CfnKeyspaceProps |
static class |
CfnKeyspaceProps.Jsii$Proxy
An implementation for
CfnKeyspaceProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnKeyspaceProps.Builder |
builder() |
default String |
getKeyspaceName()
The name of the keyspace to be created.
|
default List<CfnTag> |
getTags()
A list of key-value pair tags to be attached to the resource.
|
@Stability(value=Stable) @Nullable default String getKeyspaceName()
The keyspace name is case sensitive. If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID for the keyspace name. For more information, see Name type .
Length constraints: Minimum length of 3. Maximum length of 255.
Pattern: ^[a-zA-Z0-9][a-zA-Z0-9_]{1,47}$
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnKeyspaceProps.Builder builder()
CfnKeyspaceProps.Builder of CfnKeyspacePropsCopyright © 2022. All rights reserved.