class Awspec::Type::EksNodeSecGroup
Attributes
id[R]
name[R]
Public Class Methods
new(id, name)
click to toggle source
# File lib/awspec/type/eks_nodegroup.rb, line 24 def initialize(id, name) @id = id @name = name end
Public Instance Methods
to_s()
click to toggle source
# File lib/awspec/type/eks_nodegroup.rb, line 29 def to_s "ID: #{@id}, Name: #{@name}" end