Method: Fog::AWS::SimpleDB::Real#create_domain
- Defined in:
- lib/fog/aws/requests/simpledb/create_domain.rb
#create_domain(domain_name) ⇒ Object
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<~Excon::Response>:
-
body<~Hash>:
-
‘BoxUsage’
-
‘RequestId’
-
-
17 18 19 20 21 22 23 24 |
# File 'lib/fog/aws/requests/simpledb/create_domain.rb', line 17 def create_domain(domain_name) request( 'Action' => 'CreateDomain', 'DomainName' => domain_name, :idempotent => true, :parser => Fog::Parsers::AWS::SimpleDB::Basic.new(@nil_string) ) end |