class AWS::STS::Client

Client class for AWS Security Token Service (STS).

Constants

CACHEABLE_REQUESTS

@private

REGION_US_E1

Public Class Methods

new(*args) click to toggle source
Calls superclass method AWS::Core::Client.new
# File lib/aws/sts/client.rb, line 25
def initialize *args
  super
  unless config.use_ssl?
    msg = 'AWS Security Token Service (STS) requires ssl but the ' + 
      ':use_ssl option is set to false.  Try passing :use_ssl => true'
    raise ArgumentError, msg
  end
end