class AWS::SimpleDB::Client
Constants
- API_VERSION
- CACHEABLE_REQUESTS
@api private
- REGION_APAC_SE1
@api private
- REGION_EU_W1
@api private
- REGION_US_E1
@api private
- REGION_US_W1
@api private
Public Class Methods
valid_domain_name?(name)
click to toggle source
@param [String] name @return [Boolean] Returns true if the given name is a valid
Amazon SimpleDB domain name.
# File lib/aws/simple_db/client.rb, line 55 def self.valid_domain_name? name name.to_s =~ /^[a-z_\-\.]{3,255}$/i ? true : false end
Public Instance Methods
valid_domain_name?(name)
click to toggle source
@param [String] name @return [Boolean] Returns true if the given name is a valid
Amazon SimpleDB domain name.
@api private
# File lib/aws/simple_db/client.rb, line 48 def valid_domain_name? name self.class.valid_domain_name?(name) end