Class: Aws::Route53::Types::UpdateHostedZoneCommentRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53::Types::UpdateHostedZoneCommentRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-route53/types.rb
Overview
A request to update the comment for a hosted zone.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#comment ⇒ String
The new comment for the hosted zone.
-
#id ⇒ String
The ID for the hosted zone that you want to update the comment for.
Instance Attribute Details
#comment ⇒ String
The new comment for the hosted zone. If you don’t specify a value for ‘Comment`, Amazon Route 53 deletes the existing value of the `Comment` element, if any.
7927 7928 7929 7930 7931 7932 |
# File 'lib/aws-sdk-route53/types.rb', line 7927 class UpdateHostedZoneCommentRequest < Struct.new( :id, :comment) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The ID for the hosted zone that you want to update the comment for.
7927 7928 7929 7930 7931 7932 |
# File 'lib/aws-sdk-route53/types.rb', line 7927 class UpdateHostedZoneCommentRequest < Struct.new( :id, :comment) SENSITIVE = [] include Aws::Structure end |