mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
25 lines
625 B
Ruby
25 lines
625 B
Ruby
module Fog
|
|
module AWS
|
|
class SimpleDB
|
|
|
|
# Create 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>:
|
|
# * :box_usage
|
|
# * :request_id
|
|
def create_domain(domain_name)
|
|
request({
|
|
'Action' => 'CreateDomain',
|
|
'DomainName' => domain_name
|
|
}, Fog::Parsers::AWS::SimpleDB::Basic.new(@nil_string))
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|