Class: Aws::Finspace::Types::KxNode
- Inherits:
-
Struct
- Object
- Struct
- Aws::Finspace::Types::KxNode
- Defined in:
- gems/aws-sdk-finspace/lib/aws-sdk-finspace/types.rb
Overview
A structure that stores metadata for a kdb node.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#availability_zone_id ⇒ String
The identifier of the availability zones where subnets for the environment are created.
-
#launch_time ⇒ Time
The time when a particular node is started.
-
#node_id ⇒ String
A unique identifier for the node.
-
#status ⇒ String
Specifies the status of the cluster nodes.
Instance Attribute Details
#availability_zone_id ⇒ String
The identifier of the availability zones where subnets for the environment are created.
3766 3767 3768 3769 3770 3771 3772 3773 |
# File 'gems/aws-sdk-finspace/lib/aws-sdk-finspace/types.rb', line 3766 class KxNode < Struct.new( :node_id, :availability_zone_id, :launch_time, :status) SENSITIVE = [] include Aws::Structure end |
#launch_time ⇒ Time
The time when a particular node is started. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.
3766 3767 3768 3769 3770 3771 3772 3773 |
# File 'gems/aws-sdk-finspace/lib/aws-sdk-finspace/types.rb', line 3766 class KxNode < Struct.new( :node_id, :availability_zone_id, :launch_time, :status) SENSITIVE = [] include Aws::Structure end |
#node_id ⇒ String
A unique identifier for the node.
3766 3767 3768 3769 3770 3771 3772 3773 |
# File 'gems/aws-sdk-finspace/lib/aws-sdk-finspace/types.rb', line 3766 class KxNode < Struct.new( :node_id, :availability_zone_id, :launch_time, :status) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
Specifies the status of the cluster nodes.
RUNNING
– The node is actively serving.PROVISIONING
– The node is being prepared.
3766 3767 3768 3769 3770 3771 3772 3773 |
# File 'gems/aws-sdk-finspace/lib/aws-sdk-finspace/types.rb', line 3766 class KxNode < Struct.new( :node_id, :availability_zone_id, :launch_time, :status) SENSITIVE = [] include Aws::Structure end |