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.
      4821 4822 4823 4824 4825 4826  | 
    
      # File 'lib/aws-sdk-eks/types.rb', line 4821 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.
      4821 4822 4823 4824 4825 4826  | 
    
      # File 'lib/aws-sdk-eks/types.rb', line 4821 class NodegroupResources < Struct.new( :auto_scaling_groups, :remote_access_security_group) SENSITIVE = [] include Aws::Structure end  |