Class AWS::Route53::HostedZoneCollection
In: lib/aws/route_53/hosted_zone_collection.rb
Parent: Object

# Create new hosted zone

    r53 = AWS::Route53.new
    hosted_zone = r53.hosted_zones.create('example.com.')

# Find existing hosted zone

    r53 = AWS::Route53.new
    hosted_zone = r53.hosted_zones['example.com.']

Methods

[]   _each_item   create   new  

Included Modules

Core::Collection::WithLimitAndNextToken

Public Class methods

@api private

Public Instance methods

Find hosted zone by id. @param [String] hosted_zone_id @return [HostedZone]

@param [String] name @option options [String] :comment @option options [String] :caller_reference @return [HostedZone]

Protected Instance methods

[Validate]