Class: Aws::ACM::Types::ResourceRecord

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

Overview

Contains a DNS record value that you can use to validate ownership or control of a domain. This is used by the DescribeCertificate action.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the DNS record to create in your domain. This is supplied by ACM.

Returns:

  • (String)


1487
1488
1489
1490
1491
1492
1493
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 1487

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

#typeString

The type of DNS record. Currently this can be CNAME.

Returns:

  • (String)


1487
1488
1489
1490
1491
1492
1493
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 1487

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

#valueString

The value of the CNAME record to add to your DNS database. This is supplied by ACM.

Returns:

  • (String)


1487
1488
1489
1490
1491
1492
1493
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 1487

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