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

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

Overview

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

Constant Summary collapse

SENSITIVE =
[]

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)


230
231
232
233
234
# File 'gems/aws-sdk-cloudsearch/lib/aws-sdk-cloudsearch/types.rb', line 230

class CreateDomainRequest < Struct.new(
  :domain_name)
  SENSITIVE = []
  include Aws::Structure
end