interface CfnKeyspaceProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Cassandra.CfnKeyspaceProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscassandra#CfnKeyspaceProps |
Java | software.amazon.awscdk.services.cassandra.CfnKeyspaceProps |
Python | aws_cdk.aws_cassandra.CfnKeyspaceProps |
TypeScript | aws-cdk-lib » aws_cassandra » CfnKeyspaceProps |
Properties for defining a CfnKeyspace
.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cassandra as cassandra } from 'aws-cdk-lib';
const cfnKeyspaceProps: cassandra.CfnKeyspaceProps = {
keyspaceName: 'keyspaceName',
replicationSpecification: {
regionList: ['regionList'],
replicationStrategy: 'replicationStrategy',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
keyspace | string | The name of the keyspace to be created. |
replication | IResolvable | Replication | Specifies the ReplicationStrategy of a keyspace. The options are:. |
tags? | Cfn [] | An array of key-value pairs to apply to this resource. |
keyspaceName?
Type:
string
(optional)
The name of the keyspace to be created.
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}$
replicationSpecification?
Type:
IResolvable
|
Replication
(optional)
Specifies the ReplicationStrategy
of a keyspace. The options are:.
SINGLE_REGION
for a single Region keyspace (optional) orMULTI_REGION
for a multi-Region keyspace
If no ReplicationStrategy
is provided, the default is SINGLE_REGION
. If you choose MULTI_REGION
, you must also provide a RegionList
with the AWS Regions that the keyspace is replicated in.
tags?
Type:
Cfn
[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .