Class: Aws::WorkMail::Types::Domain

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#domain_nameString

The fully qualified domain name.

Returns:

  • (String)


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_idString

The hosted zone ID for a domain hosted in Route 53. Required when configuring a domain hosted in Route 53.

Returns:

  • (String)


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