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.
4996 4997 4998 4999 5000 5001 |
# File 'lib/aws-sdk-eks/types.rb', line 4996 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.
4996 4997 4998 4999 5000 5001 |
# File 'lib/aws-sdk-eks/types.rb', line 4996 class NodegroupResources < Struct.new( :auto_scaling_groups, :remote_access_security_group) SENSITIVE = [] include Aws::Structure end |