You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::S3::Resource
- Inherits:
-
Resources::Resource
- Object
- Resources::Resource
- Aws::S3::Resource
- Defined in:
- (unknown)
Overview
This class provides a resource oriented interface for Amazon S3. To create a resource object:
resource = Aws::S3::Resource.new
You can supply a client object with custom configuration that will be
used for all resource operations. If you do not pass :client
,
a default client will be constructed.
client = Aws::S3::Client.new(region: 'us-west-2')
resource = Aws::S3::Resource.new(client: client)
Resource Resource Classes
Aws::S3::Resource has the following resource classes:
Instance Attribute Summary
Attributes inherited from Resources::Resource
Instance Method Summary collapse
-
#bucket(name) ⇒ Bucket
-
#buckets ⇒ Collection<Bucket>
Returns a Collection of Bucket resources.
-
#create_bucket(options = {}) ⇒ Bucket
-
#initialize ⇒ Object
constructor
Methods inherited from Resources::Resource
add_data_attribute, add_identifier, #data, data_attributes, #data_loaded?, identifiers, #load, #wait_until
Methods included from Resources::OperationMethods
#add_batch_operation, #add_operation, #batch_operation, #batch_operation_names, #batch_operations, #operation, #operation_names, #operations
Instance Method Details
#bucket(name) ⇒ Bucket
#buckets ⇒ Collection<Bucket>
Returns a Collection of Bucket resources. No API requests are made until you call an enumerable method on the collection. Client#list_buckets will be called multiple times until every Bucket has been yielded.