Class: Aws::Keyspaces::Types::ReplicationGroupStatus
- Inherits:
-
Struct
- Object
- Struct
- Aws::Keyspaces::Types::ReplicationGroupStatus
- Includes:
- Structure
- Defined in:
- 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.
1551 1552 1553 1554 1555 1556 1557 |
# File 'lib/aws-sdk-keyspaces/types.rb', line 1551 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.
1551 1552 1553 1554 1555 1556 1557 |
# File 'lib/aws-sdk-keyspaces/types.rb', line 1551 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.
1551 1552 1553 1554 1555 1556 1557 |
# File 'lib/aws-sdk-keyspaces/types.rb', line 1551 class ReplicationGroupStatus < Struct.new( :region, :keyspace_status, :tables_replication_progress) SENSITIVE = [] include Aws::Structure end |