Class: Aws::Route53::Types::HostedZoneConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53::Types::HostedZoneConfig
- Defined in:
- gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb
Overview
A complex type that contains an optional comment about your hosted
zone. If you don't want to specify a comment, omit both the
HostedZoneConfig
and Comment
elements.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#comment ⇒ String
Any comments that you want to include about the hosted zone.
-
#private_zone ⇒ Boolean
A value that indicates whether this is a private hosted zone.
Instance Attribute Details
#comment ⇒ String
Any comments that you want to include about the hosted zone.
3790 3791 3792 3793 3794 3795 |
# File 'gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb', line 3790 class HostedZoneConfig < Struct.new( :comment, :private_zone) SENSITIVE = [] include Aws::Structure end |
#private_zone ⇒ Boolean
A value that indicates whether this is a private hosted zone.
3790 3791 3792 3793 3794 3795 |
# File 'gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb', line 3790 class HostedZoneConfig < Struct.new( :comment, :private_zone) SENSITIVE = [] include Aws::Structure end |