class Aws::DynamoDB::Plugins::SimpleAttributes::ValueTranslator
def translate_complex(ref, value)
def translate_complex(ref, value) case ref.shape when StructureShape then structure(ref, value) when ListShape then list(ref, value) when MapShape then map(ref, value) else value end end