Interface IOutput
Interface describing a CloudFormation Output.
Namespace: Firefly.CloudFormationParser
Assembly: Firefly.CloudFormationParser.dll
Syntax
public interface IOutput : ITemplateObject
Properties
| Improve this Doc View SourceCondition
Gets or sets the output's condition.
When present, associates this output with a condition defined in the Conditions
section of the template.
Declaration
string Condition { get; set; }
Property Value
Type | Description |
---|---|
String | The CloudFormation condition which will be |
Description
Gets or sets the output's description.
A string type that describes the output value. The value for the description declaration must be a literal string that's between 0 and 1024 bytes in length.
Declaration
string Description { get; set; }
Property Value
Type | Description |
---|---|
String | The output's description which will be |
Export
Gets or sets the name of the resource output to be exported for a cross-stack reference.
Declaration
object Export { get; set; }
Property Value
Type | Description |
---|---|
Object | The export name which will be |
Value
Gets or sets the output's value.
The value of the property returned by the aws cloudformation describe-stacks
command.
The value of an output can include literals, parameter references, pseudo-parameters, a mapping value, or intrinsic functions.
Declaration
object Value { get; set; }
Property Value
Type | Description |
---|---|
Object | The value. |