You are viewing documentation for version 1 of the AWS SDK for Ruby. Version 2 documentation can be found here.

Class: AWS::ElasticBeanstalk

Inherits:
Object
  • Object
show all
Includes:
Core::ServiceInterface
Defined in:
lib/aws/elastic_beanstalk.rb,
lib/aws/elastic_beanstalk/errors.rb,
lib/aws/elastic_beanstalk/client.rb

Overview

Provides an expressive, object-oriented interface to AWS Elastic Beanstalk.

Credentials

You can setup default credentials for all AWS services via AWS.config:

AWS.config(
  :access_key_id => 'YOUR_ACCESS_KEY_ID',
  :secret_access_key => 'YOUR_SECRET_ACCESS_KEY')

Or you can set them directly on the ElasticBeanstalk interface:

beanstalk = AWS::ElasticBeanstalk.new(
  :access_key_id => 'YOUR_ACCESS_KEY_ID',
  :secret_access_key => 'YOUR_SECRET_ACCESS_KEY')

Defined Under Namespace

Modules: Errors Classes: Client

Instance Attribute Summary collapse

Method Summary

Methods included from Core::ServiceInterface

included, #initialize, #inspect

Instance Attribute Details

#clientClient (readonly)

Returns the low-level ElasticBeanstalk client object

Returns:

  • (Client)

    the low-level ElasticBeanstalk client object



38
39
40
41
42
43
44
45
46
47
# File 'lib/aws/elastic_beanstalk.rb', line 38

class ElasticBeanstalk

  autoload :Client, 'aws/elastic_beanstalk/client'
  autoload :Errors, 'aws/elastic_beanstalk/errors'

  include Core::ServiceInterface

  endpoint_prefix 'elasticbeanstalk'

end