class AWS::CloudFormation::StackOutput
def eql? other
- 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
-
description(String) -- -
value(String) -- -
key(String) -- -
stack(Stack) --
def initialize stack, key, value, description @stack = stack @key = key @value = value @description = description end