Class: AWS::Core::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/aws/core/configuration.rb

Overview

A configuration object for AWS interfaces and clients.

Configuring Credential

In order to do anything with AWS you will need to assign credentials. The simplest method is to assing your credentials into the default configuration:

AWS.config(:access_key_id => 'KEY', :secret_access_key => 'SECRET')

You can also export them into your environment and they will be picked up automatically:

export AWS_ACCESS_KEY_ID='YOUR_KEY_ID_HERE'
export AWS_SECRET_ACCESS_KEY='YOUR_SECRET_KEY_HERE'

For compatability with other AWS gems, the credentials can also be exported like:

export AMAZON_ACCESS_KEY_ID='YOUR_KEY_ID_HERE'
export AMAZON_SECRET_ACCESS_KEY='YOUR_SECRET_KEY_HERE'

Modifying a Configuration

Configuration objects are read-only. If you need a different set of configuration values, call #with, passing in the updates and a new configuration object will be returned.

config = Configuration.new(:max_retires => 3)
new_config = config.with(:max_retries => 2)

config.max_retries #=> 3
new_config.max_retries #=> 2

Global Configuration

The global default configuration can be found at AWS.config

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Configuration

Creates a new Configuration object.

Parameters:

  • options (Hash) (defaults to: {})

Options Hash (options):

  • :access_key_id (String) — default: nil

    AWS access key id credential.

  • :secret_access_key (String) — default: nil

    AWS secret access key credential.

  • :session_token (String, nil) — default: nil

    AWS secret token credential.

  • :dynamo_db_endpoint (String) — default: 'dynamodb.amazonaws.com'

    The service endpoint for Amazon DynamoDB.

  • :dynamo_db_retry_throughput_errors (String) — default: true

    When true, AWS::DynamoDB::Errors::ProvisionedThroughputExceededException errors will be retried.

  • :ec2_endpoint (String) — default: 'ec2.amazonaws.com'

    The service endpoint for Amazon EC2.

  • :elb_endpoint (String) — default: 'elasticloadbalancing.us-east-1.amazonaws.com'

    The server endpoint for Elastic Load Balancing.

  • :http_handler (Object) — default: AWS::HTTPartyHandler

    The http handler that sends requests to AWS.

  • :iam_endpoint (String) — default: 'iam.amazonaws.com'

    The service endpoint for AWS Idenity Access Management (IAM).

  • :logger (Object, nil) — default: nil

    A logger instance that should receive log messages generated by service requets.

    A logger needs to respond to #log and must accept a severity (e.g. :info, :error, etc) and a string message.

  • :max_retries (Integer) — default: 3

    The maximum number of times service errors (500) should be retried. There is an exponential backoff in between service request retries, so the more retries the longer it can take to fail.

  • :proxy_uri (String, URI, nil) — default: nil

    The URI of the proxy to send service requests through. You can pass a URI object or a URI string:

    AWS.config(:proxy_uri => 'https://user:[email protected]:443/path?query')
    
  • :s3_endpoint (String) — default: 's3.amazonaws.com'

    The service endpoint for Amazon S3.

  • :s3_multipart_max_parts (Integer) — default: 1000

    The maximum number of parts to split a file into when uploading in parts to S3.

  • :s3_multipart_threshold (Integer) — default: 16777216

    When uploading data to S3, if the number of bytes to send exceedes :s3_multipart_threshold then a multi part session is automatically started and the data is sent up in chunks. The size of each part is specified by :s3_multipart_min_part_size. Defaults to 16777216 (16MB).

  • :s3_multipart_min_part_size (Integer) — default: 5242880

    The absolute minimum size (in bytes) each S3 multipart segment should be. Defaults to 5242880 (5MB).

  • :s3_server_side_encryption (Symbol) — default: nil

    The algorithm to use when encrypting object data on the server side. The only valid value is :aes256, which specifies that the object should be stored using the AES encryption algorithm with 256 bit keys. Defaults to nil, meaning server side encryption is not used unless specified on each individual call to upload an object. This option controls the default behavior for the following methods:

  • :simple_db_endpoint (String) — default: 'sdb.amazonaws.com'

    The service endpoint for Amazon SimpleDB.

  • :simple_db_consistent_reads (Boolean) — default: false

    Determines if all SimpleDB read requests should be done consistently. Consistent reads are slower, but reflect all changes to SDB.

  • :simple_email_service_endpoint (String) — default: 'email.us-east-1.amazonaws.com'

    The service endpoint for Amazon Simple Email Service.

  • :simple_workflow_service (String) — default: 'swf.us-east-1.amazonaws.com'

    The service endpoint for Amazon Simple Workflow Service.

  • :signer (Object) — default: AWS::DefaultSigner

    The request signer. Defaults to a default request signer implementation.

  • :ssl_ca_file (String)

    The path to a CA cert bundle in PEM format.

    If :ssl_verify_peer is true (the default) this bundle will be used to validate the server certificate in each HTTPS request. The AWS SDK for Ruby ships with a CA cert bundle, which is the default value for this option.

  • :ssl_ca_path (String) — default: nil

    The path the a CA cert directory.

  • :ssl_verify_peer (Boolean) — default: true

    When true the HTTP handler validate server certificates for HTTPS requests.

    This option should only be disabled for diagnostic purposes; leaving this option set to false exposes your application to man-in-the-middle attacks and can pose a serious security risk.

  • :sns_endpoint (String) — default: 'sns.us-east-1.amazonaws.com'

    The service endpoint for Amazon SNS.

  • :sqs_endpoint (String) — default: 'sqs.us-east-1.amazonaws.com'

    The service endpoint for Amazon SQS.

  • :sts_endpoint (String) — default: 'sts.amazonaws.com'

    The service endpoint for AWS Security Token Service.

  • :use_ssl (Boolean) — default: true

    When true, all requests to AWS are sent using HTTPS instead vanilla HTTP.

  • :user_agent_prefix (String) — default: nil

    A string prefix to append to all requets against AWS services. This should be set for clients and applications built ontop of the aws-sdk gem.



