Class: Aws::CloudFormation::Types::Export

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#exporting_stack_idString

The stack that contains the exported output name and value.

Returns:

  • (String)


4136
4137
4138
4139
4140
4141
4142
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 4136

class Export < Struct.new(
  :exporting_stack_id,
  :name,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

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.

Returns:

  • (String)


4136
4137
4138
4139
4140
4141
4142
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 4136

class Export < Struct.new(
  :exporting_stack_id,
  :name,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

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.

Returns:

  • (String)


4136
4137
4138
4139
4140
4141
4142
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 4136

class Export < Struct.new(
  :exporting_stack_id,
  :name,
  :value)
  SENSITIVE = []
  include Aws::Structure
end