Class: Aws::Route53::Types::GetHostedZoneLimitRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-route53/types.rb

Overview

A complex type that contains information about the request to create a hosted zone.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#hosted_zone_idString

The ID of the hosted zone that you want to get a limit for.

Returns:

  • (String)


2901
2902
2903
2904
2905
2906
# File 'lib/aws-sdk-route53/types.rb', line 2901

class GetHostedZoneLimitRequest < Struct.new(
  :type,
  :hosted_zone_id)
  SENSITIVE = []
  include Aws::Structure
end

#typeString

The limit that you want to get. Valid values include the following:

  • MAX_RRSETS_BY_ZONE: The maximum number of records that you can create in the specified hosted zone.

  • MAX_VPCS_ASSOCIATED_BY_ZONE: The maximum number of Amazon VPCs that you can associate with the specified private hosted zone.

Returns:

  • (String)


2901
2902
2903
2904
2905
2906
# File 'lib/aws-sdk-route53/types.rb', line 2901

class GetHostedZoneLimitRequest < Struct.new(
  :type,
  :hosted_zone_id)
  SENSITIVE = []
  include Aws::Structure
end