Class: Aws::Lightsail::Types::NameServersUpdateState
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lightsail::Types::NameServersUpdateState
- Defined in:
- gems/aws-sdk-lightsail/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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#code ⇒ String
The status code for the name servers update.
-
#message ⇒ String
The message that describes the reason for the status code.
Instance Attribute Details
#code ⇒ String
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.
11995 11996 11997 11998 11999 12000 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 11995 class NameServersUpdateState < Struct.new( :code, :message) SENSITIVE = [] include Aws::Structure end |
#message ⇒ String
The message that describes the reason for the status code.
11995 11996 11997 11998 11999 12000 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 11995 class NameServersUpdateState < Struct.new( :code, :message) SENSITIVE = [] include Aws::Structure end |