Class: Aws::DynamoDB::Plugins::SimpleAttributes::ValueTranslator Private

Inherits:
Object
  • Object
show all
Includes:
Seahorse::Model::Shapes
Defined in:
lib/aws-sdk-dynamodb/plugins/simple_attributes.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(rules, mode) ⇒ ValueTranslator

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.

Returns a new instance of ValueTranslator.



153
154
155
156
# File 'lib/aws-sdk-dynamodb/plugins/simple_attributes.rb', line 153

def initialize(rules, mode)
  @rules = rules
  @mode = mode
end

Class Method Details

.apply(rules, mode, data) ⇒ 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.



149
150
151
# File 'lib/aws-sdk-dynamodb/plugins/simple_attributes.rb', line 149

def self.apply(rules, mode, data)
  new(rules, mode).apply(data)
end

Instance Method Details

#apply(values) ⇒ 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.



158
159
160
# File 'lib/aws-sdk-dynamodb/plugins/simple_attributes.rb', line 158

def apply(values)
  structure(@rules, values) if @rules
end