Class: Aws::CloudFormation::Types::Export
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::Export
- Defined in:
- gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb
Overview
The Export
structure describes the exported output values for a
stack.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#exporting_stack_id ⇒ String
The stack that contains the exported output name and value.
-
#name ⇒ String
The name of exported output value.
-
#value ⇒ String
The value of the exported output, such as a resource physical ID.
Instance Attribute Details
#exporting_stack_id ⇒ String
The stack that contains the exported output name and value.
4156 4157 4158 4159 4160 4161 4162 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 4156 class Export < Struct.new( :exporting_stack_id, :name, :value) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of exported output value. Use this name and the
Fn::ImportValue
function to import the associated value into other
stacks. The name is defined in the Export
field in the associated
stack's Outputs
section.
4156 4157 4158 4159 4160 4161 4162 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 4156 class Export < Struct.new( :exporting_stack_id, :name, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value of the exported output, such as a resource physical ID.
This value is defined in the Export
field in the associated
stack's Outputs
section.
4156 4157 4158 4159 4160 4161 4162 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 4156 class Export < Struct.new( :exporting_stack_id, :name, :value) SENSITIVE = [] include Aws::Structure end |