Module: Dynamodb
- Extended by:
- Connection, TableActions
- Defined in:
- lib/dynamodb/base.rb,
lib/dynamodb.rb,
lib/dynamodb/cli.rb,
lib/dynamodb/local.rb,
lib/dynamodb/version.rb,
lib/dynamodb/querying.rb,
lib/dynamodb/relation.rb,
lib/dynamodb/connection.rb,
lib/dynamodb/configuration.rb,
lib/dynamodb/table_actions.rb,
lib/dynamodb/attribute_assignment.rb
Overview
Builds a Query for the DynamoDB table.
Defined Under Namespace
Modules: AttributeAssignment, Connection, Querying, TableActions Classes: Base, CLI, Configuration, Local, Relation
Constant Summary collapse
- VERSION =
"0.5.0"
Class Attribute Summary collapse
-
.configuration ⇒ Object
Returns the value of attribute configuration.
Class Method Summary collapse
Methods included from Connection
client, reset_client, resource
Methods included from TableActions
_query, create_table, delete_item, delete_table, describe_table, get_item, list_tables, put_item
Class Attribute Details
.configuration ⇒ Object
Returns the value of attribute configuration.
13 14 15 |
# File 'lib/dynamodb.rb', line 13 def configuration @configuration end |
Class Method Details
.configure {|configuration| ... } ⇒ Object
24 25 26 |
# File 'lib/dynamodb.rb', line 24 def self.configure yield(configuration) end |
.reset ⇒ Object
20 21 22 |
# File 'lib/dynamodb.rb', line 20 def self.reset @configuration = Configuration.new end |