Class AbstractArrayIntrinsic
Abstract base class for intrinsics that have an array of items
Inheritance
AbstractArrayIntrinsic
Inherited Members
Namespace: Firefly.CloudFormationParser.Intrinsics.Abstractions
Assembly: Firefly.CloudFormationParser.dll
Syntax
public abstract class AbstractArrayIntrinsic : AbstractIntrinsic, IIntrinsic, IEnumerable<object>, IEnumerable
Constructors
| Improve this Doc View SourceAbstractArrayIntrinsic()
Initializes a new instance of the AbstractArrayIntrinsic class.
Declaration
protected AbstractArrayIntrinsic()
AbstractArrayIntrinsic(Object)
Initializes a new instance of the AbstractArrayIntrinsic class.
Declaration
protected AbstractArrayIntrinsic(object value)
Parameters
Type | Name | Description |
---|---|---|
Object | value | The value. |
AbstractArrayIntrinsic(Object, Boolean)
Initializes a new instance of the AbstractArrayIntrinsic class.
Declaration
protected AbstractArrayIntrinsic(object value, bool useLongForm)
Parameters
Type | Name | Description |
---|---|---|
Object | value | The value. |
Boolean | useLongForm | If set to |
Properties
| Improve this Doc View SourceItems
Gets or sets the item list for the intrinsic
Declaration
public List<object> Items { get; protected set; }
Property Value
Type | Description |
---|---|
List<Object> | The items. |