class AWS::CloudFormation::StackOutput
Attributes
description[R]
@return [String]
key[R]
@return [String]
stack[R]
@return [Stack]
value[R]
@return [String]
Public Class Methods
new(stack, key, value, description)
click to toggle source
@param [Stack] stack @param [String] key @param [String] value @param [String] description
# File lib/aws/cloud_formation/stack_output.rb, line 22 def initialize stack, key, value, description @stack = stack @key = key @value = value @description = description end
Public Instance Methods
eql?(other)
click to toggle source
@private
# File lib/aws/cloud_formation/stack_output.rb, line 42 def eql? other other.is_a?(StackOutput) and other.stack == stack and other.key == key and other.value == value and other.description == description end
Also aliased as: ==