You are viewing documentation for version 1 of the AWS SDK for Ruby. Version 2 documentation can be found here.
Class: AWS::CloudFormation::StackOutput
- Inherits:
-
Object
- Object
- AWS::CloudFormation::StackOutput
show all
- Defined in:
- lib/aws/cloud_formation/stack_output.rb
Instance Attribute Summary collapse
Instance Method Summary
collapse
Constructor Details
#initialize(stack, key, value, description) ⇒ StackOutput
Returns a new instance of StackOutput
22
23
24
25
26
27
|
# 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
|
Instance Attribute Details
#description ⇒ String
39
40
41
|
# File 'lib/aws/cloud_formation/stack_output.rb', line 39
def description
@description
end
|
#key ⇒ String
33
34
35
|
# File 'lib/aws/cloud_formation/stack_output.rb', line 33
def key
@key
end
|
30
31
32
|
# File 'lib/aws/cloud_formation/stack_output.rb', line 30
def stack
@stack
end
|
#value ⇒ String
36
37
38
|
# File 'lib/aws/cloud_formation/stack_output.rb', line 36
def value
@value
end
|