Class: Aws::Lightsail::Types::R53HostedZoneDeletionState

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb

Overview

Describes the deletion state of an Amazon RouteĀ 53 hosted zone for a domain that is being automatically delegated to an Amazon Lightsail DNS zone.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#codeString

The status code for the deletion state.

Following are the possible values:

  • SUCCEEDED - The hosted zone was successfully deleted.

  • PENDING - The hosted zone deletion is in progress.

  • FAILED - The hosted zone deletion failed.

  • STARTED - The hosted zone deletion started.

Returns:

  • (String)


12574
12575
12576
12577
12578
12579
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 12574

class R53HostedZoneDeletionState < Struct.new(
  :code,
  :message)
  SENSITIVE = []
  include Aws::Structure
end

#messageString

The message that describes the reason for the status code.

Returns:

  • (String)


12574
12575
12576
12577
12578
12579
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 12574

class R53HostedZoneDeletionState < Struct.new(
  :code,
  :message)
  SENSITIVE = []
  include Aws::Structure
end