module Aws::Record
def self.included(sub_class)
# Attribute definitions go here...
include Aws::Record
class MyTable
@example
method will then pull in the other default modules.
Usage of {Aws::Record} requires only that you include this module. This
def self.included(sub_class) sub_class.send(:extend, ClientConfiguration) sub_class.send(:extend, RecordClassMethods) sub_class.send(:include, Attributes) sub_class.send(:include, ItemOperations) sub_class.send(:include, DirtyTracking) sub_class.send(:include, Query) sub_class.send(:include, SecondaryIndexes) inherit_track_mutations(sub_class) if Aws::Record.extends_record?(sub_class) end