199
200
201
202
203
204
205
206
207
208
209
210
# File 'lib/aws/core/configuration.rb', line 199

def initialize options = {}
  
  @created = options.delete(:__created__) || {}
  
  options.each_pair do |opt_name, value|
    opt_name = opt_name.to_sym
    if self.class.accepted_options.include?(opt_name)
      supplied[opt_name] = value
    end
  end
  
end

Instance Attribute Details

#access_key_idString? (readonly)

(nil) AWS access key id credential.

Returns:

  • (String, nil)

    the current value of access_key_id



194
195
196
# File 'lib/aws/core/configuration.rb', line 194

def access_key_id
  @access_key_id
end

#dynamo_db_endpointString (readonly)

(‘dynamodb.us-east-1.amazonaws.com’) The service endpoint for Amazon DynamoDB.

Returns:

  • (String)

    the current value of dynamo_db_endpoint



194
195
196
# File 'lib/aws/core/configuration.rb', line 194

def dynamo_db_endpoint
  @dynamo_db_endpoint
end

#dynamo_db_retry_throughput_errorsString (readonly)

(true) When true, AWS::DynamoDB::Errors::ProvisionedThroughputExceededException errors will be retried.

Returns:

  • (String)

    the current value of dynamo_db_retry_throughput_errors



194
195
196
# File 'lib/aws/core/configuration.rb', line 194

def dynamo_db_retry_throughput_errors
  @dynamo_db_retry_throughput_errors
end

#ec2_endpointString (readonly)

(‘ec2.amazonaws.com’) The service endpoint for Amazon EC2.

Returns:

  • (String)

    the current value of ec2_endpoint



194
195
196
# File 'lib/aws/core/configuration.rb', line 194

def ec2_endpoint
  @ec2_endpoint
end

#elb_endpointString (readonly)

(‘elasticloadbalancing.us-east-1.amazonaws.com’) The service endpoint for Elastic Load Balancing.

Returns:

  • (String)

    the current value of elb_endpoint



194
195
196
# File 'lib/aws/core/configuration.rb', line 194

def elb_endpoint
  @elb_endpoint
end

#http_handlerObject (readonly)

The http handler that sends requests to AWS. Defaults to an HTTP handler built on net/http.

Returns:

  • (Object)

    the current value of http_handler



194
195
196
# File 'lib/aws/core/configuration.rb', line 194

