Sha256: 13a7714f61e5413bcf7a5119e88bf3c13255ce532f0cd1a1737fb90104653722
Contents?: true
Size: 625 Bytes
Versions: 5
Compression:
Stored size: 625 Bytes
Contents
module Fog module AWS class SimpleDB # Delete a SimpleDB domain # # ==== Parameters # * domain_name<~String>:: Name of domain. Must be between 3 and 255 of the # following characters: a-z, A-Z, 0-9, '_', '-' and '.'. # # ==== Returns # * response<~Fog::AWS::Response>: # * body<~Hash>: # * 'BoxUsage' # * 'RequestId' def delete_domain(domain_name) request({ 'Action' => 'DeleteDomain', 'DomainName' => domain_name }, Fog::Parsers::AWS::SimpleDB::Basic.new(@nil_string)) end end end end
Version data entries
5 entries across 5 versions & 2 rubygems