Class: Aws::CloudFormation::Types::Output
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::Output
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudformation/types.rb
Overview
The Output data type.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#description ⇒ String
User defined description associated with the output.
-
#export_name ⇒ String
The name of the export associated with the output.
-
#output_key ⇒ String
The key associated with the output.
-
#output_value ⇒ String
The value associated with the output.
Instance Attribute Details
#description ⇒ String
User defined description associated with the output.
6108 6109 6110 6111 6112 6113 6114 6115 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 6108 class Output < Struct.new( :output_key, :output_value, :description, :export_name) SENSITIVE = [] include Aws::Structure end |
#export_name ⇒ String
The name of the export associated with the output.
6108 6109 6110 6111 6112 6113 6114 6115 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 6108 class Output < Struct.new( :output_key, :output_value, :description, :export_name) SENSITIVE = [] include Aws::Structure end |