Class: Aws::CloudSearch::Types::CreateDomainRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cloudsearch/types.rb

Overview

Note:

When making an API call, you may pass CreateDomainRequest data as a hash:

{
  domain_name: "DomainName", # required
}

Container for the parameters to the ‘CreateDomain` operation. Specifies a name for the new search domain.

Instance Attribute Summary collapse

Instance Attribute Details

#domain_nameString

A name for the domain you are creating. Allowed characters are a-z (lower-case letters), 0-9, and hyphen (-). Domain names must start with a letter or number and be at least 3 and no more than 28 characters long.

Returns:

  • (String)


244
245
246
247
# File 'lib/aws-sdk-cloudsearch/types.rb', line 244

class CreateDomainRequest < Struct.new(
  :domain_name)
  include Aws::Structure
end