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

# Typescript: TerraformOutputConfig

> CDKTN Core API Reference for TerraformOutputConfig in Typescript.

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

```typescript theme={null}
import { TerraformOutputConfig } from 'cdktn'

const terraformOutputConfig: TerraformOutputConfig = { ... }
```

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

| **Name**                                                                                   | **Type**                                                                       | **Description**                                                                                                                                                   |
| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| <code><a href="#cdktn.TerraformOutputConfig.property.value">value</a></code>               | <code>any</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>boolean</code>                                                           | *No description.*                                                                                                                                                 |
| <code><a href="#cdktn.TerraformOutputConfig.property.staticId">staticId</a></code>         | <code>boolean</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" />

```typescript theme={null}
public readonly value: any;
```

* *Type:* any

***

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

```typescript theme={null}
public readonly dependsOn: ITerraformDependable[];
```

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

***

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

```typescript theme={null}
public readonly description: string;
```

* *Type:* string

***

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

```typescript theme={null}
public readonly precondition: Precondition;
```

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

***

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

```typescript theme={null}
public readonly sensitive: boolean;
```

* *Type:* boolean

***

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

```typescript theme={null}
public readonly staticId: boolean;
```

* *Type:* boolean
* *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).

***
