module Aws::RpcV2::CborEngine

def self.decode(bytes)

def self.decode(bytes)
  Cbor::Decoder.new(bytes.force_encoding(Encoding::BINARY)).decode
end

def self.encode(data)

def self.encode(data)
  Cbor::Encoder.new.add(data).bytes
end