We recommend new projects start with resources from the AWS provider.
aws-native.cassandra.Keyspace
Explore with Pulumi AI
We recommend new projects start with resources from the AWS provider.
Resource schema for AWS::Cassandra::Keyspace
Example Usage
Example
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AwsNative = Pulumi.AwsNative;
return await Deployment.RunAsync(() => 
{
    var myNewKeyspace = new AwsNative.Cassandra.Keyspace("myNewKeyspace", new()
    {
        KeyspaceName = "MyNewKeyspace",
        Tags = new[]
        {
            new AwsNative.Inputs.TagArgs
            {
                Key = "tag1",
                Value = "val1",
            },
            new AwsNative.Inputs.TagArgs
            {
                Key = "tag2",
                Value = "val2",
            },
        },
    });
});
package main
import (
	awsnative "github.com/pulumi/pulumi-aws-native/sdk/go/aws"
	"github.com/pulumi/pulumi-aws-native/sdk/go/aws/cassandra"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := cassandra.NewKeyspace(ctx, "myNewKeyspace", &cassandra.KeyspaceArgs{
			KeyspaceName: pulumi.String("MyNewKeyspace"),
			Tags: aws.TagArray{
				&aws.TagArgs{
					Key:   pulumi.String("tag1"),
					Value: pulumi.String("val1"),
				},
				&aws.TagArgs{
					Key:   pulumi.String("tag2"),
					Value: pulumi.String("val2"),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Coming soon!
import * as pulumi from "@pulumi/pulumi";
import * as aws_native from "@pulumi/aws-native";
const myNewKeyspace = new aws_native.cassandra.Keyspace("myNewKeyspace", {
    keyspaceName: "MyNewKeyspace",
    tags: [
        {
            key: "tag1",
            value: "val1",
        },
        {
            key: "tag2",
            value: "val2",
        },
    ],
});
import pulumi
import pulumi_aws_native as aws_native
my_new_keyspace = aws_native.cassandra.Keyspace("myNewKeyspace",
    keyspace_name="MyNewKeyspace",
    tags=[
        {
            "key": "tag1",
            "value": "val1",
        },
        {
            "key": "tag2",
            "value": "val2",
        },
    ])
Coming soon!
Example
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AwsNative = Pulumi.AwsNative;
return await Deployment.RunAsync(() => 
{
    var multiRegionKeyspace = new AwsNative.Cassandra.Keyspace("multiRegionKeyspace", new()
    {
        KeyspaceName = "MultiRegionKeyspace",
        ReplicationSpecification = new AwsNative.Cassandra.Inputs.KeyspaceReplicationSpecificationArgs
        {
            ReplicationStrategy = AwsNative.Cassandra.KeyspaceReplicationSpecificationReplicationStrategy.MultiRegion,
            RegionList = new[]
            {
                AwsNative.Cassandra.KeyspaceRegionListItem.UsEast1,
                AwsNative.Cassandra.KeyspaceRegionListItem.UsWest2,
                AwsNative.Cassandra.KeyspaceRegionListItem.EuWest1,
            },
        },
    });
});
package main
import (
	"github.com/pulumi/pulumi-aws-native/sdk/go/aws/cassandra"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := cassandra.NewKeyspace(ctx, "multiRegionKeyspace", &cassandra.KeyspaceArgs{
			KeyspaceName: pulumi.String("MultiRegionKeyspace"),
			ReplicationSpecification: &cassandra.KeyspaceReplicationSpecificationArgs{
				ReplicationStrategy: cassandra.KeyspaceReplicationSpecificationReplicationStrategyMultiRegion,
				RegionList: cassandra.KeyspaceRegionListItemArray{
					cassandra.KeyspaceRegionListItemUsEast1,
					cassandra.KeyspaceRegionListItemUsWest2,
					cassandra.KeyspaceRegionListItemEuWest1,
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Coming soon!
import * as pulumi from "@pulumi/pulumi";
import * as aws_native from "@pulumi/aws-native";
const multiRegionKeyspace = new aws_native.cassandra.Keyspace("multiRegionKeyspace", {
    keyspaceName: "MultiRegionKeyspace",
    replicationSpecification: {
        replicationStrategy: aws_native.cassandra.KeyspaceReplicationSpecificationReplicationStrategy.MultiRegion,
        regionList: [
            aws_native.cassandra.KeyspaceRegionListItem.UsEast1,
            aws_native.cassandra.KeyspaceRegionListItem.UsWest2,
            aws_native.cassandra.KeyspaceRegionListItem.EuWest1,
        ],
    },
});
import pulumi
import pulumi_aws_native as aws_native
multi_region_keyspace = aws_native.cassandra.Keyspace("multiRegionKeyspace",
    keyspace_name="MultiRegionKeyspace",
    replication_specification={
        "replication_strategy": aws_native.cassandra.KeyspaceReplicationSpecificationReplicationStrategy.MULTI_REGION,
        "region_list": [
            aws_native.cassandra.KeyspaceRegionListItem.US_EAST1,
            aws_native.cassandra.KeyspaceRegionListItem.US_WEST2,
            aws_native.cassandra.KeyspaceRegionListItem.EU_WEST1,
        ],
    })
Coming soon!
Example
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AwsNative = Pulumi.AwsNative;
return await Deployment.RunAsync(() => 
{
    var multiRegionKeyspace = new AwsNative.Cassandra.Keyspace("multiRegionKeyspace", new()
    {
        KeyspaceName = "MultiRegionKeyspace",
        ReplicationSpecification = new AwsNative.Cassandra.Inputs.KeyspaceReplicationSpecificationArgs
        {
            ReplicationStrategy = AwsNative.Cassandra.KeyspaceReplicationSpecificationReplicationStrategy.MultiRegion,
            RegionList = new[]
            {
                AwsNative.Cassandra.KeyspaceRegionListItem.UsEast1,
                AwsNative.Cassandra.KeyspaceRegionListItem.UsWest2,
                AwsNative.Cassandra.KeyspaceRegionListItem.EuWest1,
            },
        },
    });
});
package main
import (
	"github.com/pulumi/pulumi-aws-native/sdk/go/aws/cassandra"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := cassandra.NewKeyspace(ctx, "multiRegionKeyspace", &cassandra.KeyspaceArgs{
			KeyspaceName: pulumi.String("MultiRegionKeyspace"),
			ReplicationSpecification: &cassandra.KeyspaceReplicationSpecificationArgs{
				ReplicationStrategy: cassandra.KeyspaceReplicationSpecificationReplicationStrategyMultiRegion,
				RegionList: cassandra.KeyspaceRegionListItemArray{
					cassandra.KeyspaceRegionListItemUsEast1,
					cassandra.KeyspaceRegionListItemUsWest2,
					cassandra.KeyspaceRegionListItemEuWest1,
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Coming soon!
import * as pulumi from "@pulumi/pulumi";
import * as aws_native from "@pulumi/aws-native";
const multiRegionKeyspace = new aws_native.cassandra.Keyspace("multiRegionKeyspace", {
    keyspaceName: "MultiRegionKeyspace",
    replicationSpecification: {
        replicationStrategy: aws_native.cassandra.KeyspaceReplicationSpecificationReplicationStrategy.MultiRegion,
        regionList: [
            aws_native.cassandra.KeyspaceRegionListItem.UsEast1,
            aws_native.cassandra.KeyspaceRegionListItem.UsWest2,
            aws_native.cassandra.KeyspaceRegionListItem.EuWest1,
        ],
    },
});
import pulumi
import pulumi_aws_native as aws_native
multi_region_keyspace = aws_native.cassandra.Keyspace("multiRegionKeyspace",
    keyspace_name="MultiRegionKeyspace",
    replication_specification={
        "replication_strategy": aws_native.cassandra.KeyspaceReplicationSpecificationReplicationStrategy.MULTI_REGION,
        "region_list": [
            aws_native.cassandra.KeyspaceRegionListItem.US_EAST1,
            aws_native.cassandra.KeyspaceRegionListItem.US_WEST2,
            aws_native.cassandra.KeyspaceRegionListItem.EU_WEST1,
        ],
    })
Coming soon!
Create Keyspace Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Keyspace(name: string, args?: KeyspaceArgs, opts?: CustomResourceOptions);@overload
def Keyspace(resource_name: str,
             args: Optional[KeyspaceArgs] = None,
             opts: Optional[ResourceOptions] = None)
@overload
def Keyspace(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             client_side_timestamps_enabled: Optional[bool] = None,
             keyspace_name: Optional[str] = None,
             replication_specification: Optional[KeyspaceReplicationSpecificationArgs] = None,
             tags: Optional[Sequence[_root_inputs.TagArgs]] = None)func NewKeyspace(ctx *Context, name string, args *KeyspaceArgs, opts ...ResourceOption) (*Keyspace, error)public Keyspace(string name, KeyspaceArgs? args = null, CustomResourceOptions? opts = null)
public Keyspace(String name, KeyspaceArgs args)
public Keyspace(String name, KeyspaceArgs args, CustomResourceOptions options)
type: aws-native:cassandra:Keyspace
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args KeyspaceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args KeyspaceArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args KeyspaceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args KeyspaceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args KeyspaceArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Keyspace Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Keyspace resource accepts the following input properties:
- ClientSide boolTimestamps Enabled 
- Indicates whether client-side timestamps are enabled (true) or disabled (false) for all tables in the keyspace. To add a Region to a single-Region keyspace with at least one table, the value must be set to true. After you enabled client-side timestamps for a table, you can’t disable it again.
- KeyspaceName string
- Name for Cassandra keyspace
- ReplicationSpecification Pulumi.Aws Native. Cassandra. Inputs. Keyspace Replication Specification 
- Specifies the - ReplicationStrategyof a keyspace. The options are:- SINGLE_REGIONfor a single Region keyspace (optional) or
- MULTI_REGIONfor a multi-Region keyspace
 - If no - ReplicationStrategyis provided, the default is- SINGLE_REGION. If you choose- MULTI_REGION, you must also provide a- RegionListwith the AWS Regions that the keyspace is replicated in.
- 
List<Pulumi.Aws Native. Inputs. Tag> 
- An array of key-value pairs to apply to this resource. - For more information, see Tag . 
- ClientSide boolTimestamps Enabled 
- Indicates whether client-side timestamps are enabled (true) or disabled (false) for all tables in the keyspace. To add a Region to a single-Region keyspace with at least one table, the value must be set to true. After you enabled client-side timestamps for a table, you can’t disable it again.
- KeyspaceName string
- Name for Cassandra keyspace
- ReplicationSpecification KeyspaceReplication Specification Args 
- Specifies the - ReplicationStrategyof a keyspace. The options are:- SINGLE_REGIONfor a single Region keyspace (optional) or
- MULTI_REGIONfor a multi-Region keyspace
 - If no - ReplicationStrategyis provided, the default is- SINGLE_REGION. If you choose- MULTI_REGION, you must also provide a- RegionListwith the AWS Regions that the keyspace is replicated in.
- 
TagArgs 
- An array of key-value pairs to apply to this resource. - For more information, see Tag . 
- clientSide BooleanTimestamps Enabled 
- Indicates whether client-side timestamps are enabled (true) or disabled (false) for all tables in the keyspace. To add a Region to a single-Region keyspace with at least one table, the value must be set to true. After you enabled client-side timestamps for a table, you can’t disable it again.
- keyspaceName String
- Name for Cassandra keyspace
- replicationSpecification KeyspaceReplication Specification 
- Specifies the - ReplicationStrategyof a keyspace. The options are:- SINGLE_REGIONfor a single Region keyspace (optional) or
- MULTI_REGIONfor a multi-Region keyspace
 - If no - ReplicationStrategyis provided, the default is- SINGLE_REGION. If you choose- MULTI_REGION, you must also provide a- RegionListwith the AWS Regions that the keyspace is replicated in.
- List<Tag>
- An array of key-value pairs to apply to this resource. - For more information, see Tag . 
- clientSide booleanTimestamps Enabled 
- Indicates whether client-side timestamps are enabled (true) or disabled (false) for all tables in the keyspace. To add a Region to a single-Region keyspace with at least one table, the value must be set to true. After you enabled client-side timestamps for a table, you can’t disable it again.
- keyspaceName string
- Name for Cassandra keyspace
- replicationSpecification KeyspaceReplication Specification 
- Specifies the - ReplicationStrategyof a keyspace. The options are:- SINGLE_REGIONfor a single Region keyspace (optional) or
- MULTI_REGIONfor a multi-Region keyspace
 - If no - ReplicationStrategyis provided, the default is- SINGLE_REGION. If you choose- MULTI_REGION, you must also provide a- RegionListwith the AWS Regions that the keyspace is replicated in.
- Tag[]
- An array of key-value pairs to apply to this resource. - For more information, see Tag . 
- client_side_ booltimestamps_ enabled 
- Indicates whether client-side timestamps are enabled (true) or disabled (false) for all tables in the keyspace. To add a Region to a single-Region keyspace with at least one table, the value must be set to true. After you enabled client-side timestamps for a table, you can’t disable it again.
- keyspace_name str
- Name for Cassandra keyspace
- replication_specification KeyspaceReplication Specification Args 
- Specifies the - ReplicationStrategyof a keyspace. The options are:- SINGLE_REGIONfor a single Region keyspace (optional) or
- MULTI_REGIONfor a multi-Region keyspace
 - If no - ReplicationStrategyis provided, the default is- SINGLE_REGION. If you choose- MULTI_REGION, you must also provide a- RegionListwith the AWS Regions that the keyspace is replicated in.
- 
Sequence[TagArgs] 
- An array of key-value pairs to apply to this resource. - For more information, see Tag . 
- clientSide BooleanTimestamps Enabled 
- Indicates whether client-side timestamps are enabled (true) or disabled (false) for all tables in the keyspace. To add a Region to a single-Region keyspace with at least one table, the value must be set to true. After you enabled client-side timestamps for a table, you can’t disable it again.
- keyspaceName String
- Name for Cassandra keyspace
- replicationSpecification Property Map
- Specifies the - ReplicationStrategyof a keyspace. The options are:- SINGLE_REGIONfor a single Region keyspace (optional) or
- MULTI_REGIONfor a multi-Region keyspace
 - If no - ReplicationStrategyis provided, the default is- SINGLE_REGION. If you choose- MULTI_REGION, you must also provide a- RegionListwith the AWS Regions that the keyspace is replicated in.
- List<Property Map>
- An array of key-value pairs to apply to this resource. - For more information, see Tag . 
Outputs
All input properties are implicitly available as output properties. Additionally, the Keyspace resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Supporting Types
KeyspaceRegionListItem, KeyspaceRegionListItemArgs        
- ApNortheast1 
- ap-northeast-1
- ApNortheast2 
- ap-northeast-2
- ApSouth1 
- ap-south-1
- ApSoutheast1 
- ap-southeast-1
- ApSoutheast2 
- ap-southeast-2
- CaCentral1 
- ca-central-1
- EuCentral1 
- eu-central-1
- EuNorth1 
- eu-north-1
- EuWest1 
- eu-west-1
- EuWest2 
- eu-west-2
- EuWest3 
- eu-west-3
- SaEast1 
- sa-east-1
- UsEast1 
- us-east-1
- UsEast2 
- us-east-2
- UsWest1 
- us-west-1
- UsWest2 
- us-west-2
- KeyspaceRegion List Item Ap Northeast1 
- ap-northeast-1
- KeyspaceRegion List Item Ap Northeast2 
- ap-northeast-2
- KeyspaceRegion List Item Ap South1 
- ap-south-1
- KeyspaceRegion List Item Ap Southeast1 
- ap-southeast-1
- KeyspaceRegion List Item Ap Southeast2 
- ap-southeast-2
- KeyspaceRegion List Item Ca Central1 
- ca-central-1
- KeyspaceRegion List Item Eu Central1 
- eu-central-1
- KeyspaceRegion List Item Eu North1 
- eu-north-1
- KeyspaceRegion List Item Eu West1 
- eu-west-1
- KeyspaceRegion List Item Eu West2 
- eu-west-2
- KeyspaceRegion List Item Eu West3 
- eu-west-3
- KeyspaceRegion List Item Sa East1 
- sa-east-1
- KeyspaceRegion List Item Us East1 
- us-east-1
- KeyspaceRegion List Item Us East2 
- us-east-2
- KeyspaceRegion List Item Us West1 
- us-west-1
- KeyspaceRegion List Item Us West2 
- us-west-2
- ApNortheast1 
- ap-northeast-1
- ApNortheast2 
- ap-northeast-2
- ApSouth1 
- ap-south-1
- ApSoutheast1 
- ap-southeast-1
- ApSoutheast2 
- ap-southeast-2
- CaCentral1 
- ca-central-1
- EuCentral1 
- eu-central-1
- EuNorth1 
- eu-north-1
- EuWest1 
- eu-west-1
- EuWest2 
- eu-west-2
- EuWest3 
- eu-west-3
- SaEast1 
- sa-east-1
- UsEast1 
- us-east-1
- UsEast2 
- us-east-2
- UsWest1 
- us-west-1
- UsWest2 
- us-west-2
- ApNortheast1 
- ap-northeast-1
- ApNortheast2 
- ap-northeast-2
- ApSouth1 
- ap-south-1
- ApSoutheast1 
- ap-southeast-1
- ApSoutheast2 
- ap-southeast-2
- CaCentral1 
- ca-central-1
- EuCentral1 
- eu-central-1
- EuNorth1 
- eu-north-1
- EuWest1 
- eu-west-1
- EuWest2 
- eu-west-2
- EuWest3 
- eu-west-3
- SaEast1 
- sa-east-1
- UsEast1 
- us-east-1
- UsEast2 
- us-east-2
- UsWest1 
- us-west-1
- UsWest2 
- us-west-2
- AP_NORTHEAST1
- ap-northeast-1
- AP_NORTHEAST2
- ap-northeast-2
- AP_SOUTH1
- ap-south-1
- AP_SOUTHEAST1
- ap-southeast-1
- AP_SOUTHEAST2
- ap-southeast-2
- CA_CENTRAL1
- ca-central-1
- EU_CENTRAL1
- eu-central-1
- EU_NORTH1
- eu-north-1
- EU_WEST1
- eu-west-1
- EU_WEST2
- eu-west-2
- EU_WEST3
- eu-west-3
- SA_EAST1
- sa-east-1
- US_EAST1
- us-east-1
- US_EAST2
- us-east-2
- US_WEST1
- us-west-1
- US_WEST2
- us-west-2
- "ap-northeast-1"
- ap-northeast-1
- "ap-northeast-2"
- ap-northeast-2
- "ap-south-1"
- ap-south-1
- "ap-southeast-1"
- ap-southeast-1
- "ap-southeast-2"
- ap-southeast-2
- "ca-central-1"
- ca-central-1
- "eu-central-1"
- eu-central-1
- "eu-north-1"
- eu-north-1
- "eu-west-1"
- eu-west-1
- "eu-west-2"
- eu-west-2
- "eu-west-3"
- eu-west-3
- "sa-east-1"
- sa-east-1
- "us-east-1"
- us-east-1
- "us-east-2"
- us-east-2
- "us-west-1"
- us-west-1
- "us-west-2"
- us-west-2
KeyspaceReplicationSpecification, KeyspaceReplicationSpecificationArgs      
- RegionList List<Pulumi.Aws Native. Cassandra. Keyspace Region List Item> 
- Specifies the AWS Regions that the keyspace is replicated in. You must specify at least two and up to six Regions, including the Region that the keyspace is being created in.
- ReplicationStrategy Pulumi.Aws Native. Cassandra. Keyspace Replication Specification Replication Strategy 
- The options are: - SINGLE_REGION(optional)
- MULTI_REGION
 - If no value is specified, the default is - SINGLE_REGION. If- MULTI_REGIONis specified,- RegionListis required.
- RegionList []KeyspaceRegion List Item 
- Specifies the AWS Regions that the keyspace is replicated in. You must specify at least two and up to six Regions, including the Region that the keyspace is being created in.
- ReplicationStrategy KeyspaceReplication Specification Replication Strategy 
- The options are: - SINGLE_REGION(optional)
- MULTI_REGION
 - If no value is specified, the default is - SINGLE_REGION. If- MULTI_REGIONis specified,- RegionListis required.
- regionList List<KeyspaceRegion List Item> 
- Specifies the AWS Regions that the keyspace is replicated in. You must specify at least two and up to six Regions, including the Region that the keyspace is being created in.
- replicationStrategy KeyspaceReplication Specification Replication Strategy 
- The options are: - SINGLE_REGION(optional)
- MULTI_REGION
 - If no value is specified, the default is - SINGLE_REGION. If- MULTI_REGIONis specified,- RegionListis required.
- regionList KeyspaceRegion List Item[] 
- Specifies the AWS Regions that the keyspace is replicated in. You must specify at least two and up to six Regions, including the Region that the keyspace is being created in.
- replicationStrategy KeyspaceReplication Specification Replication Strategy 
- The options are: - SINGLE_REGION(optional)
- MULTI_REGION
 - If no value is specified, the default is - SINGLE_REGION. If- MULTI_REGIONis specified,- RegionListis required.
- region_list Sequence[KeyspaceRegion List Item] 
- Specifies the AWS Regions that the keyspace is replicated in. You must specify at least two and up to six Regions, including the Region that the keyspace is being created in.
- replication_strategy KeyspaceReplication Specification Replication Strategy 
- The options are: - SINGLE_REGION(optional)
- MULTI_REGION
 - If no value is specified, the default is - SINGLE_REGION. If- MULTI_REGIONis specified,- RegionListis required.
- regionList List<"ap-northeast-1" | "ap-northeast-2" | "ap-south-1" | "ap-southeast-1" | "ap-southeast-2" | "ca-central-1" | "eu-central-1" | "eu-north-1" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "sa-east-1" | "us-east-1" | "us-east-2" | "us-west-1" | "us-west-2">
- Specifies the AWS Regions that the keyspace is replicated in. You must specify at least two and up to six Regions, including the Region that the keyspace is being created in.
- replicationStrategy "SINGLE_REGION" | "MULTI_REGION"
- The options are: - SINGLE_REGION(optional)
- MULTI_REGION
 - If no value is specified, the default is - SINGLE_REGION. If- MULTI_REGIONis specified,- RegionListis required.
KeyspaceReplicationSpecificationReplicationStrategy, KeyspaceReplicationSpecificationReplicationStrategyArgs          
- SingleRegion 
- SINGLE_REGION
- MultiRegion 
- MULTI_REGION
- KeyspaceReplication Specification Replication Strategy Single Region 
- SINGLE_REGION
- KeyspaceReplication Specification Replication Strategy Multi Region 
- MULTI_REGION
- SingleRegion 
- SINGLE_REGION
- MultiRegion 
- MULTI_REGION
- SingleRegion 
- SINGLE_REGION
- MultiRegion 
- MULTI_REGION
- SINGLE_REGION
- SINGLE_REGION
- MULTI_REGION
- MULTI_REGION
- "SINGLE_REGION"
- SINGLE_REGION
- "MULTI_REGION"
- MULTI_REGION
Tag, TagArgs  
Package Details
- Repository
- AWS Native pulumi/pulumi-aws-native
- License
- Apache-2.0
We recommend new projects start with resources from the AWS provider.