Class: Aws::WorkMail::Types::DnsRecord

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-workmail/lib/aws-sdk-workmail/types.rb

Overview

A DNS record uploaded to your DNS provider.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#hostnameString

The DNS hostname.- For example, domain.example.com.

Returns:

  • (String)


1920
1921
1922
1923
1924
1925
1926
# File 'gems/aws-sdk-workmail/lib/aws-sdk-workmail/types.rb', line 1920

class DnsRecord < Struct.new(
  :type,
  :hostname,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#typeString

The RFC 1035 record type. Possible values: CNAME, A, MX.

Returns:

  • (String)


1920
1921
1922
1923
1924
1925
1926
# File 'gems/aws-sdk-workmail/lib/aws-sdk-workmail/types.rb', line 1920

class DnsRecord < Struct.new(
  :type,
  :hostname,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

The value returned by the DNS for a query to that hostname and record type.

Returns:

  • (String)


1920
1921
1922
1923
1924
1925
1926
# File 'gems/aws-sdk-workmail/lib/aws-sdk-workmail/types.rb', line 1920

class DnsRecord < Struct.new(
  :type,
  :hostname,
  :value)
  SENSITIVE = []
  include Aws::Structure
end