Class: Aws::Route53::Types::ResourceRecord
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53::Types::ResourceRecord
- Defined in:
- gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb
Overview
Information specific to the resource record.
ResourceRecord
.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#value ⇒ String
The current or new DNS record value, not to exceed 4,000 characters.
Instance Attribute Details
#value ⇒ String
The current or new DNS record value, not to exceed 4,000 characters.
In the case of a DELETE
action, if the current value does not
match the actual value, an error is returned. For descriptions about
how to format Value
for different record types, see Supported DNS
Resource Record Types in the Amazon Route 53 Developer Guide.
You can specify more than one value for all record types except
CNAME
and SOA
.
Value
.
6308 6309 6310 6311 6312 |
# File 'gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb', line 6308 class ResourceRecord < Struct.new( :value) SENSITIVE = [] include Aws::Structure end |