> For the complete documentation index, see [llms.txt](https://docs.panther.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.panther.com/ko/system-configuration/panther-deployment-types/legacy-configurations/self-hosted-deployments/run-time.md).

# 런타임 환경

{% hint style="info" %}
Panther [SaaS](/ko/system-configuration/panther-deployment-types/saas.md) 고객은 호스팅된 Panther 인스턴스에 사용자 지정 라이브러리 집합 또는 레이어를 적용하려면 지원 티켓을 제출해야 합니다. Panther에서 다음 Python 라이브러리를 추가로 사용할 수 있습니다 `boto3` 제공되는 [AWS Lambda](https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html):
{% endhint %}

<table data-header-hidden><thead><tr><th width="204">패키지</th><th width="174">버전</th><th width="186">설명</th><th>라이선스</th></tr></thead><tbody><tr><td>패키지</td><td>버전</td><td>설명</td><td>라이선스</td></tr><tr><td><code>jsonpath-ng</code></td><td><code>1.5.2</code></td><td>JSONPath 구현</td><td>Apache v2</td></tr><tr><td><code>policyuniverse</code></td><td><code>1.3.3.20210223</code></td><td>AWS ARN 및 정책 구문 분석</td><td>Apache v2</td></tr><tr><td><code>requests</code></td><td><code>2.23.0</code></td><td>쉬운 HTTP 요청</td><td>Apache v2</td></tr></tbody></table>

자체 호스팅 **Panther** 인스턴스에서는 다음을 수정하여 사용자 지정 라이브러리를 추가할 수 있습니다 `PipLayer` 아래의 `panther_config.yml`:

```yaml
PipLayer:
  - jsonpath-ng=1.5.2
  - policyuniverse==1.3.3.20210223
  - requests==2.23.0
```

또는 다음에 사용자 지정 Lambda 레이어를 연결하여 런타임 라이브러리를 재정의할 수 있습니다 `panther_config.yml`:

```yaml
BackendParameterValues:
  PythonLayerVersionArn: 'arn:aws:lambda:us-east-2:123456789012:layer:my-layer:3'
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.panther.com/ko/system-configuration/panther-deployment-types/legacy-configurations/self-hosted-deployments/run-time.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
