> ## Documentation Index
> Fetch the complete documentation index at: https://ctrlrun.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Decision

> What may happen to an action: exactly three outcomes in v0.1 (SPEC-v0.1 §3.3).

`ctrlrun.Decision` — class, defined at `src/ctrlrun/policy.py:234`

```python theme={null}
from ctrlrun import Decision
```

```python theme={null}
class Decision(StrEnum)
    ALLOW
    APPROVE
    DENY
```

What may happen to an action: exactly three outcomes in v0.1 (SPEC-v0.1 §3.3).

`StrEnum`, so a member renders as its value in receipts and CLI output (SPEC-v0.1 §6.1).

## Next

* [Python API index](/docs/reference/api/index).
* [Get started](/docs/get-started/quickstart) · [Why](/docs/why).


## Related topics

- [Decisions](/docs/concepts/decisions.md)
- [Authority and delegation](/docs/authority.md)
- [Choosing between them](/docs/get-started/choosing.md)
- [SQLite or Postgres](/docs/production/postgres.md)
- [A data-deletion agent under a retention rule](/docs/cookbook/data-deletion-agent.md)
