Class: Aws::Lightsail::Types::CreateDomainRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lightsail::Types::CreateDomainRequest
- Defined in:
- gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain_name ⇒ String
The domain name to manage (
example.com
). -
#tags ⇒ Array<Types::Tag>
The tag keys and optional values to add to the resource during create.
Instance Attribute Details
#domain_name ⇒ String
The domain name to manage (example.com
).
3706 3707 3708 3709 3710 3711 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 3706 class CreateDomainRequest < Struct.new( :domain_name, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
The tag keys and optional values to add to the resource during create.
Use the TagResource
action to tag a resource after it's created.
3706 3707 3708 3709 3710 3711 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 3706 class CreateDomainRequest < Struct.new( :domain_name, :tags) SENSITIVE = [] include Aws::Structure end |