Show / Hide Table of Contents

Interface IOutput

Interface describing a CloudFormation Output.

Inherited Members
ITemplateObject.Name
ITemplateObject.Template
Namespace: Firefly.CloudFormationParser
Assembly: Firefly.CloudFormationParser.dll
Syntax
public interface IOutput : ITemplateObject

Properties

| Improve this Doc View Source

Condition

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 null if the template did not provide this property.

| Improve this Doc View Source

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 null if the template did not provide this property.

| Improve this Doc View Source

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 null if the template did not provide this property.

| Improve this Doc View Source

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.

IIntrinsic
Declaration
object Value { get; set; }
Property Value
Type Description
Object

The value.

  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX