KeyspaceState constructor

const KeyspaceState({
  1. Input<String?>? arn,
  2. Input<String?>? name,
  3. Input<String?>? region,
  4. Input<KeyspaceReplicationSpecification?>? replicationSpecification,
  5. Input<Map<String, String>?>? tags,
  6. Input<Map<String, String>?>? tagsAll,
})

Creates a new KeyspaceState. arn The ARN of the keyspace. name The name of the keyspace to be created. region Region where this resource will be managed. Defaults to the Region set in the provider configuration. replicationSpecification The replication specification of the keyspace. tags A map of tags to assign to the resource. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level. tagsAll A map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.

Implementation

const KeyspaceState({
  this.arn,
  this.name,
  this.region,
  this.replicationSpecification,
  this.tags,
  this.tagsAll,
});