# File lib/aws/authorize_with_session_token.rb, line 18
    def add_authorization! signer
      if signer.respond_to?(:session_token) and
          token = signer.session_token
        add_param("SecurityToken", token)
      end

      super
    end