Class: Aws::Keyspaces::Types::KeyspaceSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::Keyspaces::Types::KeyspaceSummary
- Defined in:
- gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb
Overview
Represents the properties of a keyspace.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#keyspace_name ⇒ String
The name of the keyspace.
-
#replication_regions ⇒ Array<String>
If the
replicationStrategy
of the keyspace isMULTI_REGION
, a list of replication Regions is returned. -
#replication_strategy ⇒ String
This property specifies if a keyspace is a single Region keyspace or a multi-Region keyspace.
-
#resource_arn ⇒ String
The unique identifier of the keyspace in the format of an Amazon Resource Name (ARN).
Instance Attribute Details
#keyspace_name ⇒ String
The name of the keyspace.
1175 1176 1177 1178 1179 1180 1181 1182 |
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 1175 class KeyspaceSummary < Struct.new( :keyspace_name, :resource_arn, :replication_strategy, :replication_regions) SENSITIVE = [] include Aws::Structure end |
#replication_regions ⇒ Array<String>
If the replicationStrategy
of the keyspace is MULTI_REGION
, a
list of replication Regions is returned.
1175 1176 1177 1178 1179 1180 1181 1182 |
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 1175 class KeyspaceSummary < Struct.new( :keyspace_name, :resource_arn, :replication_strategy, :replication_regions) SENSITIVE = [] include Aws::Structure end |
#replication_strategy ⇒ String
This property specifies if a keyspace is a single Region keyspace or
a multi-Region keyspace. The available values are SINGLE_REGION
or
MULTI_REGION
.
1175 1176 1177 1178 1179 1180 1181 1182 |
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 1175 class KeyspaceSummary < Struct.new( :keyspace_name, :resource_arn, :replication_strategy, :replication_regions) SENSITIVE = [] include Aws::Structure end |
#resource_arn ⇒ String
The unique identifier of the keyspace in the format of an Amazon Resource Name (ARN).
1175 1176 1177 1178 1179 1180 1181 1182 |
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 1175 class KeyspaceSummary < Struct.new( :keyspace_name, :resource_arn, :replication_strategy, :replication_regions) SENSITIVE = [] include Aws::Structure end |