cdk-local 0.139.3 → 0.141.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +81 -58
- package/dist/cli.js +2 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/internal.d.ts +2 -2
- package/dist/internal.d.ts.map +1 -1
- package/dist/internal.js +2 -2
- package/dist/{local-studio-BNV_vs04.d.ts → local-studio-C1YGBilh.d.ts} +8 -2
- package/dist/local-studio-C1YGBilh.d.ts.map +1 -0
- package/dist/{local-studio-BvuYWUHm.js → local-studio-fdztI6b8.js} +472 -205
- package/dist/{local-studio-BvuYWUHm.js.map → local-studio-fdztI6b8.js.map} +1 -1
- package/package.json +1 -1
- package/dist/local-studio-BNV_vs04.d.ts.map +0 -1
package/README.md
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
# cdk-local
|
|
1
|
+
# cdk-local (`cdkl`)
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/cdk-local)
|
|
4
4
|
[](https://www.npmjs.com/package/cdk-local)
|
|
5
|
-
[](https://github.com/go-to-k/cdk-local/actions/workflows/ci.yml)
|
|
6
5
|
[](./LICENSE)
|
|
7
6
|
|
|
8
7
|
**Run your CDK-built app locally, no deploy needed — standalone, or kept local while it reaches the real AWS resources and data it depends on, with no `.env` or local copies to maintain.**
|
|
@@ -24,30 +23,35 @@ cd your-cdk-app # the directory holding cdk.json
|
|
|
24
23
|
cdkl invoke # pick a Lambda from the list, then run it locally
|
|
25
24
|
```
|
|
26
25
|
|
|
27
|
-
|
|
26
|
+
**Add `--from-cfn-stack`** to bind to a deployed stack — your handler still runs locally in Docker, but reads and writes against the real AWS the deployed app uses: DynamoDB, S3, Secrets, Cognito, and more (see [Why cdk-local](#why-cdk-local) below).
|
|
28
27
|
|
|
29
|
-
|
|
28
|
+
```bash
|
|
29
|
+
cdkl start-api --from-cfn-stack # local API on real AWS data; JWT verified against the real Cognito User Pool
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
**Prefer a browser?** `cdkl studio` opens a local web console over the same targets — pick one, invoke or serve it, and watch every request, response, and log line on a live timeline.
|
|
30
33
|
|
|
31
34
|
```bash
|
|
32
|
-
cdkl
|
|
33
|
-
cdkl invoke MyStack/Fn --from-cfn-stack # one Lambda against real DynamoDB / S3 / Secrets
|
|
35
|
+
cdkl studio # open the web console (no target needed)
|
|
34
36
|
```
|
|
35
37
|
|
|
36
38
|
## Why cdk-local
|
|
37
39
|
|
|
38
40
|
- **Zero-friction local execution** — run standalone with just Docker and your CDK app, no AWS account or deploy needed. Verify the parts of your app that don't touch AWS in seconds — handy as a zero-setup first run, or in CI where no credentials are available:
|
|
39
|
-
- API Gateway routing and request shaping
|
|
40
|
-
- Lambda authorizers, running in real local containers
|
|
41
41
|
- pure handler logic — validation, transforms, branching
|
|
42
|
-
-
|
|
43
|
-
-
|
|
44
|
-
|
|
45
|
-
-
|
|
42
|
+
- Lambda authorizers, running in real local containers
|
|
43
|
+
- API Gateway routing and request shaping
|
|
44
|
+
- **Iterate against your real deployed stack — including its data.** `--from-cfn-stack` reads the deployed CloudFormation stack and injects its real ARNs and Secret values into the container — **no `.env` file to maintain, no manual ARN copy-paste** — so you stay on the real DynamoDB rows, S3 objects, Cognito users, and Secret values your IAM credentials reach. An offline emulator can fake the API surface, but **you'd still own the cost of seeding it**:
|
|
45
|
+
- dumping real data into a local DB
|
|
46
|
+
- mirroring Secret values into a local secret store
|
|
47
|
+
- re-anonymizing that test data every time the schema changes
|
|
46
48
|
- scripting realistic Cognito test users
|
|
47
49
|
|
|
48
50
|
## What runs locally
|
|
49
51
|
|
|
50
|
-
cdk-local runs your **application compute** in Docker, using your CDK app as the source of truth.
|
|
52
|
+
cdk-local runs your **application compute** in Docker, using your CDK app as the source of truth.
|
|
53
|
+
|
|
54
|
+
It deliberately does NOT emulate AWS managed services: your code reaches DynamoDB / S3 / Secrets Manager / Cognito / SNS / SQS / etc. as **real AWS** through your IAM credentials (or pass `--assume-role <arn>` to assume a different role). Add `--from-cfn-stack` to also bind env vars to a deployed stack's real ARNs and Secret values.
|
|
51
55
|
|
|
52
56
|
The locally executable resources are listed under [Supported resources](#supported-resources).
|
|
53
57
|
|
|
@@ -55,46 +59,59 @@ The locally executable resources are listed under [Supported resources](#support
|
|
|
55
59
|
|
|
56
60
|
Run every `cdkl` command from your CDK project root (the directory containing `cdk.json`).
|
|
57
61
|
|
|
58
|
-
|
|
62
|
+
Every command takes its target two ways:
|
|
59
63
|
|
|
60
|
-
|
|
61
|
-
cdkl invoke MyStack/Fn
|
|
62
|
-
cdkl run-task MyStack/Task # ECS task, run once
|
|
63
|
-
cdkl start-service MyStack/Worker # ECS service replicas (no load balancer)
|
|
64
|
-
cdkl start-alb MyStack/WebAlb # ECS behind an ALB (front-door per listener)
|
|
65
|
-
cdkl start-api MyStack/Api # API Gateway REST v1 / HTTP v2 / WebSocket + Function URLs
|
|
66
|
-
cdkl start-cloudfront MyStack/SiteDist # CloudFront: S3 / Lambda Function URL origins + Functions (static site / SPA / SSR)
|
|
67
|
-
cdkl invoke-agentcore MyStack/Agent # Bedrock AgentCore Runtime (HTTP / MCP / A2A / AGUI)
|
|
68
|
-
cdkl start-agentcore MyStack/Agent # serve an AgentCore Runtime warm: HTTP (POST /invocations + /ws) / MCP (POST /mcp) / A2A (POST /), repeatable
|
|
69
|
-
cdkl list # every runnable target, grouped by command (alias: ls)
|
|
70
|
-
cdkl studio # interactive web console over every target
|
|
71
|
-
```
|
|
64
|
+
- **Leave it off** and cdk-local lists every matching target for you to pick with the arrow keys — no need to know or type the CDK path (`invoke` / `invoke-agentcore` / `start-agentcore` / `run-task` / `start-cloudfront` pick one; `start-service` / `start-alb` / `start-api` multi-select).
|
|
65
|
+
- **Or name it** — pass the CDK display path (e.g. `cdkl invoke MyStack/Fn`) or a stack-qualified logical ID (`MyStack:Fn1234ABCD`, the SAM-compatible form); single-stack apps may drop the stack prefix.
|
|
72
66
|
|
|
73
67
|

|
|
74
68
|
|
|
75
69
|
`invoke` runs one Lambda in a real RIE container; the options you reach for most:
|
|
76
70
|
|
|
77
71
|
```bash
|
|
78
|
-
cdkl invoke
|
|
79
|
-
cdkl invoke
|
|
80
|
-
cdkl invoke
|
|
81
|
-
cdkl invoke
|
|
72
|
+
cdkl invoke --event ./event.json # run with a JSON event payload
|
|
73
|
+
cdkl invoke --env-vars ./env.json # overlay env vars (SAM-shape file)
|
|
74
|
+
cdkl invoke --from-cfn-stack # bind env to the deployed stack's real values
|
|
75
|
+
cdkl invoke --from-cfn-stack --assume-role # ...and run as its deployed execution role
|
|
82
76
|
```
|
|
83
77
|
|
|
78
|
+
Per-command notes — full capabilities are in [Supported resources](#supported-resources):
|
|
79
|
+
|
|
84
80
|
- **`start-api`** serves one HTTP server per API; a bare `start-api` in a multi-stack app needs `--all-stacks` or `--stack <name>`.
|
|
85
|
-
- **`run-task`**
|
|
86
|
-
- **`start-
|
|
87
|
-
- **`start-
|
|
88
|
-
- **`
|
|
89
|
-
- **`
|
|
90
|
-
- **`
|
|
81
|
+
- **`run-task`** runs one ECS task to completion; declared container ports publish on the host (a privileged port like 80 auto-remaps to a free high port with a WARN, or `--host-port <container>=<host>` pins one).
|
|
82
|
+
- **`start-service`** runs the service's replicas with no load balancer; a single-replica run publishes host ports the same way. Both `start-service` and `start-alb` print each host URL in a `Service endpoints:` banner after boot.
|
|
83
|
+
- **`start-alb`** stands up the ECS service(s) behind an ALB with full listener-rule routing, auth, and WebSocket proxying ([details](docs/cli-reference.md#cdkl-start-alb-run-an-alb-fronted-service-locally)).
|
|
84
|
+
- **`start-cloudfront`** serves the `viewer-request` -> origin -> `viewer-response` pipeline over S3 / Lambda Function URL origins, running CloudFront Functions and Lambda@Edge locally ([details](docs/cli-reference.md#cdkl-start-cloudfront-serve-a-cloudfront-distribution-locally)).
|
|
85
|
+
- **`invoke-agentcore`** runs a Bedrock AgentCore Runtime agent once ([details](docs/cli-reference.md#cdkl-invoke-agentcore-run-bedrock-agentcore-runtime-agents-locally)).
|
|
86
|
+
- **`start-agentcore`** serves an AgentCore Runtime warm — one container you hit repeatedly until `^C` ([details](docs/cli-reference.md#cdkl-start-agentcore-serve-an-agentcore-runtimes-http-contract--ws-locally)).
|
|
87
|
+
- **`studio`** opens a local web console over the same targets, no target needed: [Web console — `cdkl studio`](#web-console--cdkl-studio).
|
|
91
88
|
- Non-TTY (CI / pipes): every command except a bare `start-api` needs an explicit target.
|
|
92
89
|
|
|
90
|
+
The full command list:
|
|
91
|
+
|
|
92
|
+
```bash
|
|
93
|
+
cdkl invoke # Lambda (ZIP or container image)
|
|
94
|
+
cdkl run-task # ECS task, run once
|
|
95
|
+
cdkl start-service # ECS service replicas (no load balancer)
|
|
96
|
+
cdkl start-alb # ECS behind an ALB (front-door per listener)
|
|
97
|
+
cdkl start-api # API Gateway REST v1 / HTTP v2 / WebSocket + Function URLs
|
|
98
|
+
cdkl start-cloudfront # CloudFront: S3 / Lambda Function URL origins + Functions (static site / SPA / SSR)
|
|
99
|
+
cdkl invoke-agentcore # Bedrock AgentCore Runtime (HTTP / MCP / A2A / AGUI)
|
|
100
|
+
cdkl start-agentcore # serve an AgentCore Runtime warm: HTTP (POST /invocations + /ws) / MCP (POST /mcp) / A2A (POST /), repeatable
|
|
101
|
+
cdkl list # every runnable target, grouped by command (alias: ls)
|
|
102
|
+
cdkl studio # interactive web console over every target
|
|
103
|
+
```
|
|
104
|
+
|
|
93
105
|
Full flags, precedence, and `--from-cfn-stack` resolution: [docs/cli-reference.md](docs/cli-reference.md) and [docs/local-emulation.md](docs/local-emulation.md).
|
|
94
106
|
|
|
95
|
-
|
|
107
|
+
## Web console — `cdkl studio`
|
|
108
|
+
|
|
109
|
+
`cdkl studio` is a point-and-click front over the same runners — it takes no target and lists them all. Beyond running a target, it gives you what the CLI can't:
|
|
96
110
|
|
|
97
|
-
|
|
111
|
+
- a live timeline where every invocation and captured serve request lands, each with its container logs bound;
|
|
112
|
+
- replay — re-open any past row with an edited payload and re-invoke, or re-send a captured serve request.
|
|
113
|
+
|
|
114
|
+
A served WebSocket endpoint — an API Gateway WebSocket API, or an HTTP / AGUI AgentCore runtime's `/ws` from `start-agentcore` — also gets an interactive WebSocket console (connect / send / receive frames).
|
|
98
115
|
|
|
99
116
|
```bash
|
|
100
117
|
cdkl studio # open the console (launches your browser)
|
|
@@ -108,35 +125,40 @@ cdkl studio --stack 'dev/*' # scope the displayed target list (
|
|
|
108
125
|
|
|
109
126
|
`--from-cfn-stack` / `--assume-role` / `--watch` are session-global and also editable live from the Session bar — they apply to every invoke / serve you start from the UI. The standard synth flags (`--app` / `--profile` / `--region` / `-c`) work here too.
|
|
110
127
|
|
|
111
|
-
Each target's composer surfaces its per-run options as controls
|
|
128
|
+
Each target's composer surfaces its per-run options as controls:
|
|
129
|
+
|
|
130
|
+
- curated controls per kind — a Lambda's `--env-vars` as KEY/VALUE or JSON, ALB `--tls` / `--lb-port`, ECS `--max-tasks` / `--host-port`, an AgentCore runtime's `--ws` / `--sigv4` / `--bearer-token`;
|
|
131
|
+
- an **All options** panel that renders an editable control (checkbox / input / dropdown) for every other flag the underlying command accepts, with a raw extra-args input as the final escape hatch;
|
|
132
|
+
- a Dockerfile picker for an ECS service pinned to a deployed registry (where local edits otherwise don't take effect), rebuilding it from local source.
|
|
112
133
|
|
|
113
|
-
|
|
134
|
+
## Deployed stack binding — `--from-cfn-stack`
|
|
114
135
|
|
|
115
136
|
`--from-cfn-stack` binds to the deployed CloudFormation stack whose name matches your CDK stack. The bare form resolves the stack name from the target; pass an explicit name only when the deployed CFn stack name differs (e.g. CDK's `stackName` prop was overridden):
|
|
116
137
|
|
|
117
138
|
```bash
|
|
118
|
-
cdkl invoke
|
|
119
|
-
cdkl invoke
|
|
120
|
-
cdkl invoke
|
|
121
|
-
cdkl invoke
|
|
139
|
+
cdkl invoke --from-cfn-stack # bare: uses resolved stack name
|
|
140
|
+
cdkl invoke --from-cfn-stack MyExplicitCfnName # explicit when names differ
|
|
141
|
+
cdkl invoke --from-cfn-stack --stack-region eu-west-1 # cross-region CFn client
|
|
142
|
+
cdkl invoke --from-cfn-stack --assume-role # auto-assume deployed execution role
|
|
122
143
|
```
|
|
123
144
|
|
|
124
145
|
Substitutes `Ref` / `Fn::ImportValue` / `Fn::GetStackOutput` in env vars with the deployed physical IDs / exports, decrypts `AWS::SSM::Parameter::Value` entries (kept off the `docker run` argv), and resolves same-stack ECR `ContainerUri` to the deployed image. `Fn::GetAtt` in the Lambda's own env is recovered from the deployed function's resolved `Environment.Variables` via `lambda:GetFunctionConfiguration`. Full resolution rules: [docs/cli-reference.md#cloudformation-driven-env-recovery---from-cfn-stack](docs/cli-reference.md#cloudformation-driven-env-recovery---from-cfn-stack).
|
|
125
146
|
|
|
126
|
-
|
|
147
|
+
## Environment variables — `--env-vars`
|
|
127
148
|
|
|
128
|
-
Every command accepts `--env-vars <file>`, a SAM-shape JSON file that overlays the container's environment — point a Lambda function or ECS container at a different backend for a local run, or supply a value the synthesized template only knows as an intrinsic:
|
|
149
|
+
Every command except `start-cloudfront` (whose CloudFront Functions and Lambda@Edge have no env vars) accepts `--env-vars <file>`, a SAM-shape JSON file that overlays the container's environment — point a Lambda function or ECS container at a different backend for a local run, or supply a value the synthesized template only knows as an intrinsic:
|
|
129
150
|
|
|
130
151
|
```bash
|
|
131
|
-
cdkl invoke
|
|
132
|
-
cdkl start-service
|
|
133
|
-
cdkl start-alb
|
|
152
|
+
cdkl invoke --env-vars ./env.json
|
|
153
|
+
cdkl start-service --env-vars ./env.json
|
|
154
|
+
cdkl start-alb --env-vars ./env.json
|
|
134
155
|
```
|
|
135
156
|
|
|
136
157
|
```json
|
|
137
158
|
{
|
|
138
159
|
"Parameters": { "LOG_LEVEL": "debug" },
|
|
139
|
-
"MyStack/Fn": { "TABLE_ENDPOINT": "http://localhost:8000"
|
|
160
|
+
"MyStack/Fn": { "TABLE_ENDPOINT": "http://localhost:8000" },
|
|
161
|
+
"MyStack/Worker": { "WEBHOOK_URL": null },
|
|
140
162
|
"AppContainer": { "DB_HOST": "host.docker.internal", "DB_PORT": "13306" }
|
|
141
163
|
}
|
|
142
164
|
```
|
|
@@ -156,22 +178,23 @@ Each top-level JSON key picks which target to overlay:
|
|
|
156
178
|
|
|
157
179
|
When pointing a container at a tunneled VPC resource (e.g. an Aurora cluster reached via a local port forward), use `host.docker.internal` instead of `127.0.0.1` — `127.0.0.1` inside the container is the container itself, not the host where the tunnel listens.
|
|
158
180
|
|
|
159
|
-
|
|
181
|
+
## Hot reload — `--watch`
|
|
160
182
|
|
|
161
183
|
```bash
|
|
162
184
|
cdkl start-api --watch # reload API routes on save
|
|
163
185
|
cdkl start-service --watch # roll ECS replicas on save
|
|
164
186
|
cdkl start-alb --watch # roll ALB-fronted ECS replicas on save
|
|
187
|
+
cdkl start-cloudfront --watch # reload CloudFront Functions + origins on save
|
|
165
188
|
cdkl invoke-agentcore --ws --watch # reload an open /ws agent session
|
|
166
189
|
```
|
|
167
190
|
|
|
168
|
-
Edit a handler and the next request hits the new code — no server restart. ECS reloads roll replicas one at a time so the service stays available across the reload (an external request stream against the ALB listener port sees zero connection refusals, even on multi-replica services). Synth failures keep the previous replica(s) serving. Honors `cdk.json`'s `watch.include` / `watch.exclude` globs, so no separate `cdk watch` process is needed.
|
|
191
|
+
Edit a handler and the next request hits the new code — no server restart. ECS reloads roll replicas one at a time so the service stays available across the reload (an external request stream against the ALB listener port sees zero connection refusals, even on multi-replica services). Synth failures keep the previous replica(s) serving. `start-cloudfront --watch` swaps its CloudFront Functions and origins in place; its Lambda@Edge / Function URL warm containers are boot-time only, so restart to pick up changes to their code. Honors `cdk.json`'s `watch.include` / `watch.exclude` globs, so no separate `cdk watch` process is needed.
|
|
169
192
|
|
|
170
193
|
Reload classifier (interpreted-language fast path vs Dockerfile rebuild), shadow-replica TCP-probe timeout (`--shadow-ready-timeout`), and per-runtime caveats: [docs/local-emulation.md#hot-reload---watch](docs/local-emulation.md#hot-reload---watch).
|
|
171
194
|
|
|
172
|
-
|
|
195
|
+
## Local build override — `--image-override`
|
|
173
196
|
|
|
174
|
-
|
|
197
|
+
When a service's image is pinned to a deployed registry — `ContainerImage.fromEcrRepository(...)`, typical under `--from-cfn-stack` — `cdkl start-service` / `cdkl start-alb` run those deployed image bytes locally, so your source edits never take effect, even with `--watch`. `--image-override` rebuilds the image locally with `docker build` instead, so iteration works while real DynamoDB / Secrets / SSM stay wired in.
|
|
175
198
|
|
|
176
199
|
Boot in a TTY and the command walks each detected pinned target with an interactive Dockerfile picker:
|
|
177
200
|
|
|
@@ -191,7 +214,7 @@ cdkl start-alb --from-cfn-stack \
|
|
|
191
214
|
|
|
192
215
|
Per-service build inputs (`<svc>:KEY=VAL` for build-arg / build-secret, `<svc>=stage` for target), monorepo recipes, private-registry npmrc threading, `--no-interactive-overrides` / `--strict-overrides`, and the `--watch` rebuild loop: [docs/local-emulation.md#local-build-override---image-override](docs/local-emulation.md#local-build-override---image-override).
|
|
193
216
|
|
|
194
|
-
|
|
217
|
+
## start-service vs start-alb — which one?
|
|
195
218
|
|
|
196
219
|
Most CDK ECS apps boot multiple replicas behind an ALB. cdk-local exposes each layer separately so you can target the slice you care about:
|
|
197
220
|
|
|
@@ -216,10 +239,10 @@ Most CDK ECS apps boot multiple replicas behind an ALB. cdk-local exposes each l
|
|
|
216
239
|
| API Gateway (REST v1, HTTP v2, WebSocket) + Lambda Function URLs | `start-api` |
|
|
217
240
|
| ECS task definitions | `run-task` |
|
|
218
241
|
| ECS services | `start-service` |
|
|
219
|
-
| Cloud Map / Service Connect registry | service discovery between local replicas |
|
|
242
|
+
| Cloud Map / Service Connect registry | `start-service` / `start-alb` — service discovery between local replicas |
|
|
220
243
|
| ALB-fronted ECS / Lambda services | `start-alb` — HTTP / HTTPS listeners, all six listener-rule conditions, weighted forwards, redirect / fixed-response, mixed ECS + Lambda targets, authenticate-cognito / authenticate-oidc (local Bearer-JWT enforcement), WebSocket Upgrade |
|
|
221
|
-
| CloudFront distributions (S3 + Lambda Function URL origins + CloudFront Functions + Lambda@Edge) | `start-cloudfront` — viewer-request / viewer-response
|
|
222
|
-
| Bedrock AgentCore Runtime agents | `invoke-agentcore` —
|
|
244
|
+
| CloudFront distributions (S3 + Lambda Function URL origins + CloudFront Functions + Lambda@Edge) | `start-cloudfront` — **CloudFront Functions** (viewer-request / viewer-response) and **Lambda@Edge** (real RIE container, all four event types) over an S3 origin served from **local files** — the **BucketDeployment** source or a `--origin <id>=<dir>` dir — or from **real S3** on demand (`--from-cfn-stack`); plus Lambda Function URL origins, **KeyValueStore** reads, `ResponseHeadersPolicy` CORS, `--tls`, `--watch` ([details](docs/cli-reference.md#cdkl-start-cloudfront-serve-a-cloudfront-distribution-locally)) |
|
|
245
|
+
| Bedrock AgentCore Runtime agents | `invoke-agentcore` — single-shot (boot, invoke, tear down); `start-agentcore` — long-running warm serve, one container kept warm to hit repeatedly until `^C` |
|
|
223
246
|
|
|
224
247
|
Lambda runs on every current AWS Lambda runtime — Node.js (18/20/22/24), Python (3.11–3.14), Ruby (3.2/3.3), Java (8.al2/11/17/21), .NET (6/8), and the OS-only `provided.al2` / `provided.al2023`. The retired `go1.x` runtime is rejected with a pointer to migrate to `provided.al2023`.
|
|
225
248
|
|
package/dist/cli.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import {
|
|
2
|
+
import { D as createLocalStartAgentCoreCommand, F as createLocalStartCloudFrontCommand, Mn as createLocalInvokeCommand, Ot as createLocalStartServiceCommand, Pn as createLocalStartApiCommand, St as createLocalStartAlbCommand, a as createLocalStudioCommand, jt as createLocalRunTaskCommand, sn as createLocalInvokeAgentCoreCommand, w as createLocalListCommand } from "./local-studio-fdztI6b8.js";
|
|
3
3
|
import { Command } from "commander";
|
|
4
4
|
|
|
5
5
|
//#region src/cli/index.ts
|
|
6
6
|
const program = new Command();
|
|
7
|
-
program.name("cdkl").description("Run AWS CDK stacks locally with Docker.").version("0.
|
|
7
|
+
program.name("cdkl").description("Run AWS CDK stacks locally with Docker.").version("0.141.0");
|
|
8
8
|
program.addCommand(createLocalInvokeCommand());
|
|
9
9
|
program.addCommand(createLocalInvokeAgentCoreCommand());
|
|
10
10
|
program.addCommand(createLocalStartApiCommand());
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { $ as createLocalStartAgentCoreCommand, $a as
|
|
1
|
+
import { $ as createLocalStartAgentCoreCommand, $a as substituteEnvVarsFromState, Aa as setEmbedConfig, Ba as resolveCfnStackName, Ca as CreateLocalInvokeCommandOptions, Da as CdkLocalEmbedConfig, Fa as createLocalStateProvider, Ga as collectSsmParameterRefs, Ha as LocalStateRecord, Ia as isCfnFlagPresent, Ja as PseudoParameters, K as CreateLocalListCommandOptions, Ka as resolveSsmParameters, La as rejectExplicitCfnStackWithMultipleStacks, Ma as LocalStateProviderFactory, Na as LocalStateSourceError, Oa as getEmbedConfig, Pa as LocalStateSourceOptions, Qa as substituteAgainstStateAsync, Ra as resolveCfnFallbackRegion, Ta as createLocalInvokeCommand, Ua as ResolvedSsmParameters, Va as LocalStateProvider, Wa as SsmParameterRef, X as formatTargetListing, Xa as SubstitutionContext, Y as createLocalListCommand, Ya as StateEnvSubstitutionAudit, Z as CreateLocalStartAgentCoreCommandOptions, Za as substituteAgainstState, _i as CreateLocalInvokeAgentCoreCommandOptions, dt as CreateLocalStartCloudFrontCommandOptions, eo as substituteEnvVarsFromStateAsync, fr as CreateLocalStartApiCommandOptions, gn as CreateLocalStartServiceCommandOptions, hr as createLocalStartApiCommand, ir as listTargets, ja as ExtraStateProviders, ka as resetEmbedConfig, lr as createLocalRunTaskCommand, mt as createLocalStartCloudFrontCommand, nr as TargetListing, pn as createLocalStartAlbCommand, q as FormatTargetListingOptions, qa as CrossStackResolver, rr as countTargets, s as createLocalStudioCommand, sr as CreateLocalRunTaskCommandOptions, t as CreateLocalStudioCommandOptions, to as CloudFormationTemplate, tr as TargetEntry, un as CreateLocalStartAlbCommandOptions, vn as createLocalStartServiceCommand, yi as createLocalInvokeAgentCoreCommand, za as resolveCfnRegion } from "./local-studio-C1YGBilh.js";
|
|
2
2
|
import { CloudFormationClient } from "@aws-sdk/client-cloudformation";
|
|
3
3
|
|
|
4
4
|
//#region src/local/cfn-local-state-provider.d.ts
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { d as setEmbedConfig, l as getEmbedConfig, u as resetEmbedConfig } from "./docker-cmd-DQyeV02S.js";
|
|
2
|
-
import { $r as
|
|
2
|
+
import { $r as collectSsmParameterRefs, D as createLocalStartAgentCoreCommand, F as createLocalStartCloudFrontCommand, Gr as LocalStateSourceError, Hr as substituteAgainstStateAsync, Jr as rejectExplicitCfnStackWithMultipleStacks, Kr as createLocalStateProvider, Mn as createLocalInvokeCommand, Ot as createLocalStartServiceCommand, Pn as createLocalStartApiCommand, Qr as CfnLocalStateProvider, St as createLocalStartAlbCommand, T as formatTargetListing, Ur as substituteEnvVarsFromState, Vr as substituteAgainstState, Wr as substituteEnvVarsFromStateAsync, Xr as resolveCfnRegion, Yr as resolveCfnFallbackRegion, Zr as resolveCfnStackName, a as createLocalStudioCommand, ei as resolveSsmParameters, ii as listTargets, jt as createLocalRunTaskCommand, qr as isCfnFlagPresent, ri as countTargets, sn as createLocalInvokeAgentCoreCommand, w as createLocalListCommand } from "./local-studio-fdztI6b8.js";
|
|
3
3
|
|
|
4
4
|
export { CfnLocalStateProvider, LocalStateSourceError, collectSsmParameterRefs, countTargets, createLocalInvokeAgentCoreCommand, createLocalInvokeCommand, createLocalListCommand, createLocalRunTaskCommand, createLocalStartAgentCoreCommand, createLocalStartAlbCommand, createLocalStartApiCommand, createLocalStartCloudFrontCommand, createLocalStartServiceCommand, createLocalStateProvider, createLocalStudioCommand, formatTargetListing, getEmbedConfig, isCfnFlagPresent, listTargets, rejectExplicitCfnStackWithMultipleStacks, resetEmbedConfig, resolveCfnFallbackRegion, resolveCfnRegion, resolveCfnStackName, resolveSsmParameters, setEmbedConfig, substituteAgainstState, substituteAgainstStateAsync, substituteEnvVarsFromState, substituteEnvVarsFromStateAsync };
|
package/dist/internal.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { $i as
|
|
1
|
+
import { $i as signAgentCoreInvocation, $n as RegistrationHandle, $r as discoverWebSocketApisOrThrow, $t as CompiledCloudFrontFunction, A as annotateAlbPinnedBackingServices, Ai as A2A_PATH, An as PlannedLambdaForwardTarget, Ar as buildJwksUrlFromIssuer, At as CLOUDFRONT_DISTRIBUTION_TYPE, B as createStudioStore, Bi as McpJsonRpcRequest, Bn as resolveEcsAssumeRoleOption, Br as LambdaTokenAuthorizer, Bt as pickFunctionUrlLogicalIdFromOrigin, C as StudioRunRequest, Ci as AgentCoreWsBridgeHandle, Cn as MAX_TASKS_SUBNET_RANGE_CAP, Cr as CredentialsLoader, Ct as S3FetchResult, D as StudioServerOptions, Di as bridgeAgentCoreWs, Dn as PlannedForwardAction, Dr as JwtCustomClaim, Dt as S3OriginReaderOptions, E as RunningStudioServer, Ea as ResolvedArnLambdaLayer, Ei as InvokeAgentCoreWsOptions, En as PlannedFixedResponseAction, Er as JwksCache, Et as S3OriginReader, F as toStudioTargetGroups, Fi as MCP_CONTAINER_PORT, Fn as addImageOverrideOptions, Fr as AuthorizerCache, Ft as ResolvedLambdaEdgeAssoc, G as StudioTargetKind, Gi as InvokeAgentCoreOptions, Gn as isApplicationLoadBalancer, Gr as buildCorsConfigByApiId, Gt as ErrorResponseCandidate, H as StudioInvocationEvent, Hi as parseSseForJsonRpc, Hn as runEcsServiceEmulator, Hr as attachAuthorizers, Ht as pickLambdaEdgeFunctionLogicalId, I as StudioHistory, Ii as MCP_PATH, In as buildEcsImageResolutionContext, Ir as CachedAuthorizerResult, It as ResolvedOrigin, J as addListSpecificOptions, Ji as waitForAgentCorePing, Jn as SOFT_RELOAD_COMPLETION_LOG_SUFFIX, Jr as matchPreflight, Jt as resolveErrorResponseCandidates, Ki as invokeAgentCore, Kn as resolveAlbFrontDoor, Kr as buildCorsConfigFromCloudFrontChain, Kt as ResolvedCustomErrorResponse, L as StudioLogSearchOptions, Li as MCP_PROTOCOL_VERSION, Ln as ecsClusterOption, Lr as createAuthorizerCache, Lt as describeS3OriginDomain, M as annotatePinnedEcsTargets, Mi as A2aInvokeResult, Mn as ServiceBoot, Mr as verifyCognitoJwt, Mt as ResolvedCloudFrontFunction, N as filterStudioTargetGroups, Ni as A2aJsonRpcRequest, Nn as addCommonEcsServiceOptions, Nr as verifyJwtAuthorizer, Nt as ResolvedDistribution, O as StudioTarget, Oi as invokeAgentCoreWs, On as PlannedForwardTarget, Or as WarnedAt, Ot as classifyS3Error, P as startStudioServer, Pi as a2aInvokeOnce, Pn as addEcsAssumeRoleOptions, Pr as verifyJwtViaDiscovery, Pt as ResolvedLambdaEdge, Q as addStartAgentCoreSpecificOptions, Qi as SignedAgentCoreHeaders, Qn as CloudMapRegistry, Qr as discoverWebSocketApis, Qt as CloudFrontKvsAssociation, R as StudioStore, Ri as McpInvokeOptions, Rn as parseMaxTasks, Rr as AuthorizerInfo, Rt as extractKvsAssociations, S as StudioDispatcher, Sa as createFileWatcher, Si as resolveEnvVars, Sn as FrontDoorPlan, Sr as startApiServer, St as startCloudFrontServer, T as createStudioDispatcher, Ti as BridgeAgentCoreWsOptions, Tn as PlannedEcsForwardTarget, Tr as DiscoveryJwtAuthorizer, Tt as S3OriginCredentials, U as StudioLogEvent, Ui as AGENTCORE_SESSION_ID_HEADER, Un as FrontDoorForwardTarget, Ur as CorsConfig, Ut as pickTargetFunctionLogicalId, V as StudioEventBus, Vi as mcpInvokeOnce, Vn as resolveSharedSidecarCredentials, Vr as RouteWithAuth, Vt as pickKvsLogicalIdFromArn, W as StudioServeEvent, Wi as AgentCoreInvokeResult, Wn as ResolvedListenerAction, Wr as applyCorsResponseHeaders, Wt as resolveCloudFrontDistribution, Xi as SigV4Credentials, Xn as CloudMapIndex, Xr as WebSocketRouteEntry, Xt as CfRequest, Yi as AGENTCORE_SIGV4_SERVICE, Yn as setShadowReadyTimeoutMs, Yr as DiscoveredWebSocketApi, Yt as serveFromStaticOrigin, Zi as SignAgentCoreInvocationOptions, Zn as buildCloudMapIndex, Zr as availableWebSocketApiIdentifiers, Zt as CfResponse, _ as startStudioProxy, _a as ReloadAssetContext, _n as addStartServiceSpecificOptions, _r as resolveApiTargetSubset, _t as parseOriginOverrides, a as coerceServeRequest, aa as AgentCoreCodeArtifact, ai as discoverRoutes, an as CloudFrontModule, ar as CdkLocalError, at as AgentCoreServeAuthCheck, b as relayServeRequest, ba as FileWatcher, bi as DockerImageAssetSource, bn as EcsServiceEmulatorOptions, br as StartedApiServer, bt as StartedCloudFrontServer, c as resolveServeBaseUrl, ca as AgentCoreResolutionError, ci as pickResponseTemplate, cn as createLocalFileKvsDataSource, cr as addRunTaskSpecificOptions, ct as ServeInboundAuthPlan, d as StudioServeRequest, da as resolveAgentCoreTarget, di as VtlEvaluationError, dn as addAlbSpecificOptions, dr as ApiTargetSubset, ea as AGENTCORE_A2A_PROTOCOL, ei as filterWebSocketApisByIdentifiers, en as compileCloudFrontFunction, er as ResolvedEcsService, et as AgentCoreHttpServerConfig, f as StudioServeState, fa as ImageResolutionContext, fi as ContainerPool, fn as albStrategy, ft as LocalStartCloudFrontError, g as StudioProxyConfig, ga as tryResolveImageFnJoin, gi as resolveProfileCredentials, gr as createWatchPredicates, gt as parseKvsFileOverrides, h as RunningStudioProxy, ha as substituteImagePlaceholders, hi as buildStsClientConfig, hn as resolveAlbTarget, ht as normalizeKvsFileKeys, i as coerceRunRequest, ia as AGENTCORE_RUNTIME_TYPE, ii as RestV1IntegrationConfig, in as CloudFrontKvsHandle, it as startAgentCoreHttpServer, j as annotateEcsTaskPinnedTargets, ji as A2aInvokeOptions, jn as PlannedRedirectAction, jr as createJwksCache, jt as ResolvedBehavior, k as StudioTargetGroup, ki as A2A_CONTAINER_PORT, kn as PlannedFrontDoorListener, kr as buildCognitoJwksUrl, kt as createS3OriginReader, l as StudioServeManager, la as ResolvedAgentCoreRuntime, li as selectIntegrationResponse, ln as createUnboundCloudFrontModule, lt as buildAgentCoreServeAuthCheck, m as createStudioServeManager, ma as formatStateRemedy, mi as resolveWatchConfig, mn as parseLbPortOverrides, mr as addStartApiSpecificOptions, n as StudioServeRequestPayload, na as AGENTCORE_HTTP_PROTOCOL, ni as webSocketApiMatchesIdentifier, nn as runViewerResponse, nt as AgentCoreServeSignRequest, o as coerceStopRequest, oa as AgentCoreCustomClaim, oi as IntegrationResponseEntry, on as KvsDataSource, or as LocalInvokeBuildError, ot as AgentCoreServeAuthResult, p as StudioStopRequest, pa as derivePseudoParametersFromRegion, pi as CdkWatchConfig, pr as WatchPredicates, pt as addStartCloudFrontSpecificOptions, qi as waitForAgentCoreHttpReady, qn as DEFAULT_SHADOW_READY_TIMEOUT_MS, qr as isFunctionUrlOacFronted, qt as StaticOriginResult, r as addStudioSpecificOptions, ra as AGENTCORE_MCP_PROTOCOL, ri as DiscoveredRoute, rn as stripCloudFrontImport, rt as RunningAgentCoreHttpServer, sa as AgentCoreJwtAuthorizer, si as evaluateResponseParameters, sn as createCloudFrontModule, st as BuildAgentCoreServeAuthCheckOptions, ta as AGENTCORE_AGUI_PROTOCOL, ti as parseSelectionExpressionPath, tn as runViewerRequest, to as CloudFormationTemplate, tr as TargetEntry, tt as AgentCoreServeRoute, u as StudioServeManagerConfig, ua as pickAgentCoreCandidateStack, ui as tryParseStatus, ur as EcsTaskResolutionError, ut as selectServeInboundAuth, v as ServeRequestInput, va as ReloadVerdict, vi as addInvokeAgentCoreSpecificOptions, vr as MtlsServerConfig, vt as resolveCloudFrontTarget, w as StudioRunResult, wa as addInvokeSpecificOptions, wi as AgentCoreWsResult, wn as PlannedAction, wr as defaultCredentialsLoader, wt as S3ObjectFetcher, x as StudioDispatchConfig, xa as FileWatcherOptions, xi as EnvOverrideFile, xn as EmulatorStrategy, xr as readMtlsMaterialsFromDisk, xt as matchBehavior, y as ServeRequestResult, ya as classifySourceChange, yn as serviceStrategy, yr as ServerState, yt as LambdaUrlInvokerMap, z as StudioStoreOptions, zi as McpInvokeResult, zn as parseRestartPolicy, zr as LambdaRequestAuthorizer, zt as isCloudFrontDistribution } from "./local-studio-C1YGBilh.js";
|
|
2
2
|
import { WebSocket } from "ws";
|
|
3
3
|
import { IncomingHttpHeaders, IncomingMessage, Server, ServerResponse } from "node:http";
|
|
4
4
|
//#region src/local/intrinsic-utils.d.ts
|
|
@@ -627,5 +627,5 @@ interface ReinvokeDeps {
|
|
|
627
627
|
}
|
|
628
628
|
declare function reinvoke(input: ReinvokeInput, deps: ReinvokeDeps): Promise<StudioRunResult>;
|
|
629
629
|
//#endregion
|
|
630
|
-
export { A2A_CONTAINER_PORT, A2A_PATH, type A2aInvokeOptions, type A2aInvokeResult, type A2aJsonRpcRequest, AGENTCORE_A2A_PROTOCOL, AGENTCORE_AGUI_PROTOCOL, AGENTCORE_HTTP_PROTOCOL, AGENTCORE_MCP_PROTOCOL, AGENTCORE_RUNTIME_TYPE, AGENTCORE_SESSION_ID_HEADER, AGENTCORE_SIGV4_SERVICE, type AgentCoreCodeArtifact, type AgentCoreCustomClaim, type AgentCoreHttpServerConfig, type AgentCoreInvokeResult, type AgentCoreJwtAuthorizer, AgentCoreResolutionError, type AgentCoreServeAuthCheck, type AgentCoreServeAuthResult, type AgentCoreServeRoute, type AgentCoreServeSignRequest, type AgentCoreWsBridgeHandle, type AgentCoreWsBridgeServerConfig, type AgentCoreWsResult, type ApiServerGroup, type ApiTargetSubset, type AttachedAgentCoreWsBridge, type AuthorizerCache, type AuthorizerEventOverlay, type AuthorizerInfo, type BridgeAgentCoreWsOptions, type BuildAgentCoreCodeImageOptions, type BuildAgentCoreServeAuthCheckOptions, type BuildContainerImageOptions, CLOUDFRONT_DISTRIBUTION_TYPE, type CachedAuthorizerResult, type CdkWatchConfig, type CfRequest, type CfResponse, type CloudFrontClientCredentials, type CloudFrontKvsAssociation, type CloudFrontKvsHandle, type CloudFrontModule, type CloudMapIndex, CloudMapRegistry, type CompiledCloudFrontFunction, ConnectionRegistry, type ConnectionRegistryEntry, type CorsConfig, type CreateDeployedKvsDataSourceOptions, type CredentialsLoader, DEFAULT_SHADOW_READY_TIMEOUT_MS, type DeployedKvsRef, type DiscoveredRoute, type DiscoveredWebSocketApi, type DiscoveryJwtAuthorizer, type DownloadS3BundleOptions, type EcsServiceEmulatorOptions, EcsTaskResolutionError, type EdgeEvent, type EdgeEventType, type EdgeRequest, type EdgeRequestInput, type EdgeResponse, type EdgeResponseResult, type EmulatorStrategy, type EnvOverrideFile, type ErrorResponseCandidate, type ExtractedS3Bundle, type FileWatcher, type FileWatcherOptions, type FilterStudioCustomResourcesOptions, type FrontDoorForwardTarget, type FrontDoorPlan, HOST_GATEWAY_MIN_VERSION, type HttpRequestSnapshot, type ImageOverrideEntry, ImageOverrideError, type ImageOverrideGlobals, type ImageOverrideMap, type ImageResolutionContext, type IntegrationResponseEntry, type InvokeAgentCoreOptions, type InvokeAgentCoreWsOptions, type JwksCache, type JwtCustomClaim, type KvsDataSource, type LambdaArnResolveOutcome, type LambdaUrlInvokerMap, type LambdaUrlOriginRequest, type LambdaUrlOriginResult, LocalInvokeBuildError, LocalStartCloudFrontError, MAX_TASKS_SUBNET_RANGE_CAP, MCP_CONTAINER_PORT, MCP_PATH, MCP_PROTOCOL_VERSION, type MatchedRouteContext, type McpInvokeOptions, type McpInvokeResult, type McpJsonRpcRequest, type MtlsServerConfig, type PerServiceBuildInputs, type PinnedTargetEntry, type PlannedAction, type PlannedEcsForwardTarget, type PlannedFixedResponseAction, type PlannedForwardAction, type PlannedForwardTarget, type PlannedFrontDoorListener, type PlannedLambdaForwardTarget, type PlannedRedirectAction, type RawImageOverrideFlags, type RegistrationHandle, type ReinvokeDeps, type ReinvokeInput, type ReloadAssetContext, type ReloadVerdict, type RequestParameterContext, type ResolveDeployedOriginBucketOptions, type ResolveKvsModulesOptions, type ResolveParametersOutcome, type ResolvedAgentCoreRuntime, type ResolvedBehavior, type ResolvedCloudFrontFunction, type ResolvedCustomErrorResponse, type ResolvedDistribution, type ResolvedLambdaEdge, type ResolvedLambdaEdgeAssoc, type ResolvedListenerAction, type ResolvedOrigin, type ResolvedStage, type RestV1IntegrationConfig, type RouteMatchResult, type RouteWithAuth, type RunningAgentCoreHttpServer, type RunningAgentCoreWsBridge, type RunningStudioProxy, type RunningStudioServer, type S3BundleCredentials, type S3BundleLocation, type S3FetchResult, type S3ObjectFetcher, type S3OriginCredentials, type S3OriginReader, type S3OriginReaderOptions, SOFT_RELOAD_COMPLETION_LOG_SUFFIX, SUPPORTED_CODE_RUNTIMES, type ServeInboundAuthPlan, type ServeRequestInput, type ServeRequestResult, type ServerState, type ServiceBoot, type SigV4Credentials, type SignAgentCoreInvocationOptions, type SignedAgentCoreHeaders, type StartedApiServer, type StartedCloudFrontServer, type StaticOriginResult, type StudioDispatchConfig, type StudioDispatcher, StudioEventBus, type StudioHistory, type StudioInvocationEvent, type StudioLogEvent, type StudioLogSearchOptions, type StudioProxyConfig, type StudioRunRequest, type StudioRunResult, type StudioServeEvent, type StudioServeManager, type StudioServeManagerConfig, type StudioServeRequest, type StudioServeRequestPayload, type StudioServeState, type StudioServerOptions, type StudioStopRequest, type StudioStore, type StudioStoreOptions, type StudioTarget, type StudioTargetGroup, type StudioTargetKind, type TranslatedHttpResponse, VtlEvaluationError, type WarnedAt, type WatchPredicates, type WebSocketHandshakeSnapshot, type WebSocketLambdaEvent, type WebSocketRouteEntry, a2aInvokeOnce, addAlbSpecificOptions, addCommonEcsServiceOptions, addEcsAssumeRoleOptions, addImageOverrideOptions, addInvokeAgentCoreSpecificOptions, addInvokeSpecificOptions, addListSpecificOptions, addRunTaskSpecificOptions, addStartAgentCoreSpecificOptions, addStartApiSpecificOptions, addStartCloudFrontSpecificOptions, addStartServiceSpecificOptions, addStudioSpecificOptions, albStrategy, annotateAlbPinnedBackingServices, annotateEcsTaskPinnedTargets, annotatePinnedEcsTargets, applyAuthorizerOverlay, applyCorsResponseHeaders, applyEdgeRequestResult, applyEdgeResponseResult, architectureToPlatform, attachAgentCoreWsBridge, attachAuthorizers, attachContainerLogStreamer, attachStageContext, availableApiIdentifiers, availableWebSocketApiIdentifiers, bridgeAgentCoreWs, bufferToBody, buildAgentCoreCodeImage, buildAgentCoreServeAuthCheck, buildCloudMapIndex, buildCognitoJwksUrl, buildConnectEvent, buildContainerImage, buildCorsConfigByApiId, buildCorsConfigFromCloudFrontChain, buildDisconnectEvent, buildEcsImageResolutionContext, buildEdgeRequestEvent, buildEdgeResponseEvent, buildHttpApiV2Event, buildImageOverrideTag, buildJwksUrlFromIssuer, buildMessageEvent, buildMethodArn, buildMgmtEndpointEnvUrl, buildRestV1Event, buildStageMap, buildStsClientConfig, classifyS3Error, classifySourceChange, coerceRunRequest, coerceServeRequest, coerceStopRequest, compileCloudFrontFunction, computeCodeImageTag, computeRequestIdentityHash, createAuthorizerCache, createCloudFrontModule, createDeployedKvsDataSource, createFileWatcher, createJwksCache, createLocalFileKvsDataSource, createS3OriginReader, createStudioDispatcher, createStudioServeManager, createStudioStore, createUnboundCloudFrontModule, createWatchPredicates, defaultCredentialsLoader, derivePseudoParametersFromRegion, describePinnedImageUri, describeS3OriginDomain, discoverRoutes, discoverWebSocketApis, discoverWebSocketApisOrThrow, downloadAndExtractS3Bundle, ecsClusterOption, edgeHeadersToHttp, enforceImageOverrideOrphans, evaluateCachedLambdaPolicy, evaluateResponseParameters, extractKvsAssociations, filterRoutesByApiIdentifier, filterRoutesByApiIdentifiers, filterStudioCustomResources, filterStudioTargetGroups, filterWebSocketApisByIdentifiers, formatStateRemedy, getContainerNetworkIp, groupRoutesByServer, handleConnectionsRequest, httpHeadersToEdge, idFromArn, invokeAgentCore, invokeAgentCoreWs, invokeRequestAuthorizer, invokeTokenAuthorizer, isApplicationLoadBalancer, isCloudFrontDistribution, isCustomResourceLambdaTarget, isFunctionUrlOacFronted, isLocalCdkAssetImage, listPinnedTargets, matchBehavior, matchPreflight, matchRoute, materializeLayerFromArn, mcpInvokeOnce, mergeForService, parseConnectionsPath, parseImageOverrideFlags, parseKvsFileOverrides, parseLbPortOverrides, parseMaxTasks, parseOriginOverrides, parseRestartPolicy, parseSelectionExpressionPath, parseSseForJsonRpc, pickAgentCoreCandidateStack, pickFunctionUrlLogicalIdFromOrigin, pickKvsLogicalIdFromArn, pickLambdaEdgeFunctionLogicalId, pickRefLogicalId, pickResponseTemplate, pickTargetFunctionLogicalId, probeHostGatewaySupport, readMtlsMaterialsFromDisk, reinvoke, relayServeRequest, renderCodeDockerfile, renderStudioHtml, resolveAgentCoreTarget, resolveAlbFrontDoor, resolveAlbTarget, resolveApiTargetSubset, resolveCloudFrontDistribution, resolveCloudFrontTarget, resolveDeployedKvsArnByName, resolveDeployedOriginBucket, resolveEcsAssumeRoleOption, resolveEnvVars, resolveErrorResponseCandidates, resolveImageOverrides, resolveKvsModulesForDistribution, resolveLambdaArnIntrinsic, resolveProfileCredentials, resolveRuntimeCodeMountPath, resolveRuntimeFileExtension, resolveRuntimeImage, resolveSelectionExpression, resolveServeBaseUrl, resolveServiceIntegrationParameters, resolveSharedSidecarCredentials, resolveSingleTarget, resolveWatchConfig, runEcsServiceEmulator, runImageOverrideBuilds, runViewerRequest, runViewerResponse, selectIntegrationResponse, selectServeInboundAuth, serveFromStaticOrigin, serveLambdaUrlOrigin, serviceStrategy, setShadowReadyTimeoutMs, signAgentCoreInvocation, startAgentCoreHttpServer, startAgentCoreWsBridge, startApiServer, startCloudFrontServer, startStudioProxy, startStudioServer, stripCloudFrontImport, substituteImagePlaceholders, toCmdArgv, toStudioTargetGroups, translateLambdaResponse, tryParseStatus, tryResolveImageFnJoin, verifyCognitoJwt, verifyJwtAuthorizer, verifyJwtViaDiscovery, waitForAgentCoreHttpReady, waitForAgentCorePing, webSocketApiMatchesIdentifier };
|
|
630
|
+
export { A2A_CONTAINER_PORT, A2A_PATH, type A2aInvokeOptions, type A2aInvokeResult, type A2aJsonRpcRequest, AGENTCORE_A2A_PROTOCOL, AGENTCORE_AGUI_PROTOCOL, AGENTCORE_HTTP_PROTOCOL, AGENTCORE_MCP_PROTOCOL, AGENTCORE_RUNTIME_TYPE, AGENTCORE_SESSION_ID_HEADER, AGENTCORE_SIGV4_SERVICE, type AgentCoreCodeArtifact, type AgentCoreCustomClaim, type AgentCoreHttpServerConfig, type AgentCoreInvokeResult, type AgentCoreJwtAuthorizer, AgentCoreResolutionError, type AgentCoreServeAuthCheck, type AgentCoreServeAuthResult, type AgentCoreServeRoute, type AgentCoreServeSignRequest, type AgentCoreWsBridgeHandle, type AgentCoreWsBridgeServerConfig, type AgentCoreWsResult, type ApiServerGroup, type ApiTargetSubset, type AttachedAgentCoreWsBridge, type AuthorizerCache, type AuthorizerEventOverlay, type AuthorizerInfo, type BridgeAgentCoreWsOptions, type BuildAgentCoreCodeImageOptions, type BuildAgentCoreServeAuthCheckOptions, type BuildContainerImageOptions, CLOUDFRONT_DISTRIBUTION_TYPE, type CachedAuthorizerResult, type CdkWatchConfig, type CfRequest, type CfResponse, type CloudFrontClientCredentials, type CloudFrontKvsAssociation, type CloudFrontKvsHandle, type CloudFrontModule, type CloudMapIndex, CloudMapRegistry, type CompiledCloudFrontFunction, ConnectionRegistry, type ConnectionRegistryEntry, type CorsConfig, type CreateDeployedKvsDataSourceOptions, type CredentialsLoader, DEFAULT_SHADOW_READY_TIMEOUT_MS, type DeployedKvsRef, type DiscoveredRoute, type DiscoveredWebSocketApi, type DiscoveryJwtAuthorizer, type DownloadS3BundleOptions, type EcsServiceEmulatorOptions, EcsTaskResolutionError, type EdgeEvent, type EdgeEventType, type EdgeRequest, type EdgeRequestInput, type EdgeResponse, type EdgeResponseResult, type EmulatorStrategy, type EnvOverrideFile, type ErrorResponseCandidate, type ExtractedS3Bundle, type FileWatcher, type FileWatcherOptions, type FilterStudioCustomResourcesOptions, type FrontDoorForwardTarget, type FrontDoorPlan, HOST_GATEWAY_MIN_VERSION, type HttpRequestSnapshot, type ImageOverrideEntry, ImageOverrideError, type ImageOverrideGlobals, type ImageOverrideMap, type ImageResolutionContext, type IntegrationResponseEntry, type InvokeAgentCoreOptions, type InvokeAgentCoreWsOptions, type JwksCache, type JwtCustomClaim, type KvsDataSource, type LambdaArnResolveOutcome, type LambdaUrlInvokerMap, type LambdaUrlOriginRequest, type LambdaUrlOriginResult, LocalInvokeBuildError, LocalStartCloudFrontError, MAX_TASKS_SUBNET_RANGE_CAP, MCP_CONTAINER_PORT, MCP_PATH, MCP_PROTOCOL_VERSION, type MatchedRouteContext, type McpInvokeOptions, type McpInvokeResult, type McpJsonRpcRequest, type MtlsServerConfig, type PerServiceBuildInputs, type PinnedTargetEntry, type PlannedAction, type PlannedEcsForwardTarget, type PlannedFixedResponseAction, type PlannedForwardAction, type PlannedForwardTarget, type PlannedFrontDoorListener, type PlannedLambdaForwardTarget, type PlannedRedirectAction, type RawImageOverrideFlags, type RegistrationHandle, type ReinvokeDeps, type ReinvokeInput, type ReloadAssetContext, type ReloadVerdict, type RequestParameterContext, type ResolveDeployedOriginBucketOptions, type ResolveKvsModulesOptions, type ResolveParametersOutcome, type ResolvedAgentCoreRuntime, type ResolvedBehavior, type ResolvedCloudFrontFunction, type ResolvedCustomErrorResponse, type ResolvedDistribution, type ResolvedLambdaEdge, type ResolvedLambdaEdgeAssoc, type ResolvedListenerAction, type ResolvedOrigin, type ResolvedStage, type RestV1IntegrationConfig, type RouteMatchResult, type RouteWithAuth, type RunningAgentCoreHttpServer, type RunningAgentCoreWsBridge, type RunningStudioProxy, type RunningStudioServer, type S3BundleCredentials, type S3BundleLocation, type S3FetchResult, type S3ObjectFetcher, type S3OriginCredentials, type S3OriginReader, type S3OriginReaderOptions, SOFT_RELOAD_COMPLETION_LOG_SUFFIX, SUPPORTED_CODE_RUNTIMES, type ServeInboundAuthPlan, type ServeRequestInput, type ServeRequestResult, type ServerState, type ServiceBoot, type SigV4Credentials, type SignAgentCoreInvocationOptions, type SignedAgentCoreHeaders, type StartedApiServer, type StartedCloudFrontServer, type StaticOriginResult, type StudioDispatchConfig, type StudioDispatcher, StudioEventBus, type StudioHistory, type StudioInvocationEvent, type StudioLogEvent, type StudioLogSearchOptions, type StudioProxyConfig, type StudioRunRequest, type StudioRunResult, type StudioServeEvent, type StudioServeManager, type StudioServeManagerConfig, type StudioServeRequest, type StudioServeRequestPayload, type StudioServeState, type StudioServerOptions, type StudioStopRequest, type StudioStore, type StudioStoreOptions, type StudioTarget, type StudioTargetGroup, type StudioTargetKind, type TranslatedHttpResponse, VtlEvaluationError, type WarnedAt, type WatchPredicates, type WebSocketHandshakeSnapshot, type WebSocketLambdaEvent, type WebSocketRouteEntry, a2aInvokeOnce, addAlbSpecificOptions, addCommonEcsServiceOptions, addEcsAssumeRoleOptions, addImageOverrideOptions, addInvokeAgentCoreSpecificOptions, addInvokeSpecificOptions, addListSpecificOptions, addRunTaskSpecificOptions, addStartAgentCoreSpecificOptions, addStartApiSpecificOptions, addStartCloudFrontSpecificOptions, addStartServiceSpecificOptions, addStudioSpecificOptions, albStrategy, annotateAlbPinnedBackingServices, annotateEcsTaskPinnedTargets, annotatePinnedEcsTargets, applyAuthorizerOverlay, applyCorsResponseHeaders, applyEdgeRequestResult, applyEdgeResponseResult, architectureToPlatform, attachAgentCoreWsBridge, attachAuthorizers, attachContainerLogStreamer, attachStageContext, availableApiIdentifiers, availableWebSocketApiIdentifiers, bridgeAgentCoreWs, bufferToBody, buildAgentCoreCodeImage, buildAgentCoreServeAuthCheck, buildCloudMapIndex, buildCognitoJwksUrl, buildConnectEvent, buildContainerImage, buildCorsConfigByApiId, buildCorsConfigFromCloudFrontChain, buildDisconnectEvent, buildEcsImageResolutionContext, buildEdgeRequestEvent, buildEdgeResponseEvent, buildHttpApiV2Event, buildImageOverrideTag, buildJwksUrlFromIssuer, buildMessageEvent, buildMethodArn, buildMgmtEndpointEnvUrl, buildRestV1Event, buildStageMap, buildStsClientConfig, classifyS3Error, classifySourceChange, coerceRunRequest, coerceServeRequest, coerceStopRequest, compileCloudFrontFunction, computeCodeImageTag, computeRequestIdentityHash, createAuthorizerCache, createCloudFrontModule, createDeployedKvsDataSource, createFileWatcher, createJwksCache, createLocalFileKvsDataSource, createS3OriginReader, createStudioDispatcher, createStudioServeManager, createStudioStore, createUnboundCloudFrontModule, createWatchPredicates, defaultCredentialsLoader, derivePseudoParametersFromRegion, describePinnedImageUri, describeS3OriginDomain, discoverRoutes, discoverWebSocketApis, discoverWebSocketApisOrThrow, downloadAndExtractS3Bundle, ecsClusterOption, edgeHeadersToHttp, enforceImageOverrideOrphans, evaluateCachedLambdaPolicy, evaluateResponseParameters, extractKvsAssociations, filterRoutesByApiIdentifier, filterRoutesByApiIdentifiers, filterStudioCustomResources, filterStudioTargetGroups, filterWebSocketApisByIdentifiers, formatStateRemedy, getContainerNetworkIp, groupRoutesByServer, handleConnectionsRequest, httpHeadersToEdge, idFromArn, invokeAgentCore, invokeAgentCoreWs, invokeRequestAuthorizer, invokeTokenAuthorizer, isApplicationLoadBalancer, isCloudFrontDistribution, isCustomResourceLambdaTarget, isFunctionUrlOacFronted, isLocalCdkAssetImage, listPinnedTargets, matchBehavior, matchPreflight, matchRoute, materializeLayerFromArn, mcpInvokeOnce, mergeForService, normalizeKvsFileKeys, parseConnectionsPath, parseImageOverrideFlags, parseKvsFileOverrides, parseLbPortOverrides, parseMaxTasks, parseOriginOverrides, parseRestartPolicy, parseSelectionExpressionPath, parseSseForJsonRpc, pickAgentCoreCandidateStack, pickFunctionUrlLogicalIdFromOrigin, pickKvsLogicalIdFromArn, pickLambdaEdgeFunctionLogicalId, pickRefLogicalId, pickResponseTemplate, pickTargetFunctionLogicalId, probeHostGatewaySupport, readMtlsMaterialsFromDisk, reinvoke, relayServeRequest, renderCodeDockerfile, renderStudioHtml, resolveAgentCoreTarget, resolveAlbFrontDoor, resolveAlbTarget, resolveApiTargetSubset, resolveCloudFrontDistribution, resolveCloudFrontTarget, resolveDeployedKvsArnByName, resolveDeployedOriginBucket, resolveEcsAssumeRoleOption, resolveEnvVars, resolveErrorResponseCandidates, resolveImageOverrides, resolveKvsModulesForDistribution, resolveLambdaArnIntrinsic, resolveProfileCredentials, resolveRuntimeCodeMountPath, resolveRuntimeFileExtension, resolveRuntimeImage, resolveSelectionExpression, resolveServeBaseUrl, resolveServiceIntegrationParameters, resolveSharedSidecarCredentials, resolveSingleTarget, resolveWatchConfig, runEcsServiceEmulator, runImageOverrideBuilds, runViewerRequest, runViewerResponse, selectIntegrationResponse, selectServeInboundAuth, serveFromStaticOrigin, serveLambdaUrlOrigin, serviceStrategy, setShadowReadyTimeoutMs, signAgentCoreInvocation, startAgentCoreHttpServer, startAgentCoreWsBridge, startApiServer, startCloudFrontServer, startStudioProxy, startStudioServer, stripCloudFrontImport, substituteImagePlaceholders, toCmdArgv, toStudioTargetGroups, translateLambdaResponse, tryParseStatus, tryResolveImageFnJoin, verifyCognitoJwt, verifyJwtAuthorizer, verifyJwtViaDiscovery, waitForAgentCoreHttpReady, waitForAgentCorePing, webSocketApiMatchesIdentifier };
|
|
631
631
|
//# sourceMappingURL=internal.d.ts.map
|
package/dist/internal.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"internal.d.ts","names":[],"sources":["../src/local/intrinsic-utils.ts","../src/local/intrinsic-lambda-arn.ts","../src/local/parameter-mapping.ts","../src/local/api-gateway-response.ts","../src/local/docker-inspect.ts","../src/local/route-matcher.ts","../src/local/api-gateway-event.ts","../src/local/lambda-authorizer.ts","../src/local/stage-resolver.ts","../src/local/runtime-image.ts","../src/local/websocket-event.ts","../src/local/websocket-mgmt-api.ts","../src/local/websocket-body.ts","../src/local/docker-version.ts","../src/local/api-server-grouping.ts","../src/local/layer-arn-materializer.ts","../src/local/agentcore-code-build.ts","../src/local/agentcore-ws-bridge.ts","../src/local/agentcore-s3-bundle.ts","../src/local/docker-image-builder.ts","../src/local/image-pin-detector.ts","../src/local/target-picker.ts","../src/local/image-override-engine.ts","../src/local/container-log-streamer.ts","../src/local/cloudfront-edge-event.ts","../src/local/cloudfront-kvs-client.ts","../src/local/cloudfront-kvs-binding.ts","../src/local/cloudfront-distribution-config.ts","../src/local/cloudfront-lambda-origin.ts","../src/local/studio-custom-resource-filter.ts","../src/local/studio-ui.ts","../src/local/studio-reinvoke.ts"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"internal.d.ts","names":[],"sources":["../src/local/intrinsic-utils.ts","../src/local/intrinsic-lambda-arn.ts","../src/local/parameter-mapping.ts","../src/local/api-gateway-response.ts","../src/local/docker-inspect.ts","../src/local/route-matcher.ts","../src/local/api-gateway-event.ts","../src/local/lambda-authorizer.ts","../src/local/stage-resolver.ts","../src/local/runtime-image.ts","../src/local/websocket-event.ts","../src/local/websocket-mgmt-api.ts","../src/local/websocket-body.ts","../src/local/docker-version.ts","../src/local/api-server-grouping.ts","../src/local/layer-arn-materializer.ts","../src/local/agentcore-code-build.ts","../src/local/agentcore-ws-bridge.ts","../src/local/agentcore-s3-bundle.ts","../src/local/docker-image-builder.ts","../src/local/image-pin-detector.ts","../src/local/target-picker.ts","../src/local/image-override-engine.ts","../src/local/container-log-streamer.ts","../src/local/cloudfront-edge-event.ts","../src/local/cloudfront-kvs-client.ts","../src/local/cloudfront-kvs-binding.ts","../src/local/cloudfront-distribution-config.ts","../src/local/cloudfront-lambda-origin.ts","../src/local/studio-custom-resource-filter.ts","../src/local/studio-ui.ts","../src/local/studio-reinvoke.ts"],"mappings":";;;;iBASgB,gBAAA,CAAiB,KAAA;;;KCmCrB,uBAAA;EACN,IAAA;EAAkB,SAAA;AAAA;EAClB,IAAA;EAAqB,MAAA;AAAA;AAAA,iBAuBX,yBAAA,CAA0B,KAAA,YAAiB,uBAAA;;;UCpB1C,uBAAA;EAEf,OAAA,EAAS,QAAA,CAAS,MAAA;EAElB,WAAA,EAAa,QAAA,CAAS,MAAA;EAEtB,cAAA,EAAgB,QAAA,CAAS,MAAA;EAEzB,WAAA;EAEA,IAAA;EAEA,OAAA,EAAS,QAAA,CAAS,MAAA;EAElB,cAAA,EAAgB,QAAA,CAAS,MAAA;EAoBzB,UAAA,GAAa,QAAA,CAAS,MAAA;AAAA;AAAA,KASZ,wBAAA;EACN,IAAA;EAAY,QAAA,EAAU,MAAA;AAAA;EACtB,IAAA;EAAe,MAAA;AAAA;AAAA,iBAQL,mCAAA,CACd,UAAA,EAAY,QAAA,CAAS,MAAA,oBACrB,GAAA,EAAK,uBAAA,GACJ,wBAAA;AAAA,iBAkCa,0BAAA,CAA2B,KAAA,UAAe,GAAA,EAAK,uBAAA;;;UCnH9C,sBAAA;EACf,UAAA;EAMA,OAAA,EAAS,MAAA;EAET,OAAA;EAEA,IAAA,EAAM,MAAA;AAAA;AAAA,iBAgBQ,uBAAA,CACd,OAAA,WACA,OAAA,gBACC,sBAAA;;;iBChCmB,qBAAA,CACpB,WAAA,UACA,WAAA,WACC,OAAA;;;UCHc,gBAAA;EACf,KAAA,EAAO,eAAA;EACP,cAAA,EAAgB,MAAA;AAAA;AAAA,iBAQF,UAAA,CACd,MAAA,UACA,WAAA,UACA,MAAA,WAAiB,eAAA,KAChB,gBAAA;;;UC5Bc,mBAAA;EAEf,MAAA;EAKA,MAAA;EAMA,OAAA,EAAS,MAAA;EAET,IAAA,EAAM,MAAA;EAEN,QAAA;EAwBA,UAAA,GAAa,MAAA;AAAA;AAAA,UAQE,mBAAA;EACf,KAAA,EAAO,eAAA;EACP,cAAA,EAAgB,MAAA;EAEhB,WAAA;AAAA;AAAA,iBA+Bc,mBAAA,CACd,GAAA,EAAK,mBAAA,EACL,GAAA,EAAK,mBAAA,EACL,IAAA;EAAQ,GAAA,SAAY,IAAA;AAAA,IACnB,MAAA;AAAA,iBA4Ea,gBAAA,CACd,GAAA,EAAK,mBAAA,EACL,GAAA,EAAK,mBAAA,EACL,IAAA;EAAQ,GAAA,SAAY,IAAA;AAAA,IACnB,MAAA;AAAA,KAiFS,sBAAA;EACN,IAAA;EAAwB,WAAA;EAAsB,OAAA,GAAU,MAAA;AAAA;EACxD,IAAA;EAAwB,WAAA;EAAsB,OAAA,GAAU,MAAA;AAAA;EACxD,IAAA;EAAyB,MAAA,EAAQ,MAAA;AAAA;EACjC,IAAA;EAAqB,MAAA,EAAQ,MAAA;EAAyB,MAAA;AAAA;AAAA,iBAY5C,sBAAA,CACd,KAAA,EAAO,MAAA,mBACP,OAAA,EAAS,sBAAA,GACR,MAAA;;;UCxPc,4BAAA;EAEf,MAAA;EAEA,OAAA,EAAS,MAAA;EAET,qBAAA,EAAuB,MAAA;EAEvB,cAAA,EAAgB,MAAA;EAEhB,QAAA;EAEA,WAAA;EAEA,KAAA;AAAA;AAAA,UAGe,2BAAA;EAEf,IAAA,EAAM,aAAA;EAEN,YAAA;EAMA,SAAA;EAEA,aAAA;EAEA,SAAA;AAAA;AAAA,iBAWc,cAAA,CAAe,IAAA;EAC7B,KAAA;EACA,SAAA;EACA,MAAA;EACA,KAAA;EACA,MAAA;EACA,IAAA;AAAA;AAAA,iBAoBoB,qBAAA,CACpB,UAAA,EAAY,qBAAA,EACZ,OAAA,EAAS,4BAAA,EACT,GAAA,EAAK,2BAAA,GACJ,OAAA,CAAQ,sBAAA;EAA2B,YAAA;AAAA;AAAA,iBAyBhB,uBAAA,CACpB,UAAA,EAAY,uBAAA,EACZ,OAAA,EAAS,4BAAA,EACT,GAAA,EAAK,2BAAA,GACJ,OAAA,CAAQ,sBAAA;EAA2B,YAAA;AAAA;AAAA,iBAyEtB,0BAAA,CACd,UAAA,EAAY,uBAAA,EACZ,OAAA,EAAS,4BAAA;EACN,YAAA;EAAsB,OAAA;AAAA;AAAA,iBAmRX,0BAAA,CACd,MAAA,EAAQ,sBAAA,EACR,SAAA,WACC,sBAAA;;;UC7bc,aAAA;EAEf,cAAA;EAEA,SAAA;EAEA,UAAA;EAEA,SAAA,EAAW,MAAA;AAAA;AAAA,iBAgCG,aAAA,CACd,QAAA,EAAU,sBAAA,EACV,aAAA,YACC,GAAA,SAAY,aAAA;AAAA,iBA4HC,kBAAA,CACd,MAAA,EAAQ,eAAA,IACR,QAAA,EAAU,GAAA,SAAY,aAAA;;;iBCjHR,mBAAA,CAAoB,OAAA;AAAA,iBAgBpB,2BAAA,CAA4B,OAAA;AAAA,iBA6E5B,2BAAA,CAA4B,OAAA;;;UC3I3B,0BAAA;EAEf,OAAA,EAAS,MAAA;EAET,cAAA;EAEA,qBAAA,GAAwB,MAAA;EAExB,+BAAA,GAAkC,MAAA;EAElC,QAAA;EAEA,SAAA;AAAA;AAAA,UAQe,2BAAA;EACf,QAAA;EACA,SAAA;EACA,YAAA;EACA,iBAAA;EACA,WAAA;EACA,gBAAA;EACA,gBAAA;EACA,KAAA;EACA,WAAA;EACA,SAAA;EACA,UAAA;EACA,KAAA;EACA,UAAA;EACA,QAAA;IACE,SAAA;IACA,QAAA;IACA,SAAA;EAAA;AAAA;AAAA,UAKa,oBAAA;EAEf,OAAA,GAAU,MAAA;EAEV,iBAAA,GAAoB,MAAA;EAEpB,qBAAA,GAAwB,MAAA;EAExB,+BAAA,GAAkC,MAAA;EAElC,cAAA,EAAgB,2BAAA,GAA8B,MAAA;EAE9C,eAAA;EAEA,IAAA;AAAA;AAAA,iBAqDc,iBAAA,CAAkB,IAAA;EAChC,YAAA;EACA,WAAA;EACA,KAAA;EACA,QAAA,EAAU,0BAAA;AAAA,IACR,oBAAA;AAAA,iBA6BY,iBAAA,CAAkB,IAAA;EAChC,YAAA;EACA,WAAA;EACA,KAAA;EACA,QAAA,EAAU,0BAAA;EACV,QAAA;EACA,IAAA;EASA,eAAA;AAAA,IACE,oBAAA;AAAA,iBA4BY,oBAAA,CAAqB,IAAA;EACnC,YAAA;EACA,WAAA;EACA,KAAA;EACA,QAAA,EAAU,0BAAA;EACV,oBAAA;EACA,gBAAA;AAAA,IACE,oBAAA;;;UChNa,uBAAA;EAEf,YAAA;EAEA,MAAA,EAAQ,SAAA;EAER,WAAA;EAEA,YAAA;EAEA,KAAA;AAAA;AAAA,cAOW,kBAAA;EAAA,iBACM,OAAA;EAEjB,QAAA,CAAS,KAAA,EAAO,uBAAA;EAIhB,UAAA,CAAW,YAAA,WAAuB,uBAAA;EAMlC,GAAA,CAAI,YAAA,WAAuB,uBAAA;EAI3B,IAAA,CAAA;EASA,IAAA,CAAA,GAAQ,uBAAA;EAIR,KAAA,CAAA;AAAA;AAAA,iBA4Bc,oBAAA,CAAqB,GAAA;EACnC,YAAA;AAAA;AAAA,iBA0Bc,uBAAA,CAAwB,IAAA,UAAc,IAAA,UAAc,KAAA;AAAA,iBAkE9C,wBAAA,CAAyB,IAAA;EAC7C,GAAA,EAAK,eAAA;EACL,GAAA,EAAK,cAAA;EACL,QAAA,EAAU,kBAAA;AAAA,IACR,OAAA;;;iBC5LY,YAAA,CACd,GAAA,EAAK,MAAA,GAAS,WAAA,GAAc,MAAA,IAC5B,QAAA;EACG,IAAA;EAAc,eAAA;AAAA;;;cCJN,wBAAA,EAA0B,mBAAA;AAAA,UAEtB,mBAAA;EACf,KAAA;EACA,KAAA;EACA,KAAA;AAAA;AAAA,UAmCe,sBAAA;EAEf,UAAA;EAEA,MAAA,EAAQ,mBAAA;EAMR,SAAA;AAAA;AAAA,iBAqBoB,uBAAA,CAAA,GAA2B,OAAA,CAAQ,sBAAA;;;UCzDxC,cAAA;EAAA,SAmBN,SAAA;EAAA,SAEA,WAAA;EAAA,SAEA,IAAA;EAAA,SAMA,UAAA;EAAA,SAEA,MAAA,WAAiB,aAAA;AAAA;AAAA,iBAgBZ,mBAAA,CAAoB,MAAA,WAAiB,aAAA,KAAkB,cAAA;AAAA,iBAqGvD,2BAAA,CACd,MAAA,WAAiB,aAAA,IACjB,UAAA,WACC,aAAA;AAAA,iBAqBa,4BAAA,CACd,MAAA,WAAiB,aAAA,IACjB,WAAA,sBACC,aAAA;AAAA,iBAkCa,uBAAA,CAAwB,MAAA,WAAiB,aAAA;;;UCpMxC,uBAAA;EAQf,OAAA;EAMA,mBAAA,IAAuB,MAAA,UAAgB,WAAA,GAAc,cAAA,KAAmB,gBAAA;EAKxE,gBAAA,IAAoB,MAAA,aAAmB,aAAA;EAMvC,QAAA,IAAY,YAAA,aAAyB,OAAA,CAAQ,UAAA;AAAA;AAAA,UAG9B,cAAA;EACf,WAAA;EACA,eAAA;EACA,YAAA;AAAA;AAAA,UAOe,gBAAA;EAEf,IAAA,CAAK,OAAA,QAAe,OAAA;IAAU,OAAA;MAAY,QAAA;IAAA;EAAA;EAC1C,OAAA;AAAA;AAAA,UAGe,aAAA;EAEf,IAAA,CAAK,OAAA,QAAe,OAAA;IAClB,WAAA;MACE,WAAA;MACA,eAAA;MACA,YAAA;IAAA;EAAA;EAGJ,OAAA;AAAA;AAAA,iBAWoB,uBAAA,CACpB,KAAA,EAAO,sBAAA,EACP,OAAA,GAAS,uBAAA,GACR,OAAA;;;cCpEU,uBAAA;AAAA,UAEI,8BAAA;EAEf,SAAA;EAEA,OAAA;EAEA,UAAA;EAEA,YAAA;EAEA,OAAA;AAAA;AAAA,iBAQoB,uBAAA,CACpB,OAAA,EAAS,8BAAA,GACR,OAAA;AAAA,iBAkEa,oBAAA,CAAqB,IAAA,UAAc,UAAA,YAAsB,MAAA;AAAA,iBAqEzD,SAAA,CAAU,UAAA,YAAsB,MAAA;AAAA,iBAqChC,mBAAA,CACd,SAAA,UACA,OAAA,UACA,UAAA,YACA,UAAA;;;UCvNe,6BAAA;EAEf,aAAA;EAQA,aAAA;EAEA,IAAA;EAEA,IAAA;EAMA,SAAA;EAEA,aAAA;EAEA,IAAA;EAEA,aAAA,UAAuB,SAAA;AAAA;AAAA,UAGR,wBAAA;EAEf,GAAA;EAEA,IAAA;EAEA,KAAA,IAAS,OAAA;AAAA;AAAA,UAiBM,yBAAA;EAEf,IAAA;EAEA,KAAA,IAAS,OAAA;AAAA;AAAA,iBAeK,uBAAA,CACd,UAAA,EAAY,MAAA,EACZ,MAAA,EAAQ,IAAA,CAAK,6BAAA,qBACZ,yBAAA;AAAA,iBAwEa,sBAAA,CACd,MAAA,EAAQ,6BAAA,GACP,OAAA,CAAQ,wBAAA;;;UC1JM,gBAAA;EACf,MAAA;EACA,GAAA;EACA,SAAA;AAAA;AAAA,UAIe,mBAAA;EACf,WAAA;EACA,eAAA;EACA,YAAA;AAAA;AAAA,UAGe,uBAAA;EAEf,MAAA;EAEA,OAAA;EAEA,WAAA,GAAc,mBAAA;EAEd,WAAA,IAAe,QAAA,EAAU,gBAAA,KAAqB,OAAA,CAAQ,UAAA;AAAA;AAAA,UAGvC,iBAAA;EAEf,GAAA;EAEA,OAAA,QAAe,OAAA;AAAA;AAAA,iBAQK,0BAAA,CACpB,QAAA,EAAU,gBAAA,EACV,OAAA,GAAS,uBAAA,GACR,OAAA,CAAQ,iBAAA;;;UCtCM,0BAAA;EAEf,YAAA;EAeA,OAAA;AAAA;AAAA,iBAYoB,mBAAA,CACpB,KAAA;EAAS,MAAA,EAAQ,sBAAA;AAAA,GACjB,SAAA,UACA,OAAA,EAAS,0BAAA,GACR,OAAA;AAAA,iBAuDa,sBAAA,CAAuB,YAAA;;;iBChDvB,oBAAA,CAAqB,OAAA,EAAS,kBAAA;AAAA,iBAgB9B,sBAAA,CAAuB,OAAA,EAAS,kBAAA;AAAA,UAY/B,iBAAA;EAEf,MAAA;EAOA,KAAA;AAAA;AAAA,iBA0Bc,iBAAA,CACd,gBAAA,EAAkB,QAAA;EAAW,MAAA;EAAgB,OAAA,EAAS,kBAAA;AAAA,KACrD,iBAAA;;;UCqDO,aAAA;EAER,OAAA,EAAS,WAAA;EAET,OAAA;EAEA,IAAA;EAEA,SAAA,QAAiB,aAAA;AAAA;AAAA,iBAyBG,mBAAA,CACpB,QAAA,sBACA,MAAA,EAAQ,aAAA,GACP,OAAA;;;UCpIc,kBAAA;EAEf,UAAA;EAEA,UAAA;EAQA,SAAA,EAAW,GAAA;EAKX,YAAA,EAAc,GAAA;EAKd,WAAA;AAAA;AAAA,KAIU,gBAAA,GAAmB,GAAA,SAAY,kBAAA;AAAA,cAO9B,kBAAA,SAA2B,aAAA;cAC1B,OAAA,UAAiB,KAAA,GAAQ,KAAA;AAAA;AAAA,UActB,oBAAA;EACf,SAAA,EAAW,GAAA;EACX,YAAA,EAAc,GAAA;EACd,WAAA;AAAA;AAAA,UAiBe,qBAAA;EACf,SAAA,EAAW,GAAA;EACX,YAAA,EAAc,GAAA;EACd,WAAA;AAAA;AAAA,UAiBe,qBAAA;EAEf,QAAA,EAAU,GAAA;EAOV,WAAA;EACA,OAAA,EAAS,oBAAA;EAOT,UAAA,EAAY,GAAA,SAAY,qBAAA;AAAA;AAAA,iBAyDV,uBAAA,CAAwB,KAAA;EACtC,aAAA;EACA,aAAA;EACA,gBAAA;EAMA,WAAA;AAAA,IACE,qBAAA;AAAA,iBAqOkB,qBAAA,CAAsB,IAAA;EAC1C,QAAA,EAAU,qBAAA;EAMV,aAAA,EAAe,aAAA;EAOf,YAAA,GAAe,WAAA;EAOf,qBAAA;EAKA,aAAA;EAMA,GAAA;AAAA,IACE,OAAA,CAAQ,gBAAA;AAAA,iBA2SI,eAAA,CACd,aAAA,UACA,OAAA,EAAS,oBAAA,EACT,UAAA,EAAY,WAAA,SAAoB,qBAAA;EAC7B,SAAA,EAAW,GAAA;EAAqB,YAAA,EAAc,GAAA;EAAqB,WAAA;AAAA;AAAA,iBAgFxD,qBAAA,CAAsB,aAAA,UAAuB,KAAA,EAAO,kBAAA;AAAA,iBAqE9C,sBAAA,CACpB,SAAA,EAAW,gBAAA,GACV,OAAA,CAAQ,GAAA;AAAA,iBA2FK,2BAAA,CACd,QAAA,EAAU,qBAAA,EACV,iBAAA,EAAmB,gBAAA;;;iBCn/BL,0BAAA,CAA2B,MAAA,UAAgB,WAAA;;;KC3B/C,WAAA,GAAc,MAAA,SAAe,KAAA;EAAQ,GAAA;EAAa,KAAA;AAAA;AAAA,KAGlD,aAAA;AAAA,UAOK,WAAA;EACf,QAAA;EACA,MAAA;EACA,GAAA;EACA,WAAA;EACA,OAAA,EAAS,WAAA;EACT,IAAA;IACE,MAAA;IACA,IAAA;IACA,QAAA;IACA,cAAA;EAAA;AAAA;AAAA,UAKa,YAAA;EACf,MAAA;EACA,iBAAA;EACA,OAAA,EAAS,WAAA;EACT,IAAA;EACA,YAAA;AAAA;AAAA,UAIe,UAAA;EACf,sBAAA;EACA,cAAA;EACA,SAAA,EAAW,aAAA;EACX,SAAA;AAAA;AAAA,UAIe,SAAA;EACf,OAAA,EAAS,KAAA;IACP,EAAA;MAAM,MAAA,EAAQ,UAAA;MAAY,OAAA,EAAS,WAAA;MAAa,QAAA,GAAW,YAAA;IAAA;EAAA;AAAA;AAAA,UAK9C,gBAAA;EACf,QAAA;EACA,MAAA;EACA,GAAA;EACA,WAAA;EAEA,OAAA,EAAS,MAAA;EAET,IAAA,GAAO,MAAA;AAAA;AAAA,iBAIO,iBAAA,CAAkB,OAAA,EAAS,MAAA,qBAA2B,WAAA;AAAA,iBAetD,iBAAA,CAAkB,OAAA,EAAS,WAAA;EACzC,OAAA,EAAS,MAAA;EACT,UAAA;AAAA;AAAA,iBAmCc,qBAAA,CAAsB,IAAA;EACpC,SAAA;EACA,MAAA,EAAQ,IAAA,CAAK,UAAA;EACb,OAAA,EAAS,gBAAA;EACT,WAAA;AAAA,IACE,SAAA;AAAA,iBAcY,sBAAA,CAAuB,IAAA;EACrC,SAAA;EACA,MAAA,EAAQ,IAAA,CAAK,UAAA;EACb,OAAA,EAAS,gBAAA;EACT,QAAA;IAAY,UAAA;IAAoB,OAAA,EAAS,MAAA;EAAA;AAAA,IACvC,SAAA;AAAA,UAoEa,kBAAA;EACf,UAAA;EACA,OAAA,EAAS,MAAA;EACT,UAAA;EACA,IAAA,EAAM,MAAA;AAAA;AAAA,iBAgCQ,sBAAA,CACd,MAAA,WACA,IAAA,EAAM,gBAAA;EAEF,IAAA;EAAkB,OAAA,EAAS,gBAAA;AAAA;EAC3B,IAAA;EAAkB,QAAA,EAAU,kBAAA;AAAA;AAAA,iBAalB,uBAAA,CACd,MAAA,WACA,IAAA;EAAQ,UAAA;EAAoB,OAAA,EAAS,MAAA;AAAA,GACrC,UAAA,EAAY,MAAA,GACX,kBAAA;;;UC5Qc,oBAAA;EACf,WAAA;EACA,eAAA;EACA,YAAA;AAAA;AAAA,UAqBe,kCAAA;EAEf,MAAA;EAEA,KAAA;EAEA,MAAA;EAEA,WAAA,GAAc,oBAAA;AAAA;AAAA,iBASA,2BAAA,CACd,OAAA,EAAS,kCAAA,GACR,aAAA;AAAA,iBAmCmB,2BAAA,CACpB,IAAA,UACA,OAAA;EAAW,MAAA;EAAiB,WAAA,GAAc,oBAAA;AAAA,IACzC,OAAA;EAAU,GAAA;EAAa,EAAA;AAAA;;;UC9ET,cAAA;EAEf,GAAA;EAEA,EAAA;AAAA;AAAA,UAGe,wBAAA;EAMf,QAAA,GAAW,GAAA;EAMX,kBAAA,IAAsB,YAAA,aAAyB,OAAA,CAAQ,cAAA;EAEvD,MAAA;EAEA,WAAA,GAAc,oBAAA;AAAA;AAAA,iBAUM,gCAAA,CACpB,YAAA,EAAc,oBAAA,EACd,OAAA,EAAS,wBAAA,GACR,OAAA;EAAU,QAAA;AAAA;AAAA,iBA+EG,SAAA,CAAU,GAAA;;;UCvHT,2BAAA;EACf,WAAA;EACA,eAAA;EACA,YAAA;AAAA;AAAA,UAGe,kCAAA;EAEf,cAAA;EAEA,QAAA;EAEA,WAAA,GAAc,2BAAA;EAKd,UAAA,IAAc,cAAA,aAA2B,OAAA,CAAQ,KAAA;IAAQ,EAAA;IAAa,UAAA;EAAA;AAAA;AAAA,iBASlD,2BAAA,CACpB,OAAA,EAAS,kCAAA,GACR,OAAA;;;UCxBc,sBAAA;EACf,MAAA;EAEA,GAAA;EAEA,WAAA;EACA,OAAA,EAAS,mBAAA;EACT,IAAA,EAAM,MAAA;EACN,QAAA;AAAA;AAAA,UAIe,qBAAA;EACf,UAAA;EAEA,OAAA,EAAS,MAAA;EAET,OAAA;EACA,IAAA,EAAM,MAAA;AAAA;AAAA,iBAQc,oBAAA,CAAqB,IAAA;EACzC,MAAA,GAAS,KAAA,EAAO,MAAA,sBAA4B,OAAA;EAC5C,oBAAA;EACA,iBAAA;EACA,OAAA,EAAS,sBAAA;AAAA,IACP,OAAA,CAAQ,qBAAA;;;iBCOI,4BAAA,CAA6B,KAAA,EAAO,YAAA;AAAA,UAMnC,kCAAA;EAMf,OAAA;AAAA;AAAA,iBAkBc,2BAAA,CACd,MAAA,EAAQ,iBAAA,IACR,IAAA,GAAM,kCAAA,GACL,iBAAA;;;iBC87Ea,gBAAA,CAAiB,QAAA,UAAkB,OAAA;;;UCzhFlC,aAAA;EAEf,YAAA;EAEA,OAAA;AAAA;AAAA,UAIe,YAAA;EAEf,KAAA,EAAO,WAAA;EAEP,UAAA,EAAY,gBAAA;AAAA;AAAA,iBA4BQ,QAAA,CAAS,KAAA,EAAO,aAAA,EAAe,IAAA,EAAM,YAAA,GAAe,OAAA,CAAQ,eAAA"}
|
package/dist/internal.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { $ as
|
|
1
|
+
import { $ as applyEdgeResponseResult, $n as buildJwksUrlFromIssuer, $t as buildCloudMapIndex, A as startAgentCoreHttpServer, An as classifySourceChange, Ar as handleConnectionsRequest, At as addRunTaskSpecificOptions, B as idFromArn, Bn as buildStageMap, Br as EcsTaskResolutionError, Bt as resolveEcsAssumeRoleOption, C as addListSpecificOptions, Ci as formatStateRemedy, Cn as waitForAgentCorePing, Cr as tryParseStatus, Ct as parseLbPortOverrides, Di as buildStsClientConfig, Dn as computeCodeImageTag, Dr as bufferToBody, Dt as addStartServiceSpecificOptions, E as addStartAgentCoreSpecificOptions, Ei as LocalInvokeBuildError, En as buildAgentCoreCodeImage, Er as probeHostGatewaySupport, Et as resolveAlbFrontDoor, Fn as createWatchPredicates, Fr as architectureToPlatform, Ft as addImageOverrideOptions, G as classifyS3Error, Gn as filterRoutesByApiIdentifiers, Gt as enforceImageOverrideOrphans, H as createDeployedKvsDataSource, Hn as resolveEnvVars, Ht as runEcsServiceEmulator, I as normalizeKvsFileKeys, In as resolveApiTargetSubset, Ir as buildContainerImage, It as buildEcsImageResolutionContext, J as startCloudFrontServer, Jn as startApiServer, Jt as resolveImageOverrides, K as createS3OriginReader, Kn as groupRoutesByServer, Kt as mergeForService, L as parseKvsFileOverrides, Ln as createAuthorizerCache, Lr as resolveRuntimeCodeMountPath, Lt as ecsClusterOption, M as startAgentCoreWsBridge, Mr as buildConnectEvent, Mt as MAX_TASKS_SUBNET_RANGE_CAP, N as LocalStartCloudFrontError, Nn as addStartApiSpecificOptions, Nr as buildDisconnectEvent, Nt as addCommonEcsServiceOptions, O as buildAgentCoreServeAuthCheck, Oi as resolveProfileCredentials, On as renderCodeDockerfile, Or as ConnectionRegistry, P as addStartCloudFrontSpecificOptions, Pr as buildMessageEvent, Pt as addEcsAssumeRoleOptions, Q as applyEdgeRequestResult, Qn as buildCognitoJwksUrl, Qt as listPinnedTargets, R as parseOriginOverrides, Rn as createFileWatcher, Rr as resolveRuntimeFileExtension, Rt as parseMaxTasks, S as StudioEventBus, Si as derivePseudoParametersFromRegion, Sn as waitForAgentCoreHttpReady, Sr as selectIntegrationResponse, Ti as tryResolveImageFnJoin, Tn as SUPPORTED_CODE_RUNTIMES, Tr as HOST_GATEWAY_MIN_VERSION, Tt as isApplicationLoadBalancer, U as resolveDeployedKvsArnByName, Un as availableApiIdentifiers, Ut as ImageOverrideError, V as resolveKvsModulesForDistribution, Vn as materializeLayerFromArn, Vt as resolveSharedSidecarCredentials, W as resolveDeployedOriginBucket, Wn as filterRoutesByApiIdentifier, Wt as buildImageOverrideTag, X as serveFromStaticOrigin, Xn as resolveServiceIntegrationParameters, Xt as describePinnedImageUri, Y as resolveErrorResponseCandidates, Yn as resolveSelectionExpression, Yt as runImageOverrideBuilds, Z as serveLambdaUrlOrigin, Zn as defaultCredentialsLoader, Zt as isLocalCdkAssetImage, _ as filterStudioTargetGroups, _i as AGENTCORE_MCP_PROTOCOL, _n as parseSseForJsonRpc, _r as applyAuthorizerOverlay, _t as createCloudFrontModule, ai as availableWebSocketApiIdentifiers, an as attachContainerLogStreamer, ar as computeRequestIdentityHash, at as describeS3OriginDomain, b as renderStudioHtml, bi as pickAgentCoreCandidateStack, bn as AGENTCORE_SESSION_ID_HEADER, br as evaluateResponseParameters, bt as addAlbSpecificOptions, c as startStudioProxy, ci as filterWebSocketApisByIdentifiers, cn as bridgeAgentCoreWs, cr as invokeTokenAuthorizer, ct as pickFunctionUrlLogicalIdFromOrigin, d as createStudioDispatcher, di as discoverRoutes, dn as A2A_PATH, dr as buildCorsConfigByApiId, dt as pickTargetFunctionLogicalId, en as CloudMapRegistry, er as createJwksCache, et as buildEdgeRequestEvent, f as filterStudioCustomResources, fi as pickRefLogicalId, fn as a2aInvokeOnce, fr as buildCorsConfigFromCloudFrontChain, ft as resolveCloudFrontDistribution, g as annotatePinnedEcsTargets, gi as AGENTCORE_HTTP_PROTOCOL, gn as mcpInvokeOnce, gr as translateLambdaResponse, gt as stripCloudFrontImport, h as annotateEcsTaskPinnedTargets, hi as AGENTCORE_AGUI_PROTOCOL, hn as MCP_PROTOCOL_VERSION, hr as matchRoute, ht as runViewerResponse, i as coerceStopRequest, in as getContainerNetworkIp, ir as buildMethodArn, it as CLOUDFRONT_DISTRIBUTION_TYPE, j as attachAgentCoreWsBridge, jn as addInvokeSpecificOptions, jr as parseConnectionsPath, k as selectServeInboundAuth, kn as toCmdArgv, kr as buildMgmtEndpointEnvUrl, kt as serviceStrategy, l as relayServeRequest, li as parseSelectionExpressionPath, ln as invokeAgentCoreWs, lr as attachAuthorizers, lt as pickKvsLogicalIdFromArn, m as annotateAlbPinnedBackingServices, mi as AGENTCORE_A2A_PROTOCOL, mn as MCP_PATH, mr as matchPreflight, mt as runViewerRequest, n as coerceRunRequest, ni as resolveSingleTarget, nn as SOFT_RELOAD_COMPLETION_LOG_SUFFIX, nr as verifyJwtAuthorizer, nt as edgeHeadersToHttp, o as resolveServeBaseUrl, oi as discoverWebSocketApis, on as addInvokeAgentCoreSpecificOptions, or as evaluateCachedLambdaPolicy, ot as extractKvsAssociations, p as isCustomResourceLambdaTarget, pi as resolveLambdaArnIntrinsic, pn as MCP_CONTAINER_PORT, pr as isFunctionUrlOacFronted, pt as compileCloudFrontFunction, q as matchBehavior, qn as readMtlsMaterialsFromDisk, qt as parseImageOverrideFlags, r as coerceServeRequest, rn as setShadowReadyTimeoutMs, rr as verifyJwtViaDiscovery, rt as httpHeadersToEdge, s as createStudioServeManager, si as discoverWebSocketApisOrThrow, sr as invokeRequestAuthorizer, st as isCloudFrontDistribution, t as addStudioSpecificOptions, ti as resolveWatchConfig, tn as DEFAULT_SHADOW_READY_TIMEOUT_MS, tr as verifyCognitoJwt, tt as buildEdgeResponseEvent, u as reinvoke, ui as webSocketApiMatchesIdentifier, un as A2A_CONTAINER_PORT, ur as applyCorsResponseHeaders, ut as pickLambdaEdgeFunctionLogicalId, v as startStudioServer, vi as AGENTCORE_RUNTIME_TYPE, vn as AGENTCORE_SIGV4_SERVICE, vr as buildHttpApiV2Event, vt as createLocalFileKvsDataSource, wi as substituteImagePlaceholders, wn as downloadAndExtractS3Bundle, wr as VtlEvaluationError, wt as resolveAlbTarget, x as createStudioStore, xi as resolveAgentCoreTarget, xn as invokeAgentCore, xr as pickResponseTemplate, xt as albStrategy, y as toStudioTargetGroups, yi as AgentCoreResolutionError, yn as signAgentCoreInvocation, yr as buildRestV1Event, yt as createUnboundCloudFrontModule, z as resolveCloudFrontTarget, zn as attachStageContext, zr as resolveRuntimeImage, zt as parseRestartPolicy } from "./local-studio-fdztI6b8.js";
|
|
2
2
|
|
|
3
|
-
export { A2A_CONTAINER_PORT, A2A_PATH, AGENTCORE_A2A_PROTOCOL, AGENTCORE_AGUI_PROTOCOL, AGENTCORE_HTTP_PROTOCOL, AGENTCORE_MCP_PROTOCOL, AGENTCORE_RUNTIME_TYPE, AGENTCORE_SESSION_ID_HEADER, AGENTCORE_SIGV4_SERVICE, AgentCoreResolutionError, CLOUDFRONT_DISTRIBUTION_TYPE, CloudMapRegistry, ConnectionRegistry, DEFAULT_SHADOW_READY_TIMEOUT_MS, EcsTaskResolutionError, HOST_GATEWAY_MIN_VERSION, ImageOverrideError, LocalInvokeBuildError, LocalStartCloudFrontError, MAX_TASKS_SUBNET_RANGE_CAP, MCP_CONTAINER_PORT, MCP_PATH, MCP_PROTOCOL_VERSION, SOFT_RELOAD_COMPLETION_LOG_SUFFIX, SUPPORTED_CODE_RUNTIMES, StudioEventBus, VtlEvaluationError, a2aInvokeOnce, addAlbSpecificOptions, addCommonEcsServiceOptions, addEcsAssumeRoleOptions, addImageOverrideOptions, addInvokeAgentCoreSpecificOptions, addInvokeSpecificOptions, addListSpecificOptions, addRunTaskSpecificOptions, addStartAgentCoreSpecificOptions, addStartApiSpecificOptions, addStartCloudFrontSpecificOptions, addStartServiceSpecificOptions, addStudioSpecificOptions, albStrategy, annotateAlbPinnedBackingServices, annotateEcsTaskPinnedTargets, annotatePinnedEcsTargets, applyAuthorizerOverlay, applyCorsResponseHeaders, applyEdgeRequestResult, applyEdgeResponseResult, architectureToPlatform, attachAgentCoreWsBridge, attachAuthorizers, attachContainerLogStreamer, attachStageContext, availableApiIdentifiers, availableWebSocketApiIdentifiers, bridgeAgentCoreWs, bufferToBody, buildAgentCoreCodeImage, buildAgentCoreServeAuthCheck, buildCloudMapIndex, buildCognitoJwksUrl, buildConnectEvent, buildContainerImage, buildCorsConfigByApiId, buildCorsConfigFromCloudFrontChain, buildDisconnectEvent, buildEcsImageResolutionContext, buildEdgeRequestEvent, buildEdgeResponseEvent, buildHttpApiV2Event, buildImageOverrideTag, buildJwksUrlFromIssuer, buildMessageEvent, buildMethodArn, buildMgmtEndpointEnvUrl, buildRestV1Event, buildStageMap, buildStsClientConfig, classifyS3Error, classifySourceChange, coerceRunRequest, coerceServeRequest, coerceStopRequest, compileCloudFrontFunction, computeCodeImageTag, computeRequestIdentityHash, createAuthorizerCache, createCloudFrontModule, createDeployedKvsDataSource, createFileWatcher, createJwksCache, createLocalFileKvsDataSource, createS3OriginReader, createStudioDispatcher, createStudioServeManager, createStudioStore, createUnboundCloudFrontModule, createWatchPredicates, defaultCredentialsLoader, derivePseudoParametersFromRegion, describePinnedImageUri, describeS3OriginDomain, discoverRoutes, discoverWebSocketApis, discoverWebSocketApisOrThrow, downloadAndExtractS3Bundle, ecsClusterOption, edgeHeadersToHttp, enforceImageOverrideOrphans, evaluateCachedLambdaPolicy, evaluateResponseParameters, extractKvsAssociations, filterRoutesByApiIdentifier, filterRoutesByApiIdentifiers, filterStudioCustomResources, filterStudioTargetGroups, filterWebSocketApisByIdentifiers, formatStateRemedy, getContainerNetworkIp, groupRoutesByServer, handleConnectionsRequest, httpHeadersToEdge, idFromArn, invokeAgentCore, invokeAgentCoreWs, invokeRequestAuthorizer, invokeTokenAuthorizer, isApplicationLoadBalancer, isCloudFrontDistribution, isCustomResourceLambdaTarget, isFunctionUrlOacFronted, isLocalCdkAssetImage, listPinnedTargets, matchBehavior, matchPreflight, matchRoute, materializeLayerFromArn, mcpInvokeOnce, mergeForService, parseConnectionsPath, parseImageOverrideFlags, parseKvsFileOverrides, parseLbPortOverrides, parseMaxTasks, parseOriginOverrides, parseRestartPolicy, parseSelectionExpressionPath, parseSseForJsonRpc, pickAgentCoreCandidateStack, pickFunctionUrlLogicalIdFromOrigin, pickKvsLogicalIdFromArn, pickLambdaEdgeFunctionLogicalId, pickRefLogicalId, pickResponseTemplate, pickTargetFunctionLogicalId, probeHostGatewaySupport, readMtlsMaterialsFromDisk, reinvoke, relayServeRequest, renderCodeDockerfile, renderStudioHtml, resolveAgentCoreTarget, resolveAlbFrontDoor, resolveAlbTarget, resolveApiTargetSubset, resolveCloudFrontDistribution, resolveCloudFrontTarget, resolveDeployedKvsArnByName, resolveDeployedOriginBucket, resolveEcsAssumeRoleOption, resolveEnvVars, resolveErrorResponseCandidates, resolveImageOverrides, resolveKvsModulesForDistribution, resolveLambdaArnIntrinsic, resolveProfileCredentials, resolveRuntimeCodeMountPath, resolveRuntimeFileExtension, resolveRuntimeImage, resolveSelectionExpression, resolveServeBaseUrl, resolveServiceIntegrationParameters, resolveSharedSidecarCredentials, resolveSingleTarget, resolveWatchConfig, runEcsServiceEmulator, runImageOverrideBuilds, runViewerRequest, runViewerResponse, selectIntegrationResponse, selectServeInboundAuth, serveFromStaticOrigin, serveLambdaUrlOrigin, serviceStrategy, setShadowReadyTimeoutMs, signAgentCoreInvocation, startAgentCoreHttpServer, startAgentCoreWsBridge, startApiServer, startCloudFrontServer, startStudioProxy, startStudioServer, stripCloudFrontImport, substituteImagePlaceholders, toCmdArgv, toStudioTargetGroups, translateLambdaResponse, tryParseStatus, tryResolveImageFnJoin, verifyCognitoJwt, verifyJwtAuthorizer, verifyJwtViaDiscovery, waitForAgentCoreHttpReady, waitForAgentCorePing, webSocketApiMatchesIdentifier };
|
|
3
|
+
export { A2A_CONTAINER_PORT, A2A_PATH, AGENTCORE_A2A_PROTOCOL, AGENTCORE_AGUI_PROTOCOL, AGENTCORE_HTTP_PROTOCOL, AGENTCORE_MCP_PROTOCOL, AGENTCORE_RUNTIME_TYPE, AGENTCORE_SESSION_ID_HEADER, AGENTCORE_SIGV4_SERVICE, AgentCoreResolutionError, CLOUDFRONT_DISTRIBUTION_TYPE, CloudMapRegistry, ConnectionRegistry, DEFAULT_SHADOW_READY_TIMEOUT_MS, EcsTaskResolutionError, HOST_GATEWAY_MIN_VERSION, ImageOverrideError, LocalInvokeBuildError, LocalStartCloudFrontError, MAX_TASKS_SUBNET_RANGE_CAP, MCP_CONTAINER_PORT, MCP_PATH, MCP_PROTOCOL_VERSION, SOFT_RELOAD_COMPLETION_LOG_SUFFIX, SUPPORTED_CODE_RUNTIMES, StudioEventBus, VtlEvaluationError, a2aInvokeOnce, addAlbSpecificOptions, addCommonEcsServiceOptions, addEcsAssumeRoleOptions, addImageOverrideOptions, addInvokeAgentCoreSpecificOptions, addInvokeSpecificOptions, addListSpecificOptions, addRunTaskSpecificOptions, addStartAgentCoreSpecificOptions, addStartApiSpecificOptions, addStartCloudFrontSpecificOptions, addStartServiceSpecificOptions, addStudioSpecificOptions, albStrategy, annotateAlbPinnedBackingServices, annotateEcsTaskPinnedTargets, annotatePinnedEcsTargets, applyAuthorizerOverlay, applyCorsResponseHeaders, applyEdgeRequestResult, applyEdgeResponseResult, architectureToPlatform, attachAgentCoreWsBridge, attachAuthorizers, attachContainerLogStreamer, attachStageContext, availableApiIdentifiers, availableWebSocketApiIdentifiers, bridgeAgentCoreWs, bufferToBody, buildAgentCoreCodeImage, buildAgentCoreServeAuthCheck, buildCloudMapIndex, buildCognitoJwksUrl, buildConnectEvent, buildContainerImage, buildCorsConfigByApiId, buildCorsConfigFromCloudFrontChain, buildDisconnectEvent, buildEcsImageResolutionContext, buildEdgeRequestEvent, buildEdgeResponseEvent, buildHttpApiV2Event, buildImageOverrideTag, buildJwksUrlFromIssuer, buildMessageEvent, buildMethodArn, buildMgmtEndpointEnvUrl, buildRestV1Event, buildStageMap, buildStsClientConfig, classifyS3Error, classifySourceChange, coerceRunRequest, coerceServeRequest, coerceStopRequest, compileCloudFrontFunction, computeCodeImageTag, computeRequestIdentityHash, createAuthorizerCache, createCloudFrontModule, createDeployedKvsDataSource, createFileWatcher, createJwksCache, createLocalFileKvsDataSource, createS3OriginReader, createStudioDispatcher, createStudioServeManager, createStudioStore, createUnboundCloudFrontModule, createWatchPredicates, defaultCredentialsLoader, derivePseudoParametersFromRegion, describePinnedImageUri, describeS3OriginDomain, discoverRoutes, discoverWebSocketApis, discoverWebSocketApisOrThrow, downloadAndExtractS3Bundle, ecsClusterOption, edgeHeadersToHttp, enforceImageOverrideOrphans, evaluateCachedLambdaPolicy, evaluateResponseParameters, extractKvsAssociations, filterRoutesByApiIdentifier, filterRoutesByApiIdentifiers, filterStudioCustomResources, filterStudioTargetGroups, filterWebSocketApisByIdentifiers, formatStateRemedy, getContainerNetworkIp, groupRoutesByServer, handleConnectionsRequest, httpHeadersToEdge, idFromArn, invokeAgentCore, invokeAgentCoreWs, invokeRequestAuthorizer, invokeTokenAuthorizer, isApplicationLoadBalancer, isCloudFrontDistribution, isCustomResourceLambdaTarget, isFunctionUrlOacFronted, isLocalCdkAssetImage, listPinnedTargets, matchBehavior, matchPreflight, matchRoute, materializeLayerFromArn, mcpInvokeOnce, mergeForService, normalizeKvsFileKeys, parseConnectionsPath, parseImageOverrideFlags, parseKvsFileOverrides, parseLbPortOverrides, parseMaxTasks, parseOriginOverrides, parseRestartPolicy, parseSelectionExpressionPath, parseSseForJsonRpc, pickAgentCoreCandidateStack, pickFunctionUrlLogicalIdFromOrigin, pickKvsLogicalIdFromArn, pickLambdaEdgeFunctionLogicalId, pickRefLogicalId, pickResponseTemplate, pickTargetFunctionLogicalId, probeHostGatewaySupport, readMtlsMaterialsFromDisk, reinvoke, relayServeRequest, renderCodeDockerfile, renderStudioHtml, resolveAgentCoreTarget, resolveAlbFrontDoor, resolveAlbTarget, resolveApiTargetSubset, resolveCloudFrontDistribution, resolveCloudFrontTarget, resolveDeployedKvsArnByName, resolveDeployedOriginBucket, resolveEcsAssumeRoleOption, resolveEnvVars, resolveErrorResponseCandidates, resolveImageOverrides, resolveKvsModulesForDistribution, resolveLambdaArnIntrinsic, resolveProfileCredentials, resolveRuntimeCodeMountPath, resolveRuntimeFileExtension, resolveRuntimeImage, resolveSelectionExpression, resolveServeBaseUrl, resolveServiceIntegrationParameters, resolveSharedSidecarCredentials, resolveSingleTarget, resolveWatchConfig, runEcsServiceEmulator, runImageOverrideBuilds, runViewerRequest, runViewerResponse, selectIntegrationResponse, selectServeInboundAuth, serveFromStaticOrigin, serveLambdaUrlOrigin, serviceStrategy, setShadowReadyTimeoutMs, signAgentCoreInvocation, startAgentCoreHttpServer, startAgentCoreWsBridge, startApiServer, startCloudFrontServer, startStudioProxy, startStudioServer, stripCloudFrontImport, substituteImagePlaceholders, toCmdArgv, toStudioTargetGroups, translateLambdaResponse, tryParseStatus, tryResolveImageFnJoin, verifyCognitoJwt, verifyJwtAuthorizer, verifyJwtViaDiscovery, waitForAgentCoreHttpReady, waitForAgentCorePing, webSocketApiMatchesIdentifier };
|