> ## 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.

# CSharp: TerraformOutputConfig

> CDKTN Core API Reference for TerraformOutputConfig in CSharp.

## Initializer <a name="Initializer" id="cdktn.TerraformOutputConfig.Initializer" />

```csharp theme={null}
using Io.Cdktn;

new TerraformOutputConfig {
    object Value,
    ITerraformDependable[] DependsOn = null,
    string Description = null,
    Precondition Precondition = null,
    bool Sensitive = null,
    bool StaticId = null
};
```

## Properties <a name="Properties" id="Properties" />

| **Name**                                                                                   | **Type**                                                                       | **Description**                                                                                                                                                   |
| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| <code><a href="#cdktn.TerraformOutputConfig.property.value">Value</a></code>               | <code>object</code>                                                            | *No description.*                                                                                                                                                 |
| <code><a href="#cdktn.TerraformOutputConfig.property.dependsOn">DependsOn</a></code>       | <code><a href="#cdktn.ITerraformDependable">ITerraformDependable</a>\[]</code> | *No description.*                                                                                                                                                 |
| <code><a href="#cdktn.TerraformOutputConfig.property.description">Description</a></code>   | <code>string</code>                                                            | *No description.*                                                                                                                                                 |
| <code><a href="#cdktn.TerraformOutputConfig.property.precondition">Precondition</a></code> | <code><a href="#cdktn.Precondition">Precondition</a></code>                    | *No description.*                                                                                                                                                 |
| <code><a href="#cdktn.TerraformOutputConfig.property.sensitive">Sensitive</a></code>       | <code>bool</code>                                                              | *No description.*                                                                                                                                                 |
| <code><a href="#cdktn.TerraformOutputConfig.property.staticId">StaticId</a></code>         | <code>bool</code>                                                              | If set to true the synthesized Terraform Output will be named after the `id` passed to the constructor instead of the default (TerraformOutput.friendlyUniqueId). |

***

### `Value`<sup>Required</sup> <a name="Value" id="cdktn.TerraformOutputConfig.property.value" />

```csharp theme={null}
public object Value { get; set; }
```

* *Type:* object

***

### `DependsOn`<sup>Optional</sup> <a name="DependsOn" id="cdktn.TerraformOutputConfig.property.dependsOn" />

```csharp theme={null}
public ITerraformDependable[] DependsOn { get; set; }
```

* *Type:* <a href="#cdktn.ITerraformDependable">ITerraformDependable</a>\[]

***

### `Description`<sup>Optional</sup> <a name="Description" id="cdktn.TerraformOutputConfig.property.description" />

```csharp theme={null}
public string Description { get; set; }
```

* *Type:* string

***

### `Precondition`<sup>Optional</sup> <a name="Precondition" id="cdktn.TerraformOutputConfig.property.precondition" />

```csharp theme={null}
public Precondition Precondition { get; set; }
```

* *Type:* <a href="#cdktn.Precondition">Precondition</a>

***

### `Sensitive`<sup>Optional</sup> <a name="Sensitive" id="cdktn.TerraformOutputConfig.property.sensitive" />

```csharp theme={null}
public bool Sensitive { get; set; }
```

* *Type:* bool

***

### `StaticId`<sup>Optional</sup> <a name="StaticId" id="cdktn.TerraformOutputConfig.property.staticId" />

```csharp theme={null}
public bool StaticId { get; set; }
```

* *Type:* bool
* *Default:* false

If set to true the synthesized Terraform Output will be named after the `id` passed to the constructor instead of the default (TerraformOutput.friendlyUniqueId).

***
