class Aws::Plugins::Credentials


‘:session_token`.
populated by `:access_key_id`, `:secret_access_key` and
Your AWS account credentials. Defaults to a new {Credentials} object
@seahorse.client.option [Credentials] :credentials
Also checks `AMAZON_SESSION_TOKEN`.
session token. Defaults to `ENV`.
are temporary session credentials, this should be the
@seahorse.client.option [String] :session_token If your credentials
Also checks `AWS_SECRET_ACCESS_KEY` and `AMAZON_SECRET_ACCESS_KEY`.
secret access key. Defaults to `ENV`.
@seahorse.client.option [String] :secret_access_key Your AWS account
Also checks `AWS_ACCESS_KEY_ID` and `AMAZON_ACCESS_KEY_ID`.
access key ID. Defaults to `ENV`.
@seahorse.client.option [String] :access_key_id Your AWS account

def after_initialize(client)

def after_initialize(client)
  if client.config.credentials.nil? or !client.config.credentials.set?
    raise Errors::MissingCredentialsError
  end
end