Class: Aws::DynamoDB::Table
- Inherits:
-
Object
- Object
- Aws::DynamoDB::Table
- Extended by:
- Aws::Deprecations
- Defined in:
- lib/aws-sdk-dynamodb/table.rb
Defined Under Namespace
Classes: Collection
Read-Only Attributes collapse
-
#archival_summary ⇒ Types::ArchivalSummary
Contains information about the table archive.
-
#attribute_definitions ⇒ Array<Types::AttributeDefinition>
An array of ‘AttributeDefinition` objects.
-
#billing_mode_summary ⇒ Types::BillingModeSummary
Contains the details for the read/write capacity mode.
-
#creation_date_time ⇒ Time
The date and time when the table was created, in [UNIX epoch time] format.
-
#deletion_protection_enabled ⇒ Boolean
Indicates whether deletion protection is enabled (true) or disabled (false) on the table.
-
#global_secondary_indexes ⇒ Array<Types::GlobalSecondaryIndexDescription>
The global secondary indexes, if any, on the table.
-
#global_table_version ⇒ String
Represents the version of [global tables] in use, if the table is replicated across Amazon Web Services Regions.
-
#item_count ⇒ Integer
The number of items in the specified table.
-
#key_schema ⇒ Array<Types::KeySchemaElement>
The primary key structure for the table.
-
#latest_stream_arn ⇒ String
The Amazon Resource Name (ARN) that uniquely identifies the latest stream for this table.
-
#latest_stream_label ⇒ String
A timestamp, in ISO 8601 format, for this stream.
-
#local_secondary_indexes ⇒ Array<Types::LocalSecondaryIndexDescription>
Represents one or more local secondary indexes on the table.
- #name ⇒ String (also: #table_name)
-
#provisioned_throughput ⇒ Types::ProvisionedThroughputDescription
The provisioned throughput settings for the table, consisting of read and write capacity units, along with data about increases and decreases.
-
#replicas ⇒ Array<Types::ReplicaDescription>
Represents replicas of the table.
-
#restore_summary ⇒ Types::RestoreSummary
Contains details for the restore.
-
#sse_description ⇒ Types::SSEDescription
The description of the server-side encryption status on the specified table.
-
#stream_specification ⇒ Types::StreamSpecification
The current DynamoDB Streams configuration for the table.
-
#table_arn ⇒ String
The Amazon Resource Name (ARN) that uniquely identifies the table.
-
#table_class_summary ⇒ Types::TableClassSummary
Contains details of the table class.
-
#table_id ⇒ String
Unique identifier for the table for which the backup was created.
-
#table_size_bytes ⇒ Integer
The total size of the specified table, in bytes.
-
#table_status ⇒ String
The current state of the table:.
Actions collapse
- #delete(options = {}) ⇒ Types::DeleteTableOutput
- #delete_item(options = {}) ⇒ Types::DeleteItemOutput
- #get_item(options = {}) ⇒ Types::GetItemOutput
- #identifiers ⇒ Object deprecated private Deprecated.
- #put_item(options = {}) ⇒ Types::PutItemOutput
- #query(options = {}) ⇒ Types::QueryOutput
- #scan(options = {}) ⇒ Types::ScanOutput
- #update(options = {}) ⇒ Table
- #update_item(options = {}) ⇒ Types::UpdateItemOutput
Instance Method Summary collapse
- #client ⇒ Client
-
#data ⇒ Types::TableDescription
Returns the data for this Table.
-
#data_loaded? ⇒ Boolean
Returns ‘true` if this resource is loaded.
-
#initialize(*args) ⇒ Table
constructor
A new instance of Table.
- #load ⇒ self (also: #reload)
-
#wait_until(options = {}) {|resource| ... } ⇒ Resource
deprecated
Deprecated.
Use [Aws::DynamoDB::Client] #wait_until instead
Constructor Details
#initialize(name, options = {}) ⇒ Table #initialize(options = {}) ⇒ Table
Returns a new instance of Table.
22 23 24 25 26 27 28 |
# File 'lib/aws-sdk-dynamodb/table.rb', line 22 def initialize(*args) = Hash === args.last ? args.pop.dup : {} @name = extract_name(args, ) @data = .delete(:data) @client = .delete(:client) || Client.new() @waiter_block_warned = false end |
Instance Method Details
#archival_summary ⇒ Types::ArchivalSummary
Contains information about the table archive.
356 357 358 |
# File 'lib/aws-sdk-dynamodb/table.rb', line 356 def archival_summary data[:archival_summary] end |
#attribute_definitions ⇒ Array<Types::AttributeDefinition>
An array of ‘AttributeDefinition` objects. Each of these objects describes one attribute in the table and index key schema.
Each ‘AttributeDefinition` object in this array is composed of:
-
‘AttributeName` - The name of the attribute.
-
‘AttributeType` - The data type for the attribute.
47 48 49 |
# File 'lib/aws-sdk-dynamodb/table.rb', line 47 def attribute_definitions data[:attribute_definitions] end |
#billing_mode_summary ⇒ Types::BillingModeSummary
Contains the details for the read/write capacity mode.
161 162 163 |
# File 'lib/aws-sdk-dynamodb/table.rb', line 161 def billing_mode_summary data[:billing_mode_summary] end |
#client ⇒ Client
376 377 378 |
# File 'lib/aws-sdk-dynamodb/table.rb', line 376 def client @client end |
#creation_date_time ⇒ Time
The date and time when the table was created, in [UNIX epoch time] format.
[1]: www.epochconverter.com/
119 120 121 |
# File 'lib/aws-sdk-dynamodb/table.rb', line 119 def creation_date_time data[:creation_date_time] end |
#data ⇒ Types::TableDescription
Returns the data for this Aws::DynamoDB::Table. Calls Client#describe_table if #data_loaded? is ‘false`.
398 399 400 401 |
# File 'lib/aws-sdk-dynamodb/table.rb', line 398 def data load unless @data @data end |
#data_loaded? ⇒ Boolean
406 407 408 |
# File 'lib/aws-sdk-dynamodb/table.rb', line 406 def data_loaded? !!@data end |
#delete(options = {}) ⇒ Types::DeleteTableOutput
516 517 518 519 520 521 522 |
# File 'lib/aws-sdk-dynamodb/table.rb', line 516 def delete( = {}) = .merge(table_name: @name) resp = Aws::Plugins::UserAgent.feature('resource') do @client.delete_table() end resp.data end |
#delete_item(options = {}) ⇒ Types::DeleteItemOutput
712 713 714 715 716 717 718 |
# File 'lib/aws-sdk-dynamodb/table.rb', line 712 def delete_item( = {}) = .merge(table_name: @name) resp = Aws::Plugins::UserAgent.feature('resource') do @client.delete_item() end resp.data end |
#deletion_protection_enabled ⇒ Boolean
Indicates whether deletion protection is enabled (true) or disabled (false) on the table.
369 370 371 |
# File 'lib/aws-sdk-dynamodb/table.rb', line 369 def deletion_protection_enabled data[:deletion_protection_enabled] end |
#get_item(options = {}) ⇒ Types::GetItemOutput
837 838 839 840 841 842 843 |
# File 'lib/aws-sdk-dynamodb/table.rb', line 837 def get_item( = {}) = .merge(table_name: @name) resp = Aws::Plugins::UserAgent.feature('resource') do @client.get_item() end resp.data end |
#global_secondary_indexes ⇒ Array<Types::GlobalSecondaryIndexDescription>
The global secondary indexes, if any, on the table. Each index is scoped to a given partition key value. Each element is composed of:
-
‘Backfilling` - If true, then the index is currently in the backfilling phase. Backfilling occurs only when a new global secondary index is added to the table. It is the process by which DynamoDB populates the new index with data from the table. (This attribute does not appear for indexes that were created during a `CreateTable` operation.)
You can delete an index that is being created during the ‘Backfilling` phase when `IndexStatus` is set to CREATING and `Backfilling` is true. You can’t delete the index that is being created when ‘IndexStatus` is set to CREATING and `Backfilling` is false. (This attribute does not appear for indexes that were created during a `CreateTable` operation.)
-
‘IndexName` - The name of the global secondary index.
-
‘IndexSizeBytes` - The total size of the global secondary index, in bytes. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value.
-
‘IndexStatus` - The current status of the global secondary index:
-
‘CREATING` - The index is being created.
-
‘UPDATING` - The index is being updated.
-
‘DELETING` - The index is being deleted.
-
‘ACTIVE` - The index is ready for use.
-
-
‘ItemCount` - The number of items in the global secondary index. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value.
-
‘KeySchema` - Specifies the complete index key schema. The attribute names in the key schema must be between 1 and 255 characters (inclusive). The key schema must begin with the same partition key as the table.
-
‘Projection` - Specifies attributes that are copied (projected) from the table into the index. These are in addition to the primary key attributes and index key attributes, which are automatically projected. Each attribute specification is composed of:
-
‘ProjectionType` - One of the following:
-
‘KEYS_ONLY` - Only the index and primary keys are projected into the index.
-
‘INCLUDE` - In addition to the attributes described in `KEYS_ONLY`, the secondary index will include other non-key attributes that you specify.
-
‘ALL` - All of the table attributes are projected into the index.
-
-
‘NonKeyAttributes` - A list of one or more non-key attribute names that are projected into the secondary index. The total count of attributes provided in `NonKeyAttributes`, summed across all of the secondary indexes, must not exceed 100. If you project the same attribute into two different indexes, this counts as two distinct attributes when determining the total.
-
-
‘ProvisionedThroughput` - The provisioned throughput settings for the global secondary index, consisting of read and write capacity units, along with data about increases and decreases.
If the table is in the ‘DELETING` state, no information about indexes will be returned.
290 291 292 |
# File 'lib/aws-sdk-dynamodb/table.rb', line 290 def global_secondary_indexes data[:global_secondary_indexes] end |
#global_table_version ⇒ String
Represents the version of [global tables] in use, if the table is replicated across Amazon Web Services Regions.
[1]: docs.aws.amazon.com/amazondynamodb/latest/developerguide/GlobalTables.html
331 332 333 |
# File 'lib/aws-sdk-dynamodb/table.rb', line 331 def global_table_version data[:global_table_version] end |
#identifiers ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
2261 2262 2263 |
# File 'lib/aws-sdk-dynamodb/table.rb', line 2261 def identifiers { name: @name } end |
#item_count ⇒ Integer
The number of items in the specified table. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value.
143 144 145 |
# File 'lib/aws-sdk-dynamodb/table.rb', line 143 def item_count data[:item_count] end |
#key_schema ⇒ Array<Types::KeySchemaElement>
The primary key structure for the table. Each ‘KeySchemaElement` consists of:
-
‘AttributeName` - The name of the attribute.
-
‘KeyType` - The role of the attribute:
-
‘HASH` - partition key
-
‘RANGE` - sort key
<note markdown=“1”> The partition key of an item is also known as its *hash attribute*. The term “hash attribute” derives from DynamoDB’s usage of an internal hash function to evenly distribute data items across partitions, based on their partition key values.
The sort key of an item is also known as its *range attribute*. The
term “range attribute” derives from the way DynamoDB stores items with the same partition key physically close together, in sorted order by the sort key value.
</note>
-
For more information about primary keys, see [Primary Key] in the *Amazon DynamoDB Developer Guide*.
[1]: docs.aws.amazon.com/amazondynamodb/latest/developerguide/DataModel.html#DataModelPrimaryKey
81 82 83 |
# File 'lib/aws-sdk-dynamodb/table.rb', line 81 def key_schema data[:key_schema] end |
#latest_stream_arn ⇒ String
The Amazon Resource Name (ARN) that uniquely identifies the latest stream for this table.
320 321 322 |
# File 'lib/aws-sdk-dynamodb/table.rb', line 320 def latest_stream_arn data[:latest_stream_arn] end |
#latest_stream_label ⇒ String
A timestamp, in ISO 8601 format, for this stream.
Note that ‘LatestStreamLabel` is not a unique identifier for the stream, because it is possible that a stream from another table might have the same timestamp. However, the combination of the following three elements is guaranteed to be unique:
-
Amazon Web Services customer ID
-
Table name
-
‘StreamLabel`
313 314 315 |
# File 'lib/aws-sdk-dynamodb/table.rb', line 313 def latest_stream_label data[:latest_stream_label] end |
#load ⇒ self Also known as: reload
Loads, or reloads #data for the current Aws::DynamoDB::Table. Returns ‘self` making it possible to chain methods.
table.reload.data
386 387 388 389 390 391 392 |
# File 'lib/aws-sdk-dynamodb/table.rb', line 386 def load resp = Aws::Plugins::UserAgent.feature('resource') do @client.describe_table(table_name: @name) end @data = resp.table self end |
#local_secondary_indexes ⇒ Array<Types::LocalSecondaryIndexDescription>
Represents one or more local secondary indexes on the table. Each index is scoped to a given partition key value. Tables with one or more local secondary indexes are subject to an item collection size limit, where the amount of data within a given item collection cannot exceed 10 GB. Each element is composed of:
-
‘IndexName` - The name of the local secondary index.
-
‘KeySchema` - Specifies the complete index key schema. The attribute names in the key schema must be between 1 and 255 characters (inclusive). The key schema must begin with the same partition key as the table.
-
‘Projection` - Specifies attributes that are copied (projected) from the table into the index. These are in addition to the primary key attributes and index key attributes, which are automatically projected. Each attribute specification is composed of:
-
‘ProjectionType` - One of the following:
-
‘KEYS_ONLY` - Only the index and primary keys are projected into the index.
-
‘INCLUDE` - Only the specified table attributes are projected into the index. The list of projected attributes is in `NonKeyAttributes`.
-
‘ALL` - All of the table attributes are projected into the index.
-
-
‘NonKeyAttributes` - A list of one or more non-key attribute names that are projected into the secondary index. The total count of attributes provided in `NonKeyAttributes`, summed across all of the secondary indexes, must not exceed 100. If you project the same attribute into two different indexes, this counts as two distinct attributes when determining the total.
-
-
‘IndexSizeBytes` - Represents the total size of the index, in bytes. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value.
-
‘ItemCount` - Represents the number of items in the index. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value.
If the table is in the ‘DELETING` state, no information about indexes will be returned.
213 214 215 |
# File 'lib/aws-sdk-dynamodb/table.rb', line 213 def local_secondary_indexes data[:local_secondary_indexes] end |
#name ⇒ String Also known as: table_name
33 34 35 |
# File 'lib/aws-sdk-dynamodb/table.rb', line 33 def name @name end |
#provisioned_throughput ⇒ Types::ProvisionedThroughputDescription
The provisioned throughput settings for the table, consisting of read and write capacity units, along with data about increases and decreases.
127 128 129 |
# File 'lib/aws-sdk-dynamodb/table.rb', line 127 def provisioned_throughput data[:provisioned_throughput] end |
#put_item(options = {}) ⇒ Types::PutItemOutput
1054 1055 1056 1057 1058 1059 1060 |
# File 'lib/aws-sdk-dynamodb/table.rb', line 1054 def put_item( = {}) = .merge(table_name: @name) resp = Aws::Plugins::UserAgent.feature('resource') do @client.put_item() end resp.data end |
#query(options = {}) ⇒ Types::QueryOutput
1444 1445 1446 1447 1448 1449 1450 |
# File 'lib/aws-sdk-dynamodb/table.rb', line 1444 def query( = {}) = .merge(table_name: @name) resp = Aws::Plugins::UserAgent.feature('resource') do @client.query() end resp.data end |
#replicas ⇒ Array<Types::ReplicaDescription>
Represents replicas of the table.
337 338 339 |
# File 'lib/aws-sdk-dynamodb/table.rb', line 337 def replicas data[:replicas] end |
#restore_summary ⇒ Types::RestoreSummary
Contains details for the restore.
343 344 345 |
# File 'lib/aws-sdk-dynamodb/table.rb', line 343 def restore_summary data[:restore_summary] end |
#scan(options = {}) ⇒ Types::ScanOutput
1761 1762 1763 1764 1765 1766 1767 |
# File 'lib/aws-sdk-dynamodb/table.rb', line 1761 def scan( = {}) = .merge(table_name: @name) resp = Aws::Plugins::UserAgent.feature('resource') do @client.scan() end resp.data end |
#sse_description ⇒ Types::SSEDescription
The description of the server-side encryption status on the specified table.
350 351 352 |
# File 'lib/aws-sdk-dynamodb/table.rb', line 350 def sse_description data[:sse_description] end |
#stream_specification ⇒ Types::StreamSpecification
The current DynamoDB Streams configuration for the table.
296 297 298 |
# File 'lib/aws-sdk-dynamodb/table.rb', line 296 def stream_specification data[:stream_specification] end |
#table_arn ⇒ String
The Amazon Resource Name (ARN) that uniquely identifies the table.
149 150 151 |
# File 'lib/aws-sdk-dynamodb/table.rb', line 149 def table_arn data[:table_arn] end |
#table_class_summary ⇒ Types::TableClassSummary
Contains details of the table class.
362 363 364 |
# File 'lib/aws-sdk-dynamodb/table.rb', line 362 def table_class_summary data[:table_class_summary] end |
#table_id ⇒ String
Unique identifier for the table for which the backup was created.
155 156 157 |
# File 'lib/aws-sdk-dynamodb/table.rb', line 155 def table_id data[:table_id] end |
#table_size_bytes ⇒ Integer
The total size of the specified table, in bytes. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value.
135 136 137 |
# File 'lib/aws-sdk-dynamodb/table.rb', line 135 def table_size_bytes data[:table_size_bytes] end |
#table_status ⇒ String
The current state of the table:
-
‘CREATING` - The table is being created.
-
‘UPDATING` - The table/index configuration is being updated. The table/index remains available for data operations when `UPDATING`.
-
‘DELETING` - The table is being deleted.
-
‘ACTIVE` - The table is ready for use.
-
‘INACCESSIBLE_ENCRYPTION_CREDENTIALS` - The KMS key used to encrypt the table in inaccessible. Table operations may fail due to failure to use the KMS key. DynamoDB will initiate the table archival process when a table’s KMS key remains inaccessible for more than seven days.
-
‘ARCHIVING` - The table is being archived. Operations are not allowed until archival is complete.
-
‘ARCHIVED` - The table has been archived. See the ArchivalReason for more information.
108 109 110 |
# File 'lib/aws-sdk-dynamodb/table.rb', line 108 def table_status data[:table_status] end |
#update(options = {}) ⇒ Table
1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 |
# File 'lib/aws-sdk-dynamodb/table.rb', line 1943 def update( = {}) = .merge(table_name: @name) resp = Aws::Plugins::UserAgent.feature('resource') do @client.update_table() end Table.new( name: @name, data: resp.data.table_description, client: @client ) end |
#update_item(options = {}) ⇒ Types::UpdateItemOutput
2251 2252 2253 2254 2255 2256 2257 |
# File 'lib/aws-sdk-dynamodb/table.rb', line 2251 def update_item( = {}) = .merge(table_name: @name) resp = Aws::Plugins::UserAgent.feature('resource') do @client.update_item() end resp.data end |
#wait_until(options = {}) {|resource| ... } ⇒ Resource
Use [Aws::DynamoDB::Client] #wait_until instead
The waiting operation is performed on a copy. The original resource remains unchanged.
Waiter polls an API operation until a resource enters a desired state.
## Basic Usage
Waiter will polls until it is successful, it fails by entering a terminal state, or until a maximum number of attempts are made.
# polls in a loop until condition is true
resource.wait_until() {|resource| condition}
## Example
instance.wait_until(max_attempts:10, delay:5) do |instance|
instance.state.name == 'running'
end
## Configuration
You can configure the maximum number of polling attempts, and the delay (in seconds) between each polling attempt. The waiting condition is set by passing a block to #wait_until:
# poll for ~25 seconds
resource.wait_until(max_attempts:5,delay:5) {|resource|...}
## Callbacks
You can be notified before each polling attempt and before each delay. If you throw ‘:success` or `:failure` from these callbacks, it will terminate the waiter.
started_at = Time.now
# poll for 1 hour, instead of a number of attempts
proc = Proc.new do |attempts, response|
throw :failure if Time.now - started_at > 3600
end
# disable max attempts
instance.wait_until(before_wait:proc, max_attempts:nil) {...}
## Handling Errors
When a waiter is successful, it returns the Resource. When a waiter fails, it raises an error.
begin
resource.wait_until(...)
rescue Aws::Waiters::Errors::WaiterFailed
# resource did not enter the desired state in time
end
attempts attempt in seconds invoked before each attempt invoked before each wait
490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 |
# File 'lib/aws-sdk-dynamodb/table.rb', line 490 def wait_until( = {}, &block) self_copy = self.dup attempts = 0 [:max_attempts] = 10 unless .key?(:max_attempts) [:delay] ||= 10 [:poller] = Proc.new do attempts += 1 if block.call(self_copy) [:success, self_copy] else self_copy.reload unless attempts == [:max_attempts] :retry end end Aws::Plugins::UserAgent.feature('resource') do Aws::Waiters::Waiter.new().wait({}) end end |