Class: Dynamodb::Api::Relation::SelectClause
- Inherits:
-
Object
- Object
- Dynamodb::Api::Relation::SelectClause
- Defined in:
- lib/dynamodb/api/relation/select_clause.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(name = nil) ⇒ SelectClause
constructor
A new instance of SelectClause.
Constructor Details
#initialize(name = nil) ⇒ SelectClause
Returns a new instance of SelectClause.
9 10 11 |
# File 'lib/dynamodb/api/relation/select_clause.rb', line 9 def initialize(name = nil) @name = name || 'ALL_ATTRIBUTES' end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
7 8 9 |
# File 'lib/dynamodb/api/relation/select_clause.rb', line 7 def name @name end |