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

# Python: IPostProcessor

> CDKTN Core API Reference for IPostProcessor in Python.

* *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">post\_process</a></code> | Process the completely resolved value, after full recursion/resolution has happened. |

***

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

```python theme={null}
def post_process(
  input: typing.Any,
  context: IResolveContext
) -> typing.Any
```

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:* typing.Any

***

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

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

***
