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.
For more information, see Get exported outputs from a deployed CloudFormation 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.
4460 4461 4462 4463 4464 4465 4466 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 4460 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.
4460 4461 4462 4463 4464 4465 4466 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 4460 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.
4460 4461 4462 4463 4464 4465 4466 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 4460 class Export < Struct.new( :exporting_stack_id, :name, :value) SENSITIVE = [] include Aws::Structure end |