Class: Aws::SimpleDB::Types::CreateDomainRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SimpleDB::Types::CreateDomainRequest
- Defined in:
- gems/aws-sdk-simpledb/lib/aws-sdk-simpledb/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain_name ⇒ String
The name of the domain to create.
Instance Attribute Details
#domain_name ⇒ String
The name of the domain to create. The name can range between 3 and 255 characters and can contain the following characters: a-z, A-Z, 0-9, '_', '-', and '.'.
83 84 85 86 87 |
# File 'gems/aws-sdk-simpledb/lib/aws-sdk-simpledb/types.rb', line 83 class CreateDomainRequest < Struct.new( :domain_name) SENSITIVE = [] include Aws::Structure end |