Class: AWS::SimpleDB::Client
- Inherits:
-
Core::QueryClient
- Object
- Core::Client
- Core::QueryClient
- AWS::SimpleDB::Client
- Defined in:
- lib/aws/simple_db/client.rb
Overview
Client class for Amazon SimpleDB.
Instance Attribute Summary
Attributes inherited from Core::Client
Class Method Summary collapse
-
.valid_domain_name?(name) ⇒ Boolean
Returns true if the given name is a valid Amazon SimpleDB domain name.
Instance Method Summary collapse
-
#batch_delete_attributes(options = {}) ⇒ Core::Response
Calls the BatchDeleteAttributes API operation.
-
#batch_put_attributes(options = {}) ⇒ Core::Response
Calls the BatchPutAttributes API operation.
-
#create_domain(options = {}) ⇒ Core::Response
Calls the CreateDomain API operation.
-
#delete_attributes(options = {}) ⇒ Core::Response
Calls the DeleteAttributes API operation.
-
#delete_domain(options = {}) ⇒ Core::Response
Calls the DeleteDomain API operation.
-
#domain_metadata(options = {}) ⇒ Core::Response
Calls the DomainMetadata API operation.
-
#get_attributes(options = {}) ⇒ Core::Response
Calls the GetAttributes API operation.
-
#list_domains(options = {}) ⇒ Core::Response
Calls the ListDomains API operation.
-
#put_attributes(options = {}) ⇒ Core::Response
Calls the PutAttributes API operation.
-
#select(options = {}) ⇒ Core::Response
Calls the Select API operation.
Methods inherited from Core::Client
#initialize, #log_warning, #operations, operations, #with_http_handler, #with_options
Constructor Details
This class inherits a constructor from AWS::Core::Client
Class Method Details
.valid_domain_name?(name) ⇒ Boolean
Returns true if the given name is a valid Amazon SimpleDB domain name.
51 52 53 |
# File 'lib/aws/simple_db/client.rb', line 51 def self.valid_domain_name? name name.to_s =~ /^[a-z_\-\.]{3,255}$/i ? true : false end |
Instance Method Details
#batch_delete_attributes(options = {}) ⇒ Core::Response
Calls the BatchDeleteAttributes API operation.
|
# File 'lib/aws/simple_db/client.rb', line 57
|
#batch_put_attributes(options = {}) ⇒ Core::Response
Calls the BatchPutAttributes API operation.
|
# File 'lib/aws/simple_db/client.rb', line 75
|
#create_domain(options = {}) ⇒ Core::Response
Calls the CreateDomain API operation.
|
# File 'lib/aws/simple_db/client.rb', line 99
|
#delete_attributes(options = {}) ⇒ Core::Response
Calls the DeleteAttributes API operation.
|
# File 'lib/aws/simple_db/client.rb', line 112
|
#delete_domain(options = {}) ⇒ Core::Response
Calls the DeleteDomain API operation.
|
# File 'lib/aws/simple_db/client.rb', line 146
|
#domain_metadata(options = {}) ⇒ Core::Response
Calls the DomainMetadata API operation.
|
# File 'lib/aws/simple_db/client.rb', line 158
|
#get_attributes(options = {}) ⇒ Core::Response
Calls the GetAttributes API operation.
|
# File 'lib/aws/simple_db/client.rb', line 177
|
#list_domains(options = {}) ⇒ Core::Response
Calls the ListDomains API operation.
|
# File 'lib/aws/simple_db/client.rb', line 201
|
#put_attributes(options = {}) ⇒ Core::Response
Calls the PutAttributes API operation.
|
# File 'lib/aws/simple_db/client.rb', line 218
|
#select(options = {}) ⇒ Core::Response
Calls the Select API operation.
|
# File 'lib/aws/simple_db/client.rb', line 253
|