def http_handler
  @http_handler
end

#iam_endpointString (readonly)

(‘iam.amazonaws.com’) The service endpoint for AWS Idenity Access Management (IAM).

Returns:

  • (String)

    the current value of iam_endpoint



194
195
196
# File 'lib/aws/core/configuration.rb', line 194

def iam_endpoint
  @iam_endpoint
end

#loggerObject? (readonly)

(nil) A logger instance that should receive log messages generated by service requets.

A logger needs to respond to #log and must accept a severity (e.g. :info, :error, etc) and a string message.

Returns:

  • (Object, nil)

    the current value of logger



194
195
196
# File 'lib/aws/core/configuration.rb', line 194

def logger
  @logger
end

#max_retriesInteger (readonly)

(3) The maximum number of times service errors (500) should be retried. There is an exponential backoff in between service request retries, so the more retries the longer it can take to fail.

Returns:

  • (Integer)

    the current value of max_retries



194
195
196
# File 'lib/aws/core/configuration.rb', line 194

def max_retries
  @max_retries
end

#proxy_uriString, ... (readonly)

(nil) The URI of the proxy to send service requests through. You can pass a URI object or a URI string. Defautls to nil.

AWS.config(:proxy_uri => 'https://user:[email protected]:443')

Returns:

  • (String, URI, nil)

    the current value of proxy_uri



194
195
196
# File 'lib/aws/core/configuration.rb', line 194

def proxy_uri
  @proxy_uri
end

#s3_endpointString (readonly)

(‘s3.amazonaws.com’) The service endpoint for Amazon S3.

Returns:

  • (String)

    the current value of s3_endpoint



194
195
196
# File 'lib/aws/core/configuration.rb', line 194

def s3_endpoint
  @s3_endpoint
end

#s3_multipart_max_partsInteger (readonly)

(1000) The maximum number of parts to split a file into when uploading in parts to S3.

Returns:

  • (Integer)

    the current value of s3_multipart_max_parts



194
195
196
# File 'lib/aws/core/configuration.rb', line 194

def s3_multipart_max_parts
  @s3_multipart_max_parts
end

#s3_multipart_min_part_sizeInteger (readonly)

(5242880) The absolute minimum size (in bytes) each S3 multipart segment should be defaults to 5242880 (5MB).

Returns:

  • (Integer)

    the current value of s3_multipart_min_part_size



194
195
196
# File 'lib/aws/core/configuration.rb', line 194

def s3_multipart_min_part_size
  @s3_multipart_min_part_size
end

#s3_multipart_thresholdInteger (readonly)

(16777216) When uploading data to S3, if the number of bytes to send exceedes :s3_multipart_threshold then a multi part session is automatically started and the data is sent up in chunks. The size of each part is specified by :s3_multipart_min_part_size. Defaults to 16777216 (16MB).

Returns:

  • (Integer)

    the current value of s3_multipart_threshold



194
195
196
# File 'lib/aws/core/configuration.rb', line 194

def s3_multipart_threshold
  @s3_multipart_threshold
end

#s3_server_side_encryptionSymbol (readonly)

The algorithm to use when encrypting object data on the server side. The only valid value is :aes256, which specifies that the object should be stored using the AES encryption algorithm with 256 bit keys. Defaults to nil, meaning server side encryption is not used unless specified on each individual call to upload an object. This option controls the default behavior for the following method:

You can construct an interface to Amazon S3 which always stores data using server side encryption as follows:

s3 = AWS::S3.new(:s3_server_side_encryption => :aes256)

Returns:

  • (Symbol)

    the current value of s3_server_side_encryption



194
195
196
# File 'lib/aws/core/configuration.rb', line 194

def s3_server_side_encryption
  @s3_server_side_encryption
end

#secret_access_keyString? (readonly)

(nil) AWS secret access key credential.

Returns:

  • (String, nil)

    the current value of secret_access_key



194
195
196
# File 'lib/aws/core/configuration.rb', line 194

def secret_access_key
  @secret_access_key
end

#session_tokenString? (readonly)

(nil) AWS secret token credential.

Returns:

  • (String, nil)

    the current value of session_token



194
195
196
# File 'lib/aws/core/configuration.rb', line 194

