Class: Aws::DynamoDB::Types::TableAutoScalingDescription
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::TableAutoScalingDescription
- Defined in:
- gems/aws-sdk-dynamodb/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.
8617 8618 8619 8620 8621 8622 8623 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 8617 class TableAutoScalingDescription < Struct.new( :table_name, :table_status, :replicas) SENSITIVE = [] include Aws::Structure end |
#table_name ⇒ String
The name of the table.
8617 8618 8619 8620 8621 8622 8623 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 8617 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.
8617 8618 8619 8620 8621 8622 8623 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 8617 class TableAutoScalingDescription < Struct.new( :table_name, :table_status, :replicas) SENSITIVE = [] include Aws::Structure end |