Class: Aws::Keyspaces::Types::CreateKeyspaceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Keyspaces::Types::CreateKeyspaceRequest
- Defined in:
- gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#keyspace_name ⇒ String
The name of the keyspace to be created.
-
#replication_specification ⇒ Types::ReplicationSpecification
The replication specification of the keyspace includes:.
-
#tags ⇒ Array<Types::Tag>
A list of key-value pair tags to be attached to the keyspace.
Instance Attribute Details
#keyspace_name ⇒ String
The name of the keyspace to be created.
489 490 491 492 493 494 495 |
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 489 class CreateKeyspaceRequest < Struct.new( :keyspace_name, :tags, :replication_specification) SENSITIVE = [] include Aws::Structure end |
#replication_specification ⇒ Types::ReplicationSpecification
The replication specification of the keyspace includes:
replicationStrategy
- the required value isSINGLE_REGION
orMULTI_REGION
.regionList
- if thereplicationStrategy
isMULTI_REGION
, theregionList
requires the current Region and at least one additional Amazon Web Services Region where the keyspace is going to be replicated in.
489 490 491 492 493 494 495 |
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 489 class CreateKeyspaceRequest < Struct.new( :keyspace_name, :tags, :replication_specification) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
A list of key-value pair tags to be attached to the keyspace.
For more information, see Adding tags and labels to Amazon Keyspaces resources in the Amazon Keyspaces Developer Guide.
489 490 491 492 493 494 495 |
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 489 class CreateKeyspaceRequest < Struct.new( :keyspace_name, :tags, :replication_specification) SENSITIVE = [] include Aws::Structure end |