def session_token
  @session_token
end

#signerObject (readonly)

The request signer. Defaults to a default request signer implementation.

Returns:

  • (Object)

    the current value of signer



194
195
196
# File 'lib/aws/core/configuration.rb', line 194

def signer
  @signer
end

#simple_db_consistent_readsBoolean (readonly)

(false) Determines if all SimpleDB read requests should be done consistently. Consistent reads are slower, but reflect all changes to SDB.

Returns:

  • (Boolean)

    the current value of simple_db_consistent_reads



194
195
196
# File 'lib/aws/core/configuration.rb', line 194

def simple_db_consistent_reads
  @simple_db_consistent_reads
end

#simple_db_endpointString (readonly)

(‘sdb.amazonaws.com’) The service endpoint for Amazon SimpleDB.

Returns:

  • (String)

    the current value of simple_db_endpoint



194
195
196
# File 'lib/aws/core/configuration.rb', line 194

def simple_db_endpoint
  @simple_db_endpoint
end

#simple_email_service_endpointString (readonly)

(‘email.us-east-1.amazonaws.com’) The service endpoint for Amazon Simple Email Service.

Returns:

  • (String)

    the current value of simple_email_service_endpoint



194
195
196
# File 'lib/aws/core/configuration.rb', line 194

def simple_email_service_endpoint
  @simple_email_service_endpoint
end

#simple_workflow_endpointString (readonly)

(‘swf.us-east-1.amazonaws.com’) The service endpoint for Amazon Simple Workflow Service.

Returns:

  • (String)

    the current value of simple_workflow_endpoint



194
195
196
# File 'lib/aws/core/configuration.rb', line 194

def simple_workflow_endpoint
  @simple_workflow_endpoint
end

#sns_endpointString (readonly)

(‘sns.us-east-1.amazonaws.com’) The service endpoint for Amazon SNS.

Returns:

  • (String)

    the current value of sns_endpoint



194
195
196
# File 'lib/aws/core/configuration.rb', line 194

def sns_endpoint
  @sns_endpoint
end

#sqs_endpointString (readonly)

(‘sqs.us-east-1.amazonaws.com’) The service endpoint for Amazon SQS.

Returns:

  • (String)

    the current value of sqs_endpoint



194
195
196
# File 'lib/aws/core/configuration.rb', line 194

def sqs_endpoint
  @sqs_endpoint
end

#ssl_ca_fileString (readonly)

The path to a CA cert bundle in PEM format.

If ssl_verify_peer is true (the default) this bundle will be used to validate the server certificate in each HTTPS request. The AWS SDK for Ruby ships with a CA cert bundle, which is the default value for this option.

Returns:

  • (String)

    the current value of ssl_ca_file



194
195
196
# File 'lib/aws/core/configuration.rb', line 194

def ssl_ca_file
  @ssl_ca_file
end

#ssl_ca_pathString (readonly)

(nil) The path the a CA cert directory.

Returns:

  • (String)

    the current value of ssl_ca_path



194
195
196
# File 'lib/aws/core/configuration.rb', line 194

def ssl_ca_path
  @ssl_ca_path
end

#ssl_verify_peerBoolean (readonly)

(true) When true the HTTP handler validate server certificates for HTTPS requests.

This option should only be disabled for diagnostic purposes; leaving this option set to false exposes your application to man-in-the-middle attacks and can pose a serious security risk.

Returns:

  • (Boolean)

    the current value of ssl_verify_peer



194
195
196
# File 'lib/aws/core/configuration.rb', line 194

def ssl_verify_peer
  @ssl_verify_peer
end

#sts_endpointString (readonly)

(‘sts.amazonaws.com’) The service endpoint for AWS Security Token Service.

Returns:

  • (String)

    the current value of sts_endpoint



194
195
196
# File 'lib/aws/core/configuration.rb', line 194

def sts_endpoint
  @sts_endpoint
end

#stub_requestsBoolean (readonly)

(false) When true requests are not sent to AWS, instead empty reponses are generated and returned to each service request.

Returns:

  • (Boolean)

    the current value of stub_requests



194
195
196
# File 'lib/aws/core/configuration.rb', line 194

def stub_requests
  @stub_requests
end

