class Awspec::Type::EksNodeEC2

Attributes

sec_groups[R]
state[R]
subnet_id[R]

Public Class Methods

new(id, state, subnet_id, sec_groups) click to toggle source
# File lib/awspec/type/eks_nodegroup.rb, line 9
def initialize(id, state, subnet_id, sec_groups)
  @id = id
  @state = state
  @subnet_id = subnet_id
  @sec_groups = sec_groups
end

Public Instance Methods

to_s() click to toggle source
# File lib/awspec/type/eks_nodegroup.rb, line 16
def to_s
  "ID: #{@id}, State: #{@state}, Subnet ID: #{@subnet_id}, Security Groups: #{@sec_groups}"
end