class Aws::Query::Handler

def rules(context)

def rules(context)
  shape = Seahorse::Model::Shapes::StructureShape.new
  shape.add_member(:result, ShapeRef.new(
    shape: context.operation.output.shape,
    location_name: context.operation.name + 'Result'
  ))
  shape[:struct_class] = WRAPPER_STRUCT
  shape.add_member(:response_metadata, METADATA_REF)
  ShapeRef.new(shape: shape)
end