class Kempelen::API::Operations::GetAccountBalance

Constants

AWS_OPERATION_NAME
AWS_RESPONSE_OBJECT

Public Class Methods

new(client) click to toggle source
Calls superclass method Kempelen::API::Operations::Base::new
# File lib/kempelen/API/operations/get_account_balance.rb, line 8
def initialize(client)
  super(client)

  @response_object = AWS_RESPONSE_OBJECT
end

Public Instance Methods

create_parameters() click to toggle source
# File lib/kempelen/API/operations/get_account_balance.rb, line 14
def create_parameters
  @parameters[:operation] = AWS_OPERATION_NAME

  super 
end
perform_operation() click to toggle source
# File lib/kempelen/API/operations/get_account_balance.rb, line 20
def perform_operation
  create_request_string

  super

  Kempelen::API::Responses::AccountBalanceResponse.new(@raw_response)
end