#use_sslBoolean (readonly)

(true) When true, all requests to AWS are sent using HTTPS instead vanilla HTTP.

Returns:

  • (Boolean)

    the current value of use_ssl



194
195
196
# File 'lib/aws/core/configuration.rb', line 194

def use_ssl
  @use_ssl
end

#user_agent_prefixString (readonly)

(nil) A string prefix to append to all requets against AWS services. This should be set for clients and applications built ontop of the aws-sdk gem.

Returns:

  • (String)

    the current value of user_agent_prefix



194
195
196
# File 'lib/aws/core/configuration.rb', line 194

def user_agent_prefix
  @user_agent_prefix
end

Class Method Details

.add_service(name, ruby_name, default_endpoint) ⇒ Object



339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
# File 'lib/aws/core/configuration.rb', line 339

def add_service name, ruby_name, default_endpoint

  create_block = lambda do |config| 
    AWS.const_get(name)::Client.new(:config => config)
  end

  needs = [
    :signer, 
    :http_handler, 
    :"#{ruby_name}_endpoint",
    :max_retries,
    :stub_requests?,
    :proxy_uri,
    :use_ssl?,
    :ssl_verify_peer?,
    :ssl_ca_file,
    :user_agent_prefix,
    :logger,
    :logger_truncate_strings_at,
  ]

  add_option :"#{ruby_name}_endpoint", default_endpoint

  add_option_with_needs :"#{ruby_name}_client", needs, &create_block

end

Instance Method Details

#==(other) ⇒ Boolean Also known as: eql

Returns true if the two configuration objects have the same values.

Returns:

  • (Boolean)

    Returns true if the two configuration objects have the same values.



266
267
268
# File 'lib/aws/core/configuration.rb', line 266

def == other
  other.is_a?(self.class) and self.supplied == other.supplied
end

#credentialsHash

Returns a hash with your configured credentials.

Returns:

  • (Hash)

    Returns a hash with your configured credentials.



213
214
215
216
217
218
219
# File 'lib/aws/core/configuration.rb', line 213

def credentials
  credentials = {}
  credentials[:access_key_id] = access_key_id
  credentials[:secret_access_key] = secret_access_key
  credentials[:session_token] = session_token if session_token
  credentials
end

#to_hHash

Returns a hash of all configuration values.

Returns:

  • (Hash)

    Returns a hash of all configuration values.



257
258
259
260
261
262
# File 'lib/aws/core/configuration.rb', line 257

def to_h
  self.class.accepted_options.inject({}) do |h,k|
    h[k] = send(k)
    h
  end
end

#with(options = {}) ⇒ Configuration

Used to create a new Configuration object with the given modifications. The current configuration object is not modified.

AWS.config(:max_retries => 2)

no_retries_config = AWS.config.with(:max_retries => 0)

AWS.config.max_retries        #=> 2
no_retries_config.max_retries #=> 0

You can use these configuration objects returned by #with to create AWS objects:

AWS::S3.new(:config => no_retries_config)
AWS::SQS.new(:config => no_retries_config)

Parameters:

  • options (Hash) (defaults to: {})

