Documentation Index
Fetch the complete documentation index at: https://cdktn.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
Initializers
using Io.Cdktn;
new TerraformAsset(Construct Scope, string Id, TerraformAssetConfig Config);
| Name | Type | Description |
|---|
Scope | Constructs.Construct | No description. |
Id | string | No description. |
Config | TerraformAssetConfig | No description. |
ScopeRequired
- Type: Constructs.Construct
IdRequired
ConfigRequired
Methods
| Name | Description |
|---|
ToString | Returns a string representation of this construct. |
ToString
private string ToString()
Returns a string representation of this construct.
Static Functions
| Name | Description |
|---|
IsConstruct | Checks if x is a construct. |
IsConstruct
using Io.Cdktn;
TerraformAsset.IsConstruct(object X);
Checks if x is a construct.
Use this method instead of instanceof to properly detect Construct
instances, even when the construct library is symlinked.
Explanation: in JavaScript, multiple copies of the constructs library on
disk are seen as independent, completely different libraries. As a
consequence, the class Construct in each copy of the constructs library
is seen as a different class, and an instance of one class will not test as
instanceof the other class. npm install will not create installations
like this, but users may manually symlink construct libraries together or
use a monorepo tool: in those cases, multiple copies of the constructs
library can be accidentally installed, and instanceof will behave
unpredictably. It is safest to avoid using instanceof, and using
this type-testing method instead.
XRequired
Any object.
Properties
| Name | Type | Description |
|---|
Node | Constructs.Node | The tree node. |
FileName | string | Name of the asset. |
Path | string | The path relative to the root of the terraform directory in posix format Use this property to reference the asset. |
AssetHash | string | No description. |
Type | AssetType | No description. |
NodeRequired
public Node Node { get; }
The tree node.
FileNameRequired
public string FileName { get; }
Name of the asset.
PathRequired
public string Path { get; }
The path relative to the root of the terraform directory in posix format Use this property to reference the asset.
AssetHashRequired
public string AssetHash { get; }
TypeRequired
public AssetType Type { get; }