Class: Aws::EKS::Types::NodegroupResources
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::NodegroupResources
- 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
-
#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.
5021 5022 5023 5024 5025 5026 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 5021 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.
5021 5022 5023 5024 5025 5026 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 5021 class NodegroupResources < Struct.new( :auto_scaling_groups, :remote_access_security_group) SENSITIVE = [] include Aws::Structure end |