Options Hash (options):

  • :access_key_id (String) — default: nil

    AWS access key id credential.

  • :secret_access_key (String) — default: nil

    AWS secret access key credential.

  • :session_token (String, nil) — default: nil

    AWS secret token credential.

  • :dynamo_db_endpoint (String) — default: 'dynamodb.amazonaws.com'

    The service endpoint for Amazon DynamoDB.

  • :dynamo_db_retry_throughput_errors (String) — default: true

    When true, AWS::DynamoDB::Errors::ProvisionedThroughputExceededException errors will be retried.

  • :ec2_endpoint (String) — default: 'ec2.amazonaws.com'

    The service endpoint for Amazon EC2.

  • :elb_endpoint (String) — default: 'elasticloadbalancing.us-east-1.amazonaws.com'

    The server endpoint for Elastic Load Balancing.

  • :http_handler (Object) — default: AWS::HTTPartyHandler

    The http handler that sends requests to AWS.

  • :iam_endpoint (String) — default: 'iam.amazonaws.com'

    The service endpoint for AWS Idenity Access Management (IAM).

  • :logger (Object, nil) — default: nil

    A logger instance that should receive log messages generated by service requets.

    A logger needs to respond to #log and must accept a severity (e.g. :info, :error, etc) and a string message.

  • :max_retries (Integer) — default: 3

    The maximum number of times service errors (500) should be retried. There is an exponential backoff in between service request retries, so the more retries the longer it can take to fail.

  • :proxy_uri (String, URI, nil) — default: nil

    The URI of the proxy to send service requests through. You can pass a URI object or a URI string:

    AWS.config(:proxy_uri => 'https://user:[email protected]:443/path?query')
    
  • :s3_endpoint (String) — default: 's3.amazonaws.com'

    The service endpoint for Amazon S3.

  • :s3_multipart_max_parts (Integer) — default: 1000

    The maximum number of parts to split a file into when uploading in parts to S3.

  • :s3_multipart_threshold (Integer) — default: 16777216

    When uploading data to S3, if the number of bytes to send exceedes :s3_multipart_threshold then a multi part session is automatically started and the data is sent up in chunks. The size of each part is specified by :s3_multipart_min_part_size. Defaults to 16777216 (16MB).

  • :s3_multipart_min_part_size (Integer) — default: 5242880

    The absolute minimum size (in bytes) each S3 multipart segment should be. Defaults to 5242880 (5MB).

  • :s3_server_side_encryption (Symbol) — default: nil

    The algorithm to use when encrypting object data on the server side. The only valid value is :aes256, which specifies that the object should be stored using the AES encryption algorithm with 256 bit keys. Defaults to nil, meaning server side encryption is not used unless specified on each individual call to upload an object. This option controls the default behavior for the following methods:

  • :simple_db_endpoint (String) — default: 'sdb.amazonaws.com'

    The service endpoint for Amazon SimpleDB.

  • :simple_db_consistent_reads (Boolean) — default: false

    Determines if all SimpleDB read requests should be done consistently. Consistent reads are slower, but reflect all changes to SDB.

  • :simple_email_service_endpoint (String) — default: 'email.us-east-1.amazonaws.com'

    The service endpoint for Amazon Simple Email Service.

  • :simple_workflow_service (String) — default: 'swf.us-east-1.amazonaws.com'

    The service endpoint for Amazon Simple Workflow Service.

  • :signer (Object) — default: AWS::DefaultSigner

    The request signer. Defaults to a default request signer implementation.

  • :ssl_ca_file (String)

    The path to a CA cert bundle in PEM format.

    If :ssl_verify_peer is true (the default) this bundle will be used to validate the server certificate in each HTTPS request. The AWS SDK for Ruby ships with a CA cert bundle, which is the default value for this option.

  • :ssl_ca_path (String) — default: nil

    The path the a CA cert directory.

  • :ssl_verify_peer (Boolean) — default: true

    When true the HTTP handler validate server certificates for HTTPS requests.

    This option should only be disabled for diagnostic purposes; leaving this option set to false exposes your application to man-in-the-middle attacks and can pose a serious security risk.

  • :sns_endpoint (String) — default: 'sns.us-east-1.amazonaws.com'

    The service endpoint for Amazon SNS.

  • :sqs_endpoint (String) — default: 'sqs.us-east-1.amazonaws.com'

    The service endpoint for Amazon SQS.

  • :sts_endpoint (String) — default: 'sts.amazonaws.com'

    The service endpoint for AWS Security Token Service.

  • :use_ssl (Boolean) — default: true

    When true, all requests to AWS are sent using HTTPS instead vanilla HTTP.

  • :user_agent_prefix (String) — default: nil

    A string prefix to append to all requets against AWS services. This should be set for clients and applications built ontop of the aws-sdk gem.

Returns:

  • (Configuration)

    Copies the current configuration and returns a new one with modifications as provided in :options.



241
242
243
244
245
246
247
248
249
250
251
252
253
254
# File 'lib/aws/core/configuration.rb', line 241

def with options = {}
  
  # symbolize option keys
  options = options.inject({}) {|h,kv| h[kv.first.to_sym] = kv.last; h }
  
  values = supplied.merge(options)
  
  if supplied == values
    self # nothing changed
  else
    self.class.new(values.merge(:__created__ => @created.dup))
  end
  
end