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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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)


12629
12630
12631
12632
12633
12634
# File 'lib/aws-sdk-lightsail/types.rb', line 12629

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

#messageString

The message that describes the reason for the status code.

Returns:

  • (String)


12629
12630
12631
12632
12633
12634
# File 'lib/aws-sdk-lightsail/types.rb', line 12629

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