Class: Aws::CloudSearch::Types::CreateDomainRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudSearch::Types::CreateDomainRequest
- Includes:
- Structure
- Defined in:
- 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
-
#domain_name ⇒ String
A name for the domain you are creating.
Instance Attribute Details
#domain_name ⇒ String
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.
230 231 232 233 234 |
# File 'lib/aws-sdk-cloudsearch/types.rb', line 230 class CreateDomainRequest < Struct.new( :domain_name) SENSITIVE = [] include Aws::Structure end |