Class: Aws::WorkMail::Types::Domain
- Inherits:
-
Struct
- Object
- Struct
- Aws::WorkMail::Types::Domain
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-workmail/types.rb
Overview
The domain to associate with an WorkMail organization.
When you configure a domain hosted in Amazon Route 53 (Route 53), all recommended DNS records are added to the organization when you create it. For more information, see [Adding a domain] in the *WorkMail Administrator Guide*.
[1]: docs.aws.amazon.com/workmail/latest/adminguide/add_domain.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain_name ⇒ String
The fully qualified domain name.
-
#hosted_zone_id ⇒ String
The hosted zone ID for a domain hosted in Route 53.
Instance Attribute Details
#domain_name ⇒ String
The fully qualified domain name.
2101 2102 2103 2104 2105 2106 |
# File 'lib/aws-sdk-workmail/types.rb', line 2101 class Domain < Struct.new( :domain_name, :hosted_zone_id) SENSITIVE = [] include Aws::Structure end |
#hosted_zone_id ⇒ String
The hosted zone ID for a domain hosted in Route 53. Required when configuring a domain hosted in Route 53.
2101 2102 2103 2104 2105 2106 |
# File 'lib/aws-sdk-workmail/types.rb', line 2101 class Domain < Struct.new( :domain_name, :hosted_zone_id) SENSITIVE = [] include Aws::Structure end |