Class: Aws::EKS::Types::NodegroupResources
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::NodegroupResources
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-eks/types.rb
Overview
An object representing the resources associated with the node group, such as Auto Scaling groups and security groups for remote access.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#auto_scaling_groups ⇒ Array<Types::AutoScalingGroup>
The Auto Scaling groups associated with the node group.
-
#remote_access_security_group ⇒ String
The remote access security group associated with the node group.
Instance Attribute Details
#auto_scaling_groups ⇒ Array<Types::AutoScalingGroup>
The Auto Scaling groups associated with the node group.
5158 5159 5160 5161 5162 5163 |
# File 'lib/aws-sdk-eks/types.rb', line 5158 class NodegroupResources < Struct.new( :auto_scaling_groups, :remote_access_security_group) SENSITIVE = [] include Aws::Structure end |
#remote_access_security_group ⇒ String
The remote access security group associated with the node group. This security group controls SSH access to the nodes.
5158 5159 5160 5161 5162 5163 |
# File 'lib/aws-sdk-eks/types.rb', line 5158 class NodegroupResources < Struct.new( :auto_scaling_groups, :remote_access_security_group) SENSITIVE = [] include Aws::Structure end |