class Aws::Api::Docs::RequestSyntaxExample

def initialize(method_name, operation)

def initialize(method_name, operation)
  @method_name = method_name
  @operation = operation
end

def to_str

def to_str
  params = ParamFormatter.new(operation_input_ref(@operation))
  "resp = client.#{@method_name}(#{params.format})"
end