Show / Hide Table of Contents

Class Mapping

Top level mapping in the mappings section

Inheritance
Object
Dictionary<String, Object>
Mapping
Implements
IDictionary<String, Object>
ICollection<KeyValuePair<String, Object>>
IReadOnlyDictionary<String, Object>
IReadOnlyCollection<KeyValuePair<String, Object>>
IEnumerable<KeyValuePair<String, Object>>
IDictionary
ICollection
IEnumerable
IDeserializationCallback
ISerializable
ITemplateObject
Inherited Members
System.Collections.Generic.Dictionary<System.String, System.Object>.System.Collections.IDictionary.get_Item(System.Object)
System.Collections.Generic.Dictionary<System.String, System.Object>.System.Collections.IDictionary.set_Item(System.Object, System.Object)
Dictionary<String, Object>.Add(String, Object)
Dictionary<String, Object>.Clear()
Dictionary<String, Object>.ContainsKey(String)
Dictionary<String, Object>.ContainsValue(Object)
Dictionary<String, Object>.GetEnumerator()
Dictionary<String, Object>.GetObjectData(SerializationInfo, StreamingContext)
Dictionary<String, Object>.OnDeserialization(Object)
Dictionary<String, Object>.Remove(String)
System.Collections.Generic.Dictionary<System.String, System.Object>.System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.String, System.Object>>.Add(System.Collections.Generic.KeyValuePair<System.String, System.Object>)
System.Collections.Generic.Dictionary<System.String, System.Object>.System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.String, System.Object>>.Contains(System.Collections.Generic.KeyValuePair<System.String, System.Object>)
System.Collections.Generic.Dictionary<System.String, System.Object>.System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.String, System.Object>>.CopyTo(System.Collections.Generic.KeyValuePair<System.String, System.Object>[], System.Int32)
System.Collections.Generic.Dictionary<System.String, System.Object>.System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.String, System.Object>>.Remove(System.Collections.Generic.KeyValuePair<System.String, System.Object>)
System.Collections.Generic.Dictionary<System.String, System.Object>.System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.String, System.Object>>.GetEnumerator()
Dictionary<String, Object>.ICollection.CopyTo(Array, Int32)
Dictionary<String, Object>.IDictionary.Add(Object, Object)
Dictionary<String, Object>.IDictionary.Contains(Object)
Dictionary<String, Object>.IDictionary.GetEnumerator()
Dictionary<String, Object>.IDictionary.Remove(Object)
Dictionary<String, Object>.IEnumerable.GetEnumerator()
Dictionary<String, Object>.TryGetValue(String, Object)
Dictionary<String, Object>.Comparer
Dictionary<String, Object>.Count
Dictionary<String, Object>.Item[String]
Dictionary<String, Object>.Keys
System.Collections.Generic.Dictionary<System.String, System.Object>.System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.String, System.Object>>.IsReadOnly
System.Collections.Generic.Dictionary<System.String, System.Object>.System.Collections.Generic.IDictionary<System.String, System.Object>.Keys
System.Collections.Generic.Dictionary<System.String, System.Object>.System.Collections.Generic.IDictionary<System.String, System.Object>.Values
System.Collections.Generic.Dictionary<System.String, System.Object>.System.Collections.Generic.IReadOnlyDictionary<System.String, System.Object>.Keys
System.Collections.Generic.Dictionary<System.String, System.Object>.System.Collections.Generic.IReadOnlyDictionary<System.String, System.Object>.Values
Dictionary<String, Object>.ICollection.IsSynchronized
Dictionary<String, Object>.ICollection.SyncRoot
Dictionary<String, Object>.IDictionary.IsFixedSize
Dictionary<String, Object>.IDictionary.IsReadOnly
Dictionary<String, Object>.IDictionary.Item[Object]
Dictionary<String, Object>.IDictionary.Keys
Dictionary<String, Object>.IDictionary.Values
Dictionary<String, Object>.Values
Object.Equals(Object)
Object.Equals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Object.ReferenceEquals(Object, Object)
Object.ToString()
Namespace: Firefly.CloudFormationParser.TemplateObjects
Assembly: Firefly.CloudFormationParser.dll
Syntax
public class Mapping : Dictionary<string, object>, IDictionary<string, object>, ICollection<KeyValuePair<string, object>>, IReadOnlyDictionary<string, object>, IReadOnlyCollection<KeyValuePair<string, object>>, IEnumerable<KeyValuePair<string, object>>, IDictionary, ICollection, IEnumerable, IDeserializationCallback, ISerializable, 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
[YamlIgnore]
public 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
[YamlIgnore]
public ITemplate Template { get; set; }
Property Value
Type Description
ITemplate

The template.

Implements

System.Collections.Generic.IDictionary<TKey,TValue>
System.Collections.Generic.ICollection<T>
System.Collections.Generic.IReadOnlyDictionary<TKey,TValue>
System.Collections.Generic.IReadOnlyCollection<T>
System.Collections.Generic.IEnumerable<T>
System.Collections.IDictionary
System.Collections.ICollection
System.Collections.IEnumerable
System.Runtime.Serialization.IDeserializationCallback
System.Runtime.Serialization.ISerializable
ITemplateObject

See Also

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