class Aws::S3::Plugins::Http200Errors::Handler

def members_in_body?(output)

before this method is called in incomplete_xml_body?.
of a string or blob, the body contents would have been checked first
non-structure shape will not have members in the body. In the case
are in the body for the case of a payload and a normal structure. A
Checks if the output shape is a structure shape and has members that
def members_in_body?(output)
  shape =
    if output[:payload_member]
      output[:payload_member].shape
    else
      output.shape
    end
  if structure_shape?(shape)
    shape.members.any? { |_, k| k.location.nil? }
  else
    false
  end
end