Class: Aws::DynamoDB::Types::TableAutoScalingDescription
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::TableAutoScalingDescription
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-dynamodb/types.rb
Overview
Represents the auto scaling configuration for a global table.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#replicas ⇒ Array<Types::ReplicaAutoScalingDescription>
Represents replicas of the global table.
-
#table_name ⇒ String
The name of the table.
-
#table_status ⇒ String
The current state of the table:.
Instance Attribute Details
#replicas ⇒ Array<Types::ReplicaAutoScalingDescription>
Represents replicas of the global table.
8585 8586 8587 8588 8589 8590 8591 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 8585 class TableAutoScalingDescription < Struct.new( :table_name, :table_status, :replicas) SENSITIVE = [] include Aws::Structure end |
#table_name ⇒ String
The name of the table.
8585 8586 8587 8588 8589 8590 8591 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 8585 class TableAutoScalingDescription < Struct.new( :table_name, :table_status, :replicas) SENSITIVE = [] include Aws::Structure end |
#table_status ⇒ String
The current state of the table:
-
‘CREATING` - The table is being created.
-
‘UPDATING` - The table is being updated.
-
‘DELETING` - The table is being deleted.
-
‘ACTIVE` - The table is ready for use.
8585 8586 8587 8588 8589 8590 8591 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 8585 class TableAutoScalingDescription < Struct.new( :table_name, :table_status, :replicas) SENSITIVE = [] include Aws::Structure end |