Skip to main content

Initializers

using Io.Cdktn;

new TerraformAsset(Construct Scope, string Id, TerraformAssetConfig Config);
NameTypeDescription
ScopeConstructs.ConstructNo description.
IdstringNo description.
ConfigTerraformAssetConfigNo description.

ScopeRequired

  • Type: Constructs.Construct

IdRequired

  • Type: string

ConfigRequired


Methods

NameDescription
ToStringReturns a string representation of this construct.

ToString

private string ToString()
Returns a string representation of this construct.

Static Functions

NameDescription
IsConstructChecks 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

  • Type: object
Any object.

Properties

NameTypeDescription
NodeConstructs.NodeThe tree node.
FileNamestringName of the asset.
PathstringThe path relative to the root of the terraform directory in posix format Use this property to reference the asset.
AssetHashstringNo description.
TypeAssetTypeNo description.

NodeRequired

public Node Node { get; }
  • Type: Constructs.Node
The tree node.

FileNameRequired

public string FileName { get; }
  • Type: string
Name of the asset.

PathRequired

public string Path { get; }
  • Type: string
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; }
  • Type: string

TypeRequired

public AssetType Type { get; }