class AWS::CloudFormation::StackOutput

def eql? other

Other tags:
    Api: - private
def eql? other
  other.is_a?(StackOutput) and
  other.stack == stack and
  other.key == key and
  other.value == value and
  other.description == description
end

def initialize stack, key, value, description

Parameters:
  • description (String) --
  • value (String) --
  • key (String) --
  • stack (Stack) --
def initialize stack, key, value, description
  @stack = stack
  @key = key
  @value = value
  @description = description
end