Show / Hide Table of Contents

Interface ITemplateObject

Interface describing a template object

Namespace: Firefly.CloudFormationParser.TemplateObjects
Assembly: Firefly.CloudFormationParser.dll
Syntax
public interface ITemplateObject

Properties

| Improve this Doc View Source

Name

Gets or sets the name of the object

Names are set on these objects for convenience by the post-processing stage, as they are not part of the object definition as per CloudFormation. They are set as follows:

  • Parameter - The parameter name
  • Resource - The logical ID
  • Output - The output name

Declaration
string Name { get; set; }
Property Value
Type Description
String

The name.

| Improve this Doc View Source

Template

Gets or sets the template which this object is contained in.

Declaration
ITemplate Template { get; set; }
Property Value
Type Description
ITemplate

The template.

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