Class: Aws::Keyspaces::Types::ReplicationGroupStatus
- Inherits:
-
Struct
- Object
- Struct
- Aws::Keyspaces::Types::ReplicationGroupStatus
- Defined in:
- gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb
Overview
This shows the summary status of the keyspace after a new Amazon Web Services Region was added.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#keyspace_status ⇒ String
The status of the keyspace.
-
#region ⇒ String
The name of the Region that was added to the keyspace.
-
#tables_replication_progress ⇒ String
This shows the replication progress of tables in the keyspace.
Instance Attribute Details
#keyspace_status ⇒ String
The status of the keyspace.
1655 1656 1657 1658 1659 1660 1661 |
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 1655 class ReplicationGroupStatus < Struct.new( :region, :keyspace_status, :tables_replication_progress) SENSITIVE = [] include Aws::Structure end |
#region ⇒ String
The name of the Region that was added to the keyspace.
1655 1656 1657 1658 1659 1660 1661 |
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 1655 class ReplicationGroupStatus < Struct.new( :region, :keyspace_status, :tables_replication_progress) SENSITIVE = [] include Aws::Structure end |
#tables_replication_progress ⇒ String
This shows the replication progress of tables in the keyspace. The
value is expressed as a percentage of the newly replicated tables
with status Active
compared to the total number of tables in the
keyspace.
1655 1656 1657 1658 1659 1660 1661 |
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 1655 class ReplicationGroupStatus < Struct.new( :region, :keyspace_status, :tables_replication_progress) SENSITIVE = [] include Aws::Structure end |