Class: Aws::EKS::Types::NodegroupResources

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-eks/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

Instance Attribute Details

#auto_scaling_groupsArray<Types::AutoScalingGroup>

The Auto Scaling groups associated with the node group.

Returns:



4613
4614
4615
4616
4617
4618
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 4613

class NodegroupResources < Struct.new(
  :auto_scaling_groups,
  :remote_access_security_group)
  SENSITIVE = []
  include Aws::Structure
end

#remote_access_security_groupString

The remote access security group associated with the node group. This security group controls SSH access to the nodes.

Returns:

  • (String)


4613
4614
4615
4616
4617
4618
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 4613

class NodegroupResources < Struct.new(
  :auto_scaling_groups,
  :remote_access_security_group)
  SENSITIVE = []
  include Aws::Structure
end