Class: Aws::Route53::Types::HostedZoneConfig

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#commentString

Any comments that you want to include about the hosted zone.

Returns:

  • (String)


3792
3793
3794
3795
3796
3797
# File 'gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb', line 3792

class HostedZoneConfig < Struct.new(
  :comment,
  :private_zone)
  SENSITIVE = []
  include Aws::Structure
end

#private_zoneBoolean

A value that indicates whether this is a private hosted zone.

Returns:

  • (Boolean)


3792
3793
3794
3795
3796
3797
# File 'gems/aws-sdk-route53/lib/aws-sdk-route53/types.rb', line 3792

class HostedZoneConfig < Struct.new(
  :comment,
  :private_zone)
  SENSITIVE = []
  include Aws::Structure
end