Class: Aws::Lightsail::Types::NameServersUpdateState

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

Overview

Describes the state of the name server records update made by Amazon Lightsail to an Amazon Route 53 registered domain.

For more information, see [DNS in Amazon Lightsail] in the *Amazon Lightsail Developer Guide*.

[1]: lightsail.aws.amazon.com/ls/docs/en_us/articles/understanding-dns-in-amazon-lightsail

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#codeString

The status code for the name servers update.

Following are the possible values:

  • ‘SUCCEEDED` - The name server records were successfully updated.

  • ‘PENDING` - The name server record update is in progress.

  • ‘FAILED` - The name server record update failed.

  • ‘STARTED` - The automatic name server record update started.

Returns:

  • (String)


11834
11835
11836
11837
11838
11839
# File 'lib/aws-sdk-lightsail/types.rb', line 11834

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

#messageString

The message that describes the reason for the status code.

Returns:

  • (String)


11834
11835
11836
11837
11838
11839
# File 'lib/aws-sdk-lightsail/types.rb', line 11834

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