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

# Go: IPostProcessor

> CDKTN Core API Reference for IPostProcessor in Go.

* *Implemented By:* <a href="#cdktn.IPostProcessor">IPostProcessor</a>

A Token that can post-process the complete resolved value, after resolve() has recursed over it.

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

| **Name**                                                                 | **Description**                                                                      |
| ------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ |
| <code><a href="#cdktn.IPostProcessor.postProcess">PostProcess</a></code> | Process the completely resolved value, after full recursion/resolution has happened. |

***

### `PostProcess` <a name="PostProcess" id="cdktn.IPostProcessor.postProcess" />

```go theme={null}
func PostProcess(input interface{}, context IResolveContext) interface{}
```

Process the completely resolved value, after full recursion/resolution has happened.

#### `input`<sup>Required</sup> <a name="input" id="cdktn.IPostProcessor.postProcess.parameter.input" />

* *Type:* interface\{}

***

#### `context`<sup>Required</sup> <a name="context" id="cdktn.IPostProcessor.postProcess.parameter.context" />

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

***
