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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-workmail/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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#domain_nameString

The fully qualified domain name.

Returns:

  • (String)


1950
1951
1952
1953
1954
1955
# File 'gems/aws-sdk-workmail/lib/aws-sdk-workmail/types.rb', line 1950

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)


1950
1951
1952
1953
1954
1955
# File 'gems/aws-sdk-workmail/lib/aws-sdk-workmail/types.rb', line 1950

class Domain < Struct.new(
  :domain_name,
  :hosted_zone_id)
  SENSITIVE = []
  include Aws::Structure
end