class Aws::Query::Handler

def rules(context)

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