Class AWS::StorageGateway
In: lib/aws/storage_gateway/client.rb
lib/aws/storage_gateway/errors.rb
lib/aws/storage_gateway.rb
Parent: Object

This class is the starting point for working with AWS Storage Gateway.

To use AWS Storage Gateway you must first [sign up here](aws.amazon.com/storagegateway/).

For more information about AWS Storage Gateway:

# 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 AWS::StorageGateway interface:

    sg = AWS::StorageGateway.new(
      :access_key_id => 'YOUR_ACCESS_KEY_ID',
      :secret_access_key => 'YOUR_SECRET_ACCESS_KEY')

# Using the Client

AWS::StorageGateway does not provide higher level abstractions for Route 53 at this time. You can still access all of the API methods using {AWS::StorageGateway::Client}. Here is how you access the client and make a simple request:

    sg = AWS::StorageGateway.new

    resp = sg.client.list_gateways
    resp[:gateways].each do |gateway|
      puts gateway[:gateway_arn]
    end

See {Client} for documentation on all of the supported operations.

@!attribute [r] client

  @return [Client] the low-level StorageGateway client object

Included Modules

Core::ServiceInterface

Classes and Modules

Module AWS::StorageGateway::Errors
Class AWS::StorageGateway::Client

[Validate]