Method: AWS::CloudFormation::Stack#outputs
- Defined in:
- lib/aws/cloud_formation/stack.rb
#outputs ⇒ Array<StackOutput>
128 129 130 131 132 133 |
# File 'lib/aws/cloud_formation/stack.rb', line 128 def outputs output_details.collect do |o| key, value, desc = o.values_at(:output_key, :output_value, :description) StackOutput.new(self, key, value, desc) end end |