[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-aws-aws-sdk-js-v3-usage":3,"mdc-u5x4gd-key":35,"related-org-aws-aws-sdk-js-v3-usage":4876,"related-repo-aws-aws-sdk-js-v3-usage":5049},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":24,"repoUrl":25,"updatedAt":26,"license":27,"forks":28,"topics":29,"repo":30,"sourceUrl":33,"mdContent":34},"aws-sdk-js-v3-usage","write JavaScript code using AWS SDK","AWS SDK for JavaScript v3 development patterns. Use when writing JavaScript or TypeScript code that uses AWS services via @aws-sdk\u002F* packages (aws-sdk-js-v3), or when asked about schemas, runtime validation, serialization, or code generation in the context of the JS\u002FTS AWS SDK.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"aws","AWS (Amazon)","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Faws.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"TypeScript","typescript","tag",{"name":17,"slug":18,"type":15},"JavaScript","javascript",{"name":20,"slug":21,"type":15},"SDK","sdk",{"name":23,"slug":8,"type":15},"AWS",1822,"https:\u002F\u002Fgithub.com\u002Faws\u002Fagent-toolkit-for-aws","2026-07-12T08:42:08.146914",null,157,[],{"repoUrl":25,"stars":24,"forks":28,"topics":31,"description":32},[],"Official, AWS-supported MCP servers, skills, and plugins to help AI agents build on AWS","https:\u002F\u002Fgithub.com\u002Faws\u002Fagent-toolkit-for-aws\u002Ftree\u002FHEAD\u002Fskills\u002Fcore-skills\u002Faws-sdk-js-v3-usage","---\nname: aws-sdk-js-v3-usage\ndescription: |\n  AWS SDK for JavaScript v3 development patterns. Use when writing JavaScript or TypeScript code that uses AWS services via @aws-sdk\u002F* packages (aws-sdk-js-v3), or when asked about schemas, runtime validation, serialization, or code generation in the context of the JS\u002FTS AWS SDK.\n---\n\n> Do not use emojis in any code, comments, or output when this skill is active.\n\n# AWS SDK for JavaScript v3\n\n## Package Structure\n\n- `@aws-sdk\u002Fclient-*` — one per service, generated by [smithy-typescript](https:\u002F\u002Fgithub.com\u002Fawslabs\u002Fsmithy-typescript); one-to-one with AWS services and operations\n- `@aws-sdk\u002Flib-*` — higher-level helpers (e.g. `lib-dynamodb`, `lib-storage`)\n- `@aws-sdk\u002F*` (no prefix) — utility packages (mostly internal; don't import deep paths)\n\nAlways import from the package root:\n\n```js\nimport { S3Client } from \"@aws-sdk\u002Fclient-s3\"; \u002F\u002F correct\n\u002F\u002F NOT: import { S3Client } from \"@aws-sdk\u002Fclient-s3\u002Fdist-cjs\u002FS3Client\"\n```\n\n## Two Client Styles\n\n**Bare-bones** (preferred — smaller bundle):\n\n```js\nimport { S3Client, GetObjectCommand } from \"@aws-sdk\u002Fclient-s3\";\nconst client = new S3Client({ region: \"us-east-1\" });\nconst output = await client.send(new GetObjectCommand({ Bucket: \"b\", Key: \"k\" }));\n```\n\n**Aggregated** (v2-style but NOT v2, larger bundle):\n\n```js\nimport { S3 } from \"@aws-sdk\u002Fclient-s3\";\nconst client = new S3({ region: \"us-east-1\" });\nconst output = await client.getObject({ Bucket: \"b\", Key: \"k\" });\n```\n\n## Client Configuration\n\nNo global config in v3 — pass config to each client. `region` is always required; set it explicitly or via `AWS_REGION` env var.\n\n```js\nconst config = { region: \"us-east-1\", maxAttempts: 5 };\nconst s3 = new S3Client(config);\nconst dynamo = new DynamoDBClient(config);\n```\n\n**Do not read or mutate `client.config` after instantiation** — it is a resolved form (e.g. `region` becomes an async function). See `references\u002Feffective-practices.md`.\n\nFor HTTP handler (`NodeHttpHandler` from `@smithy\u002Fnode-http-handler`), retry strategy, endpoint details, logging, FIPS, dual-stack, protocol selection, and S3-specific options → see `references\u002Fclients.md`.\n\n## Credentials\n\nAll providers from `@aws-sdk\u002Fcredential-providers`. Credentials are lazy and cached per client until ~5 min before expiry.\n\n```js\n\u002F\u002F Default chain (env → ini → IMDS\u002FECS) — use in most Node.js apps\nconst client = new S3Client({ credentials: fromNodeProviderChain() });\n\n\u002F\u002F Assume role (NOTE: fromTemporaryCredentials is correct for STS AssumeRole)\nconst client = new S3Client({\n  credentials: fromTemporaryCredentials({ params: { RoleArn: \"arn:aws:iam::123456789012:role\u002FMyRole\" } }),\n});\n\n\u002F\u002F Named profile\nconst client = new S3Client({ profile: \"my-profile\" });\n```\n\nShare credentials and socket pool across multi-region clients:\n\n```js\nconst east = new S3Client({ region: \"us-east-1\" });\nconst { credentials, requestHandler } = east.config;\nconst west = new S3Client({ region: \"us-west-2\", credentials, requestHandler });\n```\n\nFor all providers (Cognito, SSO, web identity, custom chains, STS region priority) → see `references\u002Fcredentials.md`.\n\n## Streams (e.g. S3 GetObject Body)\n\n**Always read or discard streaming responses** — unread streams leave sockets open (socket exhaustion):\n\n```js\nconst { Body } = await client.send(new GetObjectCommand({ Bucket: \"b\", Key: \"k\" }));\nconst str = await Body.transformToString();       \u002F\u002F read as string\nconst bytes = await Body.transformToByteArray();  \u002F\u002F read as Uint8Array\n\u002F\u002F or discard:\nawait (Body.destroy?.() ?? Body.cancel?.());\n```\n\nStreams can only be read once.\n\n## Paginators\n\nUse `paginate*` functions instead of manual token handling:\n\n```js\nimport { DynamoDBClient, paginateListTables } from \"@aws-sdk\u002Fclient-dynamodb\";\n\nconst client = new DynamoDBClient({});\n\nconst tableNames = [];\nfor await (const page of paginateListTables({ client }, {})) {\n  \u002F\u002F page contains a single paginated output.\n  tableNames.push(...page.TableNames);\n}\n```\n\n## DynamoDB DocumentClient\n\nUse `@aws-sdk\u002Flib-dynamodb` to work with native JS types instead of AttributeValues:\n\n```js\nimport { DynamoDBClient } from \"@aws-sdk\u002Fclient-dynamodb\";\nimport { DynamoDBDocumentClient, GetCommand, PutCommand } from \"@aws-sdk\u002Flib-dynamodb\";\n\nconst client = DynamoDBDocumentClient.from(new DynamoDBClient({}));\nawait client.send(new PutCommand({ TableName: \"T\", Item: { id: \"1\", name: \"Alice\" } }));\nconst { Item } = await client.send(new GetCommand({ TableName: \"T\", Key: { id: \"1\" } }));\n```\n\nFor marshall options, large numbers (NumberValue), pagination, and aggregated client → see `references\u002Fdynamodb.md`.\n\n## S3: Presigned URLs, Multipart Upload, Waiters\n\n```js\n\u002F\u002F Presigned GET URL\nimport { getSignedUrl } from \"@aws-sdk\u002Fs3-request-presigner\";\nconst url = await getSignedUrl(client, new GetObjectCommand({ Bucket: \"b\", Key: \"k\" }), { expiresIn: 3600 });\n\n\u002F\u002F Multipart upload (large files \u002F streams)\nimport { Upload } from \"@aws-sdk\u002Flib-storage\";\nconst upload = new Upload({ client, params: { Bucket: \"b\", Key: \"k\", Body: stream } });\nawait upload.done();\n\n\u002F\u002F Waiters\nimport { waitUntilObjectExists } from \"@aws-sdk\u002Fclient-s3\";\nawait waitUntilObjectExists({ client, maxWaitTime: 120 }, { Bucket: \"b\", Key: \"k\" });\n```\n\nFor presigned POST, signed headers, waiter options → see `references\u002Fs3.md`.\n\n## Error Handling\n\n```js\nimport { S3ServiceException } from \"@aws-sdk\u002Fclient-s3\";\n\ntry {\n  await client.send(new GetObjectCommand({ Bucket: \"b\", Key: \"k\" }));\n} catch (e) {\n  if (e?.$metadata) {\n    \u002F\u002F SDK service error — has $metadata.httpStatusCode, e.name, e.$response\n    console.error(e.name, e.$metadata.httpStatusCode);\n  }\n}\n```\n\nCheck `e.name` or `instanceof` for specific error types. See `references\u002Ferror-handling.md` for full patterns.\n\nFor **runtime validation, serialization to non-default formats, or questions about what schemas are** in jsv3 → see `references\u002Fschemas.md`.\n\n## Performance: Parallel Workloads\n\n```js\n\u002F\u002F Configure maxSockets to match your parallel batch size\nconst client = new S3Client({\n  requestHandler: { httpsAgent: { maxSockets: 50 } },\n  cacheMiddleware: true, \u002F\u002F skip if using custom middleware\n});\n```\n\n**Streaming deadlock warning**: with limited sockets, don't `await` the request and stream body separately — chain them. See `references\u002Fperformance.md`.\n\n## Middleware\n\nAdd custom logic to all commands on a client:\n\n```js\nclient.middlewareStack.add(\n  (next, context) => async (args) => {\n    console.log(context.commandName, args.input);\n    const result = await next(args);\n    return result;\n  },\n  { name: \"MyMiddleware\", step: \"build\", override: true }\n);\n```\n\nSteps (in order): `initialize` → `serialize` → `build` → `finalizeRequest` → `deserialize`\n\n## Abort Controller\n\n```js\nconst { AbortController } = require(\"@aws-sdk\u002Fabort-controller\");\nconst { S3Client, CreateBucketCommand } = require(\"@aws-sdk\u002Fclient-s3\");\n\nconst abortController = new AbortController();\nconst client = new S3Client(clientParams);\n\nconst requestPromise = client.send(new CreateBucketCommand(commandParams), {\n  abortSignal: abortController.signal,\n});\n\n\u002F\u002F The request will not be created if abortSignal is already aborted.\n\u002F\u002F The request will be destroyed if abortSignal is aborted before response is returned.\nabortController.abort();\n\n\u002F\u002F This will fail with \"AbortError\" as abortSignal is aborted.\nawait requestPromise;\n```\n\n## Lambda Best Practices\n\nInitialize clients **outside** the handler (container reuse), make API calls **inside**. For one-time async setup, use a lazy init flag inside the handler:\n\n```js\nimport { S3Client } from \"@aws-sdk\u002Fclient-s3\";\n\nconst client = new S3Client({}); \u002F\u002F outside — reused across invocations\n\nlet ready = false;\nexport const handler = async (event) => {\n  if (!ready) { await prepare(); ready = true; } \u002F\u002F lazy one-time setup inside handler\n  \u002F\u002F ... API calls here\n};\n```\n\nSee `references\u002Flambda.md` for Lambda layers and versioning.\n\n## Node.js Version Requirements\n\n- v3.968.0+ requires Node.js >= 20\n- v3.723.0+ requires Node.js >= 18\n\n## TypeScript\n\nResponse fields are typed as `T | undefined` by default. Use `AssertiveClient` from `@smithy\u002Ftypes` to remove `| undefined`, or `NodeJsClient` \u002F `BrowserClient` to narrow streaming blob types. See `references\u002Ftypescript.md`.\n\n## SigV4a (S3 Multi-Region Access Points)\n\nS3 MRAP and certain other features require SigV4a. You must install and side-effect-import exactly one of:\n\n- `@aws-sdk\u002Fsignature-v4-crt` — Node.js only, better performance\n- `@aws-sdk\u002Fsignature-v4a` — Node.js + browsers, pure JS\n\n```js\nimport \"@aws-sdk\u002Fsignature-v4a\"; \u002F\u002F side-effect only — no exported values needed\n```\n\nSee `references\u002Fsigv4a.md` for full details and MRAP ARN format.\n",{"data":36,"body":37},{"name":4,"description":6},{"type":38,"children":39},"root",[40,52,59,66,132,137,218,224,235,486,496,702,708,729,866,898,926,932,945,1251,1256,1459,1471,1477,1487,1774,1779,1785,1798,2063,2069,2081,2522,2534,2540,3108,3120,3126,3436,3465,3484,3490,3630,3654,3660,3665,3975,4014,4020,4402,4408,4427,4692,4705,4711,4724,4728,4787,4793,4798,4823,4858,4870],{"type":41,"tag":42,"props":43,"children":44},"element","blockquote",{},[45],{"type":41,"tag":46,"props":47,"children":48},"p",{},[49],{"type":50,"value":51},"text","Do not use emojis in any code, comments, or output when this skill is active.",{"type":41,"tag":53,"props":54,"children":56},"h1",{"id":55},"aws-sdk-for-javascript-v3",[57],{"type":50,"value":58},"AWS SDK for JavaScript v3",{"type":41,"tag":60,"props":61,"children":63},"h2",{"id":62},"package-structure",[64],{"type":50,"value":65},"Package Structure",{"type":41,"tag":67,"props":68,"children":69},"ul",{},[70,94,121],{"type":41,"tag":71,"props":72,"children":73},"li",{},[74,81,83,92],{"type":41,"tag":75,"props":76,"children":78},"code",{"className":77},[],[79],{"type":50,"value":80},"@aws-sdk\u002Fclient-*",{"type":50,"value":82}," — one per service, generated by ",{"type":41,"tag":84,"props":85,"children":89},"a",{"href":86,"rel":87},"https:\u002F\u002Fgithub.com\u002Fawslabs\u002Fsmithy-typescript",[88],"nofollow",[90],{"type":50,"value":91},"smithy-typescript",{"type":50,"value":93},"; one-to-one with AWS services and operations",{"type":41,"tag":71,"props":95,"children":96},{},[97,103,105,111,113,119],{"type":41,"tag":75,"props":98,"children":100},{"className":99},[],[101],{"type":50,"value":102},"@aws-sdk\u002Flib-*",{"type":50,"value":104}," — higher-level helpers (e.g. ",{"type":41,"tag":75,"props":106,"children":108},{"className":107},[],[109],{"type":50,"value":110},"lib-dynamodb",{"type":50,"value":112},", ",{"type":41,"tag":75,"props":114,"children":116},{"className":115},[],[117],{"type":50,"value":118},"lib-storage",{"type":50,"value":120},")",{"type":41,"tag":71,"props":122,"children":123},{},[124,130],{"type":41,"tag":75,"props":125,"children":127},{"className":126},[],[128],{"type":50,"value":129},"@aws-sdk\u002F*",{"type":50,"value":131}," (no prefix) — utility packages (mostly internal; don't import deep paths)",{"type":41,"tag":46,"props":133,"children":134},{},[135],{"type":50,"value":136},"Always import from the package root:",{"type":41,"tag":138,"props":139,"children":144},"pre",{"className":140,"code":141,"language":142,"meta":143,"style":143},"language-js shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import { S3Client } from \"@aws-sdk\u002Fclient-s3\"; \u002F\u002F correct\n\u002F\u002F NOT: import { S3Client } from \"@aws-sdk\u002Fclient-s3\u002Fdist-cjs\u002FS3Client\"\n","js","",[145],{"type":41,"tag":75,"props":146,"children":147},{"__ignoreMap":143},[148,209],{"type":41,"tag":149,"props":150,"children":153},"span",{"class":151,"line":152},"line",1,[154,160,166,172,177,182,187,193,198,203],{"type":41,"tag":149,"props":155,"children":157},{"style":156},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[158],{"type":50,"value":159},"import",{"type":41,"tag":149,"props":161,"children":163},{"style":162},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[164],{"type":50,"value":165}," {",{"type":41,"tag":149,"props":167,"children":169},{"style":168},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[170],{"type":50,"value":171}," S3Client",{"type":41,"tag":149,"props":173,"children":174},{"style":162},[175],{"type":50,"value":176}," }",{"type":41,"tag":149,"props":178,"children":179},{"style":156},[180],{"type":50,"value":181}," from",{"type":41,"tag":149,"props":183,"children":184},{"style":162},[185],{"type":50,"value":186}," \"",{"type":41,"tag":149,"props":188,"children":190},{"style":189},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[191],{"type":50,"value":192},"@aws-sdk\u002Fclient-s3",{"type":41,"tag":149,"props":194,"children":195},{"style":162},[196],{"type":50,"value":197},"\"",{"type":41,"tag":149,"props":199,"children":200},{"style":162},[201],{"type":50,"value":202},";",{"type":41,"tag":149,"props":204,"children":206},{"style":205},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[207],{"type":50,"value":208}," \u002F\u002F correct\n",{"type":41,"tag":149,"props":210,"children":212},{"class":151,"line":211},2,[213],{"type":41,"tag":149,"props":214,"children":215},{"style":205},[216],{"type":50,"value":217},"\u002F\u002F NOT: import { S3Client } from \"@aws-sdk\u002Fclient-s3\u002Fdist-cjs\u002FS3Client\"\n",{"type":41,"tag":60,"props":219,"children":221},{"id":220},"two-client-styles",[222],{"type":50,"value":223},"Two Client Styles",{"type":41,"tag":46,"props":225,"children":226},{},[227,233],{"type":41,"tag":228,"props":229,"children":230},"strong",{},[231],{"type":50,"value":232},"Bare-bones",{"type":50,"value":234}," (preferred — smaller bundle):",{"type":41,"tag":138,"props":236,"children":238},{"className":140,"code":237,"language":142,"meta":143,"style":143},"import { S3Client, GetObjectCommand } from \"@aws-sdk\u002Fclient-s3\";\nconst client = new S3Client({ region: \"us-east-1\" });\nconst output = await client.send(new GetObjectCommand({ Bucket: \"b\", Key: \"k\" }));\n",[239],{"type":41,"tag":75,"props":240,"children":241},{"__ignoreMap":143},[242,292,367],{"type":41,"tag":149,"props":243,"children":244},{"class":151,"line":152},[245,249,253,257,262,267,271,275,279,283,287],{"type":41,"tag":149,"props":246,"children":247},{"style":156},[248],{"type":50,"value":159},{"type":41,"tag":149,"props":250,"children":251},{"style":162},[252],{"type":50,"value":165},{"type":41,"tag":149,"props":254,"children":255},{"style":168},[256],{"type":50,"value":171},{"type":41,"tag":149,"props":258,"children":259},{"style":162},[260],{"type":50,"value":261},",",{"type":41,"tag":149,"props":263,"children":264},{"style":168},[265],{"type":50,"value":266}," GetObjectCommand",{"type":41,"tag":149,"props":268,"children":269},{"style":162},[270],{"type":50,"value":176},{"type":41,"tag":149,"props":272,"children":273},{"style":156},[274],{"type":50,"value":181},{"type":41,"tag":149,"props":276,"children":277},{"style":162},[278],{"type":50,"value":186},{"type":41,"tag":149,"props":280,"children":281},{"style":189},[282],{"type":50,"value":192},{"type":41,"tag":149,"props":284,"children":285},{"style":162},[286],{"type":50,"value":197},{"type":41,"tag":149,"props":288,"children":289},{"style":162},[290],{"type":50,"value":291},";\n",{"type":41,"tag":149,"props":293,"children":294},{"class":151,"line":211},[295,301,306,311,316,321,326,331,337,342,346,351,355,359,363],{"type":41,"tag":149,"props":296,"children":298},{"style":297},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[299],{"type":50,"value":300},"const",{"type":41,"tag":149,"props":302,"children":303},{"style":168},[304],{"type":50,"value":305}," client ",{"type":41,"tag":149,"props":307,"children":308},{"style":162},[309],{"type":50,"value":310},"=",{"type":41,"tag":149,"props":312,"children":313},{"style":162},[314],{"type":50,"value":315}," new",{"type":41,"tag":149,"props":317,"children":319},{"style":318},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[320],{"type":50,"value":171},{"type":41,"tag":149,"props":322,"children":323},{"style":168},[324],{"type":50,"value":325},"(",{"type":41,"tag":149,"props":327,"children":328},{"style":162},[329],{"type":50,"value":330},"{",{"type":41,"tag":149,"props":332,"children":334},{"style":333},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[335],{"type":50,"value":336}," region",{"type":41,"tag":149,"props":338,"children":339},{"style":162},[340],{"type":50,"value":341},":",{"type":41,"tag":149,"props":343,"children":344},{"style":162},[345],{"type":50,"value":186},{"type":41,"tag":149,"props":347,"children":348},{"style":189},[349],{"type":50,"value":350},"us-east-1",{"type":41,"tag":149,"props":352,"children":353},{"style":162},[354],{"type":50,"value":197},{"type":41,"tag":149,"props":356,"children":357},{"style":162},[358],{"type":50,"value":176},{"type":41,"tag":149,"props":360,"children":361},{"style":168},[362],{"type":50,"value":120},{"type":41,"tag":149,"props":364,"children":365},{"style":162},[366],{"type":50,"value":291},{"type":41,"tag":149,"props":368,"children":370},{"class":151,"line":369},3,[371,375,380,384,389,394,399,404,408,413,417,421,425,430,434,438,443,447,451,456,460,464,469,473,477,482],{"type":41,"tag":149,"props":372,"children":373},{"style":297},[374],{"type":50,"value":300},{"type":41,"tag":149,"props":376,"children":377},{"style":168},[378],{"type":50,"value":379}," output ",{"type":41,"tag":149,"props":381,"children":382},{"style":162},[383],{"type":50,"value":310},{"type":41,"tag":149,"props":385,"children":386},{"style":156},[387],{"type":50,"value":388}," await",{"type":41,"tag":149,"props":390,"children":391},{"style":168},[392],{"type":50,"value":393}," client",{"type":41,"tag":149,"props":395,"children":396},{"style":162},[397],{"type":50,"value":398},".",{"type":41,"tag":149,"props":400,"children":401},{"style":318},[402],{"type":50,"value":403},"send",{"type":41,"tag":149,"props":405,"children":406},{"style":168},[407],{"type":50,"value":325},{"type":41,"tag":149,"props":409,"children":410},{"style":162},[411],{"type":50,"value":412},"new",{"type":41,"tag":149,"props":414,"children":415},{"style":318},[416],{"type":50,"value":266},{"type":41,"tag":149,"props":418,"children":419},{"style":168},[420],{"type":50,"value":325},{"type":41,"tag":149,"props":422,"children":423},{"style":162},[424],{"type":50,"value":330},{"type":41,"tag":149,"props":426,"children":427},{"style":333},[428],{"type":50,"value":429}," Bucket",{"type":41,"tag":149,"props":431,"children":432},{"style":162},[433],{"type":50,"value":341},{"type":41,"tag":149,"props":435,"children":436},{"style":162},[437],{"type":50,"value":186},{"type":41,"tag":149,"props":439,"children":440},{"style":189},[441],{"type":50,"value":442},"b",{"type":41,"tag":149,"props":444,"children":445},{"style":162},[446],{"type":50,"value":197},{"type":41,"tag":149,"props":448,"children":449},{"style":162},[450],{"type":50,"value":261},{"type":41,"tag":149,"props":452,"children":453},{"style":333},[454],{"type":50,"value":455}," Key",{"type":41,"tag":149,"props":457,"children":458},{"style":162},[459],{"type":50,"value":341},{"type":41,"tag":149,"props":461,"children":462},{"style":162},[463],{"type":50,"value":186},{"type":41,"tag":149,"props":465,"children":466},{"style":189},[467],{"type":50,"value":468},"k",{"type":41,"tag":149,"props":470,"children":471},{"style":162},[472],{"type":50,"value":197},{"type":41,"tag":149,"props":474,"children":475},{"style":162},[476],{"type":50,"value":176},{"type":41,"tag":149,"props":478,"children":479},{"style":168},[480],{"type":50,"value":481},"))",{"type":41,"tag":149,"props":483,"children":484},{"style":162},[485],{"type":50,"value":291},{"type":41,"tag":46,"props":487,"children":488},{},[489,494],{"type":41,"tag":228,"props":490,"children":491},{},[492],{"type":50,"value":493},"Aggregated",{"type":50,"value":495}," (v2-style but NOT v2, larger bundle):",{"type":41,"tag":138,"props":497,"children":499},{"className":140,"code":498,"language":142,"meta":143,"style":143},"import { S3 } from \"@aws-sdk\u002Fclient-s3\";\nconst client = new S3({ region: \"us-east-1\" });\nconst output = await client.getObject({ Bucket: \"b\", Key: \"k\" });\n",[500],{"type":41,"tag":75,"props":501,"children":502},{"__ignoreMap":143},[503,543,606],{"type":41,"tag":149,"props":504,"children":505},{"class":151,"line":152},[506,510,514,519,523,527,531,535,539],{"type":41,"tag":149,"props":507,"children":508},{"style":156},[509],{"type":50,"value":159},{"type":41,"tag":149,"props":511,"children":512},{"style":162},[513],{"type":50,"value":165},{"type":41,"tag":149,"props":515,"children":516},{"style":168},[517],{"type":50,"value":518}," S3",{"type":41,"tag":149,"props":520,"children":521},{"style":162},[522],{"type":50,"value":176},{"type":41,"tag":149,"props":524,"children":525},{"style":156},[526],{"type":50,"value":181},{"type":41,"tag":149,"props":528,"children":529},{"style":162},[530],{"type":50,"value":186},{"type":41,"tag":149,"props":532,"children":533},{"style":189},[534],{"type":50,"value":192},{"type":41,"tag":149,"props":536,"children":537},{"style":162},[538],{"type":50,"value":197},{"type":41,"tag":149,"props":540,"children":541},{"style":162},[542],{"type":50,"value":291},{"type":41,"tag":149,"props":544,"children":545},{"class":151,"line":211},[546,550,554,558,562,566,570,574,578,582,586,590,594,598,602],{"type":41,"tag":149,"props":547,"children":548},{"style":297},[549],{"type":50,"value":300},{"type":41,"tag":149,"props":551,"children":552},{"style":168},[553],{"type":50,"value":305},{"type":41,"tag":149,"props":555,"children":556},{"style":162},[557],{"type":50,"value":310},{"type":41,"tag":149,"props":559,"children":560},{"style":162},[561],{"type":50,"value":315},{"type":41,"tag":149,"props":563,"children":564},{"style":318},[565],{"type":50,"value":518},{"type":41,"tag":149,"props":567,"children":568},{"style":168},[569],{"type":50,"value":325},{"type":41,"tag":149,"props":571,"children":572},{"style":162},[573],{"type":50,"value":330},{"type":41,"tag":149,"props":575,"children":576},{"style":333},[577],{"type":50,"value":336},{"type":41,"tag":149,"props":579,"children":580},{"style":162},[581],{"type":50,"value":341},{"type":41,"tag":149,"props":583,"children":584},{"style":162},[585],{"type":50,"value":186},{"type":41,"tag":149,"props":587,"children":588},{"style":189},[589],{"type":50,"value":350},{"type":41,"tag":149,"props":591,"children":592},{"style":162},[593],{"type":50,"value":197},{"type":41,"tag":149,"props":595,"children":596},{"style":162},[597],{"type":50,"value":176},{"type":41,"tag":149,"props":599,"children":600},{"style":168},[601],{"type":50,"value":120},{"type":41,"tag":149,"props":603,"children":604},{"style":162},[605],{"type":50,"value":291},{"type":41,"tag":149,"props":607,"children":608},{"class":151,"line":369},[609,613,617,621,625,629,633,638,642,646,650,654,658,662,666,670,674,678,682,686,690,694,698],{"type":41,"tag":149,"props":610,"children":611},{"style":297},[612],{"type":50,"value":300},{"type":41,"tag":149,"props":614,"children":615},{"style":168},[616],{"type":50,"value":379},{"type":41,"tag":149,"props":618,"children":619},{"style":162},[620],{"type":50,"value":310},{"type":41,"tag":149,"props":622,"children":623},{"style":156},[624],{"type":50,"value":388},{"type":41,"tag":149,"props":626,"children":627},{"style":168},[628],{"type":50,"value":393},{"type":41,"tag":149,"props":630,"children":631},{"style":162},[632],{"type":50,"value":398},{"type":41,"tag":149,"props":634,"children":635},{"style":318},[636],{"type":50,"value":637},"getObject",{"type":41,"tag":149,"props":639,"children":640},{"style":168},[641],{"type":50,"value":325},{"type":41,"tag":149,"props":643,"children":644},{"style":162},[645],{"type":50,"value":330},{"type":41,"tag":149,"props":647,"children":648},{"style":333},[649],{"type":50,"value":429},{"type":41,"tag":149,"props":651,"children":652},{"style":162},[653],{"type":50,"value":341},{"type":41,"tag":149,"props":655,"children":656},{"style":162},[657],{"type":50,"value":186},{"type":41,"tag":149,"props":659,"children":660},{"style":189},[661],{"type":50,"value":442},{"type":41,"tag":149,"props":663,"children":664},{"style":162},[665],{"type":50,"value":197},{"type":41,"tag":149,"props":667,"children":668},{"style":162},[669],{"type":50,"value":261},{"type":41,"tag":149,"props":671,"children":672},{"style":333},[673],{"type":50,"value":455},{"type":41,"tag":149,"props":675,"children":676},{"style":162},[677],{"type":50,"value":341},{"type":41,"tag":149,"props":679,"children":680},{"style":162},[681],{"type":50,"value":186},{"type":41,"tag":149,"props":683,"children":684},{"style":189},[685],{"type":50,"value":468},{"type":41,"tag":149,"props":687,"children":688},{"style":162},[689],{"type":50,"value":197},{"type":41,"tag":149,"props":691,"children":692},{"style":162},[693],{"type":50,"value":176},{"type":41,"tag":149,"props":695,"children":696},{"style":168},[697],{"type":50,"value":120},{"type":41,"tag":149,"props":699,"children":700},{"style":162},[701],{"type":50,"value":291},{"type":41,"tag":60,"props":703,"children":705},{"id":704},"client-configuration",[706],{"type":50,"value":707},"Client Configuration",{"type":41,"tag":46,"props":709,"children":710},{},[711,713,719,721,727],{"type":50,"value":712},"No global config in v3 — pass config to each client. ",{"type":41,"tag":75,"props":714,"children":716},{"className":715},[],[717],{"type":50,"value":718},"region",{"type":50,"value":720}," is always required; set it explicitly or via ",{"type":41,"tag":75,"props":722,"children":724},{"className":723},[],[725],{"type":50,"value":726},"AWS_REGION",{"type":50,"value":728}," env var.",{"type":41,"tag":138,"props":730,"children":732},{"className":140,"code":731,"language":142,"meta":143,"style":143},"const config = { region: \"us-east-1\", maxAttempts: 5 };\nconst s3 = new S3Client(config);\nconst dynamo = new DynamoDBClient(config);\n",[733],{"type":41,"tag":75,"props":734,"children":735},{"__ignoreMap":143},[736,800,833],{"type":41,"tag":149,"props":737,"children":738},{"class":151,"line":152},[739,743,748,752,756,760,764,768,772,776,780,785,789,795],{"type":41,"tag":149,"props":740,"children":741},{"style":297},[742],{"type":50,"value":300},{"type":41,"tag":149,"props":744,"children":745},{"style":168},[746],{"type":50,"value":747}," config ",{"type":41,"tag":149,"props":749,"children":750},{"style":162},[751],{"type":50,"value":310},{"type":41,"tag":149,"props":753,"children":754},{"style":162},[755],{"type":50,"value":165},{"type":41,"tag":149,"props":757,"children":758},{"style":333},[759],{"type":50,"value":336},{"type":41,"tag":149,"props":761,"children":762},{"style":162},[763],{"type":50,"value":341},{"type":41,"tag":149,"props":765,"children":766},{"style":162},[767],{"type":50,"value":186},{"type":41,"tag":149,"props":769,"children":770},{"style":189},[771],{"type":50,"value":350},{"type":41,"tag":149,"props":773,"children":774},{"style":162},[775],{"type":50,"value":197},{"type":41,"tag":149,"props":777,"children":778},{"style":162},[779],{"type":50,"value":261},{"type":41,"tag":149,"props":781,"children":782},{"style":333},[783],{"type":50,"value":784}," maxAttempts",{"type":41,"tag":149,"props":786,"children":787},{"style":162},[788],{"type":50,"value":341},{"type":41,"tag":149,"props":790,"children":792},{"style":791},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[793],{"type":50,"value":794}," 5",{"type":41,"tag":149,"props":796,"children":797},{"style":162},[798],{"type":50,"value":799}," };\n",{"type":41,"tag":149,"props":801,"children":802},{"class":151,"line":211},[803,807,812,816,820,824,829],{"type":41,"tag":149,"props":804,"children":805},{"style":297},[806],{"type":50,"value":300},{"type":41,"tag":149,"props":808,"children":809},{"style":168},[810],{"type":50,"value":811}," s3 ",{"type":41,"tag":149,"props":813,"children":814},{"style":162},[815],{"type":50,"value":310},{"type":41,"tag":149,"props":817,"children":818},{"style":162},[819],{"type":50,"value":315},{"type":41,"tag":149,"props":821,"children":822},{"style":318},[823],{"type":50,"value":171},{"type":41,"tag":149,"props":825,"children":826},{"style":168},[827],{"type":50,"value":828},"(config)",{"type":41,"tag":149,"props":830,"children":831},{"style":162},[832],{"type":50,"value":291},{"type":41,"tag":149,"props":834,"children":835},{"class":151,"line":369},[836,840,845,849,853,858,862],{"type":41,"tag":149,"props":837,"children":838},{"style":297},[839],{"type":50,"value":300},{"type":41,"tag":149,"props":841,"children":842},{"style":168},[843],{"type":50,"value":844}," dynamo ",{"type":41,"tag":149,"props":846,"children":847},{"style":162},[848],{"type":50,"value":310},{"type":41,"tag":149,"props":850,"children":851},{"style":162},[852],{"type":50,"value":315},{"type":41,"tag":149,"props":854,"children":855},{"style":318},[856],{"type":50,"value":857}," DynamoDBClient",{"type":41,"tag":149,"props":859,"children":860},{"style":168},[861],{"type":50,"value":828},{"type":41,"tag":149,"props":863,"children":864},{"style":162},[865],{"type":50,"value":291},{"type":41,"tag":46,"props":867,"children":868},{},[869,882,884,889,891,897],{"type":41,"tag":228,"props":870,"children":871},{},[872,874,880],{"type":50,"value":873},"Do not read or mutate ",{"type":41,"tag":75,"props":875,"children":877},{"className":876},[],[878],{"type":50,"value":879},"client.config",{"type":50,"value":881}," after instantiation",{"type":50,"value":883}," — it is a resolved form (e.g. ",{"type":41,"tag":75,"props":885,"children":887},{"className":886},[],[888],{"type":50,"value":718},{"type":50,"value":890}," becomes an async function). See ",{"type":41,"tag":75,"props":892,"children":894},{"className":893},[],[895],{"type":50,"value":896},"references\u002Feffective-practices.md",{"type":50,"value":398},{"type":41,"tag":46,"props":899,"children":900},{},[901,903,909,911,917,919,925],{"type":50,"value":902},"For HTTP handler (",{"type":41,"tag":75,"props":904,"children":906},{"className":905},[],[907],{"type":50,"value":908},"NodeHttpHandler",{"type":50,"value":910}," from ",{"type":41,"tag":75,"props":912,"children":914},{"className":913},[],[915],{"type":50,"value":916},"@smithy\u002Fnode-http-handler",{"type":50,"value":918},"), retry strategy, endpoint details, logging, FIPS, dual-stack, protocol selection, and S3-specific options → see ",{"type":41,"tag":75,"props":920,"children":922},{"className":921},[],[923],{"type":50,"value":924},"references\u002Fclients.md",{"type":50,"value":398},{"type":41,"tag":60,"props":927,"children":929},{"id":928},"credentials",[930],{"type":50,"value":931},"Credentials",{"type":41,"tag":46,"props":933,"children":934},{},[935,937,943],{"type":50,"value":936},"All providers from ",{"type":41,"tag":75,"props":938,"children":940},{"className":939},[],[941],{"type":50,"value":942},"@aws-sdk\u002Fcredential-providers",{"type":50,"value":944},". Credentials are lazy and cached per client until ~5 min before expiry.",{"type":41,"tag":138,"props":946,"children":948},{"className":140,"code":947,"language":142,"meta":143,"style":143},"\u002F\u002F Default chain (env → ini → IMDS\u002FECS) — use in most Node.js apps\nconst client = new S3Client({ credentials: fromNodeProviderChain() });\n\n\u002F\u002F Assume role (NOTE: fromTemporaryCredentials is correct for STS AssumeRole)\nconst client = new S3Client({\n  credentials: fromTemporaryCredentials({ params: { RoleArn: \"arn:aws:iam::123456789012:role\u002FMyRole\" } }),\n});\n\n\u002F\u002F Named profile\nconst client = new S3Client({ profile: \"my-profile\" });\n",[949],{"type":41,"tag":75,"props":950,"children":951},{"__ignoreMap":143},[952,960,1023,1032,1041,1074,1152,1168,1176,1185],{"type":41,"tag":149,"props":953,"children":954},{"class":151,"line":152},[955],{"type":41,"tag":149,"props":956,"children":957},{"style":205},[958],{"type":50,"value":959},"\u002F\u002F Default chain (env → ini → IMDS\u002FECS) — use in most Node.js apps\n",{"type":41,"tag":149,"props":961,"children":962},{"class":151,"line":211},[963,967,971,975,979,983,987,991,996,1000,1005,1010,1015,1019],{"type":41,"tag":149,"props":964,"children":965},{"style":297},[966],{"type":50,"value":300},{"type":41,"tag":149,"props":968,"children":969},{"style":168},[970],{"type":50,"value":305},{"type":41,"tag":149,"props":972,"children":973},{"style":162},[974],{"type":50,"value":310},{"type":41,"tag":149,"props":976,"children":977},{"style":162},[978],{"type":50,"value":315},{"type":41,"tag":149,"props":980,"children":981},{"style":318},[982],{"type":50,"value":171},{"type":41,"tag":149,"props":984,"children":985},{"style":168},[986],{"type":50,"value":325},{"type":41,"tag":149,"props":988,"children":989},{"style":162},[990],{"type":50,"value":330},{"type":41,"tag":149,"props":992,"children":993},{"style":333},[994],{"type":50,"value":995}," credentials",{"type":41,"tag":149,"props":997,"children":998},{"style":162},[999],{"type":50,"value":341},{"type":41,"tag":149,"props":1001,"children":1002},{"style":318},[1003],{"type":50,"value":1004}," fromNodeProviderChain",{"type":41,"tag":149,"props":1006,"children":1007},{"style":168},[1008],{"type":50,"value":1009},"() ",{"type":41,"tag":149,"props":1011,"children":1012},{"style":162},[1013],{"type":50,"value":1014},"}",{"type":41,"tag":149,"props":1016,"children":1017},{"style":168},[1018],{"type":50,"value":120},{"type":41,"tag":149,"props":1020,"children":1021},{"style":162},[1022],{"type":50,"value":291},{"type":41,"tag":149,"props":1024,"children":1025},{"class":151,"line":369},[1026],{"type":41,"tag":149,"props":1027,"children":1029},{"emptyLinePlaceholder":1028},true,[1030],{"type":50,"value":1031},"\n",{"type":41,"tag":149,"props":1033,"children":1035},{"class":151,"line":1034},4,[1036],{"type":41,"tag":149,"props":1037,"children":1038},{"style":205},[1039],{"type":50,"value":1040},"\u002F\u002F Assume role (NOTE: fromTemporaryCredentials is correct for STS AssumeRole)\n",{"type":41,"tag":149,"props":1042,"children":1044},{"class":151,"line":1043},5,[1045,1049,1053,1057,1061,1065,1069],{"type":41,"tag":149,"props":1046,"children":1047},{"style":297},[1048],{"type":50,"value":300},{"type":41,"tag":149,"props":1050,"children":1051},{"style":168},[1052],{"type":50,"value":305},{"type":41,"tag":149,"props":1054,"children":1055},{"style":162},[1056],{"type":50,"value":310},{"type":41,"tag":149,"props":1058,"children":1059},{"style":162},[1060],{"type":50,"value":315},{"type":41,"tag":149,"props":1062,"children":1063},{"style":318},[1064],{"type":50,"value":171},{"type":41,"tag":149,"props":1066,"children":1067},{"style":168},[1068],{"type":50,"value":325},{"type":41,"tag":149,"props":1070,"children":1071},{"style":162},[1072],{"type":50,"value":1073},"{\n",{"type":41,"tag":149,"props":1075,"children":1077},{"class":151,"line":1076},6,[1078,1083,1087,1092,1096,1100,1105,1109,1113,1118,1122,1126,1131,1135,1139,1143,1147],{"type":41,"tag":149,"props":1079,"children":1080},{"style":333},[1081],{"type":50,"value":1082},"  credentials",{"type":41,"tag":149,"props":1084,"children":1085},{"style":162},[1086],{"type":50,"value":341},{"type":41,"tag":149,"props":1088,"children":1089},{"style":318},[1090],{"type":50,"value":1091}," fromTemporaryCredentials",{"type":41,"tag":149,"props":1093,"children":1094},{"style":168},[1095],{"type":50,"value":325},{"type":41,"tag":149,"props":1097,"children":1098},{"style":162},[1099],{"type":50,"value":330},{"type":41,"tag":149,"props":1101,"children":1102},{"style":333},[1103],{"type":50,"value":1104}," params",{"type":41,"tag":149,"props":1106,"children":1107},{"style":162},[1108],{"type":50,"value":341},{"type":41,"tag":149,"props":1110,"children":1111},{"style":162},[1112],{"type":50,"value":165},{"type":41,"tag":149,"props":1114,"children":1115},{"style":333},[1116],{"type":50,"value":1117}," RoleArn",{"type":41,"tag":149,"props":1119,"children":1120},{"style":162},[1121],{"type":50,"value":341},{"type":41,"tag":149,"props":1123,"children":1124},{"style":162},[1125],{"type":50,"value":186},{"type":41,"tag":149,"props":1127,"children":1128},{"style":189},[1129],{"type":50,"value":1130},"arn:aws:iam::123456789012:role\u002FMyRole",{"type":41,"tag":149,"props":1132,"children":1133},{"style":162},[1134],{"type":50,"value":197},{"type":41,"tag":149,"props":1136,"children":1137},{"style":162},[1138],{"type":50,"value":176},{"type":41,"tag":149,"props":1140,"children":1141},{"style":162},[1142],{"type":50,"value":176},{"type":41,"tag":149,"props":1144,"children":1145},{"style":168},[1146],{"type":50,"value":120},{"type":41,"tag":149,"props":1148,"children":1149},{"style":162},[1150],{"type":50,"value":1151},",\n",{"type":41,"tag":149,"props":1153,"children":1155},{"class":151,"line":1154},7,[1156,1160,1164],{"type":41,"tag":149,"props":1157,"children":1158},{"style":162},[1159],{"type":50,"value":1014},{"type":41,"tag":149,"props":1161,"children":1162},{"style":168},[1163],{"type":50,"value":120},{"type":41,"tag":149,"props":1165,"children":1166},{"style":162},[1167],{"type":50,"value":291},{"type":41,"tag":149,"props":1169,"children":1171},{"class":151,"line":1170},8,[1172],{"type":41,"tag":149,"props":1173,"children":1174},{"emptyLinePlaceholder":1028},[1175],{"type":50,"value":1031},{"type":41,"tag":149,"props":1177,"children":1179},{"class":151,"line":1178},9,[1180],{"type":41,"tag":149,"props":1181,"children":1182},{"style":205},[1183],{"type":50,"value":1184},"\u002F\u002F Named profile\n",{"type":41,"tag":149,"props":1186,"children":1188},{"class":151,"line":1187},10,[1189,1193,1197,1201,1205,1209,1213,1217,1222,1226,1230,1235,1239,1243,1247],{"type":41,"tag":149,"props":1190,"children":1191},{"style":297},[1192],{"type":50,"value":300},{"type":41,"tag":149,"props":1194,"children":1195},{"style":168},[1196],{"type":50,"value":305},{"type":41,"tag":149,"props":1198,"children":1199},{"style":162},[1200],{"type":50,"value":310},{"type":41,"tag":149,"props":1202,"children":1203},{"style":162},[1204],{"type":50,"value":315},{"type":41,"tag":149,"props":1206,"children":1207},{"style":318},[1208],{"type":50,"value":171},{"type":41,"tag":149,"props":1210,"children":1211},{"style":168},[1212],{"type":50,"value":325},{"type":41,"tag":149,"props":1214,"children":1215},{"style":162},[1216],{"type":50,"value":330},{"type":41,"tag":149,"props":1218,"children":1219},{"style":333},[1220],{"type":50,"value":1221}," profile",{"type":41,"tag":149,"props":1223,"children":1224},{"style":162},[1225],{"type":50,"value":341},{"type":41,"tag":149,"props":1227,"children":1228},{"style":162},[1229],{"type":50,"value":186},{"type":41,"tag":149,"props":1231,"children":1232},{"style":189},[1233],{"type":50,"value":1234},"my-profile",{"type":41,"tag":149,"props":1236,"children":1237},{"style":162},[1238],{"type":50,"value":197},{"type":41,"tag":149,"props":1240,"children":1241},{"style":162},[1242],{"type":50,"value":176},{"type":41,"tag":149,"props":1244,"children":1245},{"style":168},[1246],{"type":50,"value":120},{"type":41,"tag":149,"props":1248,"children":1249},{"style":162},[1250],{"type":50,"value":291},{"type":41,"tag":46,"props":1252,"children":1253},{},[1254],{"type":50,"value":1255},"Share credentials and socket pool across multi-region clients:",{"type":41,"tag":138,"props":1257,"children":1259},{"className":140,"code":1258,"language":142,"meta":143,"style":143},"const east = new S3Client({ region: \"us-east-1\" });\nconst { credentials, requestHandler } = east.config;\nconst west = new S3Client({ region: \"us-west-2\", credentials, requestHandler });\n",[1260],{"type":41,"tag":75,"props":1261,"children":1262},{"__ignoreMap":143},[1263,1327,1378],{"type":41,"tag":149,"props":1264,"children":1265},{"class":151,"line":152},[1266,1270,1275,1279,1283,1287,1291,1295,1299,1303,1307,1311,1315,1319,1323],{"type":41,"tag":149,"props":1267,"children":1268},{"style":297},[1269],{"type":50,"value":300},{"type":41,"tag":149,"props":1271,"children":1272},{"style":168},[1273],{"type":50,"value":1274}," east ",{"type":41,"tag":149,"props":1276,"children":1277},{"style":162},[1278],{"type":50,"value":310},{"type":41,"tag":149,"props":1280,"children":1281},{"style":162},[1282],{"type":50,"value":315},{"type":41,"tag":149,"props":1284,"children":1285},{"style":318},[1286],{"type":50,"value":171},{"type":41,"tag":149,"props":1288,"children":1289},{"style":168},[1290],{"type":50,"value":325},{"type":41,"tag":149,"props":1292,"children":1293},{"style":162},[1294],{"type":50,"value":330},{"type":41,"tag":149,"props":1296,"children":1297},{"style":333},[1298],{"type":50,"value":336},{"type":41,"tag":149,"props":1300,"children":1301},{"style":162},[1302],{"type":50,"value":341},{"type":41,"tag":149,"props":1304,"children":1305},{"style":162},[1306],{"type":50,"value":186},{"type":41,"tag":149,"props":1308,"children":1309},{"style":189},[1310],{"type":50,"value":350},{"type":41,"tag":149,"props":1312,"children":1313},{"style":162},[1314],{"type":50,"value":197},{"type":41,"tag":149,"props":1316,"children":1317},{"style":162},[1318],{"type":50,"value":176},{"type":41,"tag":149,"props":1320,"children":1321},{"style":168},[1322],{"type":50,"value":120},{"type":41,"tag":149,"props":1324,"children":1325},{"style":162},[1326],{"type":50,"value":291},{"type":41,"tag":149,"props":1328,"children":1329},{"class":151,"line":211},[1330,1334,1338,1342,1346,1351,1355,1360,1365,1369,1374],{"type":41,"tag":149,"props":1331,"children":1332},{"style":297},[1333],{"type":50,"value":300},{"type":41,"tag":149,"props":1335,"children":1336},{"style":162},[1337],{"type":50,"value":165},{"type":41,"tag":149,"props":1339,"children":1340},{"style":168},[1341],{"type":50,"value":995},{"type":41,"tag":149,"props":1343,"children":1344},{"style":162},[1345],{"type":50,"value":261},{"type":41,"tag":149,"props":1347,"children":1348},{"style":168},[1349],{"type":50,"value":1350}," requestHandler ",{"type":41,"tag":149,"props":1352,"children":1353},{"style":162},[1354],{"type":50,"value":1014},{"type":41,"tag":149,"props":1356,"children":1357},{"style":162},[1358],{"type":50,"value":1359}," =",{"type":41,"tag":149,"props":1361,"children":1362},{"style":168},[1363],{"type":50,"value":1364}," east",{"type":41,"tag":149,"props":1366,"children":1367},{"style":162},[1368],{"type":50,"value":398},{"type":41,"tag":149,"props":1370,"children":1371},{"style":168},[1372],{"type":50,"value":1373},"config",{"type":41,"tag":149,"props":1375,"children":1376},{"style":162},[1377],{"type":50,"value":291},{"type":41,"tag":149,"props":1379,"children":1380},{"class":151,"line":369},[1381,1385,1390,1394,1398,1402,1406,1410,1414,1418,1422,1427,1431,1435,1439,1443,1447,1451,1455],{"type":41,"tag":149,"props":1382,"children":1383},{"style":297},[1384],{"type":50,"value":300},{"type":41,"tag":149,"props":1386,"children":1387},{"style":168},[1388],{"type":50,"value":1389}," west ",{"type":41,"tag":149,"props":1391,"children":1392},{"style":162},[1393],{"type":50,"value":310},{"type":41,"tag":149,"props":1395,"children":1396},{"style":162},[1397],{"type":50,"value":315},{"type":41,"tag":149,"props":1399,"children":1400},{"style":318},[1401],{"type":50,"value":171},{"type":41,"tag":149,"props":1403,"children":1404},{"style":168},[1405],{"type":50,"value":325},{"type":41,"tag":149,"props":1407,"children":1408},{"style":162},[1409],{"type":50,"value":330},{"type":41,"tag":149,"props":1411,"children":1412},{"style":333},[1413],{"type":50,"value":336},{"type":41,"tag":149,"props":1415,"children":1416},{"style":162},[1417],{"type":50,"value":341},{"type":41,"tag":149,"props":1419,"children":1420},{"style":162},[1421],{"type":50,"value":186},{"type":41,"tag":149,"props":1423,"children":1424},{"style":189},[1425],{"type":50,"value":1426},"us-west-2",{"type":41,"tag":149,"props":1428,"children":1429},{"style":162},[1430],{"type":50,"value":197},{"type":41,"tag":149,"props":1432,"children":1433},{"style":162},[1434],{"type":50,"value":261},{"type":41,"tag":149,"props":1436,"children":1437},{"style":168},[1438],{"type":50,"value":995},{"type":41,"tag":149,"props":1440,"children":1441},{"style":162},[1442],{"type":50,"value":261},{"type":41,"tag":149,"props":1444,"children":1445},{"style":168},[1446],{"type":50,"value":1350},{"type":41,"tag":149,"props":1448,"children":1449},{"style":162},[1450],{"type":50,"value":1014},{"type":41,"tag":149,"props":1452,"children":1453},{"style":168},[1454],{"type":50,"value":120},{"type":41,"tag":149,"props":1456,"children":1457},{"style":162},[1458],{"type":50,"value":291},{"type":41,"tag":46,"props":1460,"children":1461},{},[1462,1464,1470],{"type":50,"value":1463},"For all providers (Cognito, SSO, web identity, custom chains, STS region priority) → see ",{"type":41,"tag":75,"props":1465,"children":1467},{"className":1466},[],[1468],{"type":50,"value":1469},"references\u002Fcredentials.md",{"type":50,"value":398},{"type":41,"tag":60,"props":1472,"children":1474},{"id":1473},"streams-eg-s3-getobject-body",[1475],{"type":50,"value":1476},"Streams (e.g. S3 GetObject Body)",{"type":41,"tag":46,"props":1478,"children":1479},{},[1480,1485],{"type":41,"tag":228,"props":1481,"children":1482},{},[1483],{"type":50,"value":1484},"Always read or discard streaming responses",{"type":50,"value":1486}," — unread streams leave sockets open (socket exhaustion):",{"type":41,"tag":138,"props":1488,"children":1490},{"className":140,"code":1489,"language":142,"meta":143,"style":143},"const { Body } = await client.send(new GetObjectCommand({ Bucket: \"b\", Key: \"k\" }));\nconst str = await Body.transformToString();       \u002F\u002F read as string\nconst bytes = await Body.transformToByteArray();  \u002F\u002F read as Uint8Array\n\u002F\u002F or discard:\nawait (Body.destroy?.() ?? Body.cancel?.());\n",[1491],{"type":41,"tag":75,"props":1492,"children":1493},{"__ignoreMap":143},[1494,1610,1658,1704,1712],{"type":41,"tag":149,"props":1495,"children":1496},{"class":151,"line":152},[1497,1501,1505,1510,1514,1518,1522,1526,1530,1534,1538,1542,1546,1550,1554,1558,1562,1566,1570,1574,1578,1582,1586,1590,1594,1598,1602,1606],{"type":41,"tag":149,"props":1498,"children":1499},{"style":297},[1500],{"type":50,"value":300},{"type":41,"tag":149,"props":1502,"children":1503},{"style":162},[1504],{"type":50,"value":165},{"type":41,"tag":149,"props":1506,"children":1507},{"style":168},[1508],{"type":50,"value":1509}," Body ",{"type":41,"tag":149,"props":1511,"children":1512},{"style":162},[1513],{"type":50,"value":1014},{"type":41,"tag":149,"props":1515,"children":1516},{"style":162},[1517],{"type":50,"value":1359},{"type":41,"tag":149,"props":1519,"children":1520},{"style":156},[1521],{"type":50,"value":388},{"type":41,"tag":149,"props":1523,"children":1524},{"style":168},[1525],{"type":50,"value":393},{"type":41,"tag":149,"props":1527,"children":1528},{"style":162},[1529],{"type":50,"value":398},{"type":41,"tag":149,"props":1531,"children":1532},{"style":318},[1533],{"type":50,"value":403},{"type":41,"tag":149,"props":1535,"children":1536},{"style":168},[1537],{"type":50,"value":325},{"type":41,"tag":149,"props":1539,"children":1540},{"style":162},[1541],{"type":50,"value":412},{"type":41,"tag":149,"props":1543,"children":1544},{"style":318},[1545],{"type":50,"value":266},{"type":41,"tag":149,"props":1547,"children":1548},{"style":168},[1549],{"type":50,"value":325},{"type":41,"tag":149,"props":1551,"children":1552},{"style":162},[1553],{"type":50,"value":330},{"type":41,"tag":149,"props":1555,"children":1556},{"style":333},[1557],{"type":50,"value":429},{"type":41,"tag":149,"props":1559,"children":1560},{"style":162},[1561],{"type":50,"value":341},{"type":41,"tag":149,"props":1563,"children":1564},{"style":162},[1565],{"type":50,"value":186},{"type":41,"tag":149,"props":1567,"children":1568},{"style":189},[1569],{"type":50,"value":442},{"type":41,"tag":149,"props":1571,"children":1572},{"style":162},[1573],{"type":50,"value":197},{"type":41,"tag":149,"props":1575,"children":1576},{"style":162},[1577],{"type":50,"value":261},{"type":41,"tag":149,"props":1579,"children":1580},{"style":333},[1581],{"type":50,"value":455},{"type":41,"tag":149,"props":1583,"children":1584},{"style":162},[1585],{"type":50,"value":341},{"type":41,"tag":149,"props":1587,"children":1588},{"style":162},[1589],{"type":50,"value":186},{"type":41,"tag":149,"props":1591,"children":1592},{"style":189},[1593],{"type":50,"value":468},{"type":41,"tag":149,"props":1595,"children":1596},{"style":162},[1597],{"type":50,"value":197},{"type":41,"tag":149,"props":1599,"children":1600},{"style":162},[1601],{"type":50,"value":176},{"type":41,"tag":149,"props":1603,"children":1604},{"style":168},[1605],{"type":50,"value":481},{"type":41,"tag":149,"props":1607,"children":1608},{"style":162},[1609],{"type":50,"value":291},{"type":41,"tag":149,"props":1611,"children":1612},{"class":151,"line":211},[1613,1617,1622,1626,1630,1635,1639,1644,1649,1653],{"type":41,"tag":149,"props":1614,"children":1615},{"style":297},[1616],{"type":50,"value":300},{"type":41,"tag":149,"props":1618,"children":1619},{"style":168},[1620],{"type":50,"value":1621}," str ",{"type":41,"tag":149,"props":1623,"children":1624},{"style":162},[1625],{"type":50,"value":310},{"type":41,"tag":149,"props":1627,"children":1628},{"style":156},[1629],{"type":50,"value":388},{"type":41,"tag":149,"props":1631,"children":1632},{"style":168},[1633],{"type":50,"value":1634}," Body",{"type":41,"tag":149,"props":1636,"children":1637},{"style":162},[1638],{"type":50,"value":398},{"type":41,"tag":149,"props":1640,"children":1641},{"style":318},[1642],{"type":50,"value":1643},"transformToString",{"type":41,"tag":149,"props":1645,"children":1646},{"style":168},[1647],{"type":50,"value":1648},"()",{"type":41,"tag":149,"props":1650,"children":1651},{"style":162},[1652],{"type":50,"value":202},{"type":41,"tag":149,"props":1654,"children":1655},{"style":205},[1656],{"type":50,"value":1657},"       \u002F\u002F read as string\n",{"type":41,"tag":149,"props":1659,"children":1660},{"class":151,"line":369},[1661,1665,1670,1674,1678,1682,1686,1691,1695,1699],{"type":41,"tag":149,"props":1662,"children":1663},{"style":297},[1664],{"type":50,"value":300},{"type":41,"tag":149,"props":1666,"children":1667},{"style":168},[1668],{"type":50,"value":1669}," bytes ",{"type":41,"tag":149,"props":1671,"children":1672},{"style":162},[1673],{"type":50,"value":310},{"type":41,"tag":149,"props":1675,"children":1676},{"style":156},[1677],{"type":50,"value":388},{"type":41,"tag":149,"props":1679,"children":1680},{"style":168},[1681],{"type":50,"value":1634},{"type":41,"tag":149,"props":1683,"children":1684},{"style":162},[1685],{"type":50,"value":398},{"type":41,"tag":149,"props":1687,"children":1688},{"style":318},[1689],{"type":50,"value":1690},"transformToByteArray",{"type":41,"tag":149,"props":1692,"children":1693},{"style":168},[1694],{"type":50,"value":1648},{"type":41,"tag":149,"props":1696,"children":1697},{"style":162},[1698],{"type":50,"value":202},{"type":41,"tag":149,"props":1700,"children":1701},{"style":205},[1702],{"type":50,"value":1703},"  \u002F\u002F read as Uint8Array\n",{"type":41,"tag":149,"props":1705,"children":1706},{"class":151,"line":1034},[1707],{"type":41,"tag":149,"props":1708,"children":1709},{"style":205},[1710],{"type":50,"value":1711},"\u002F\u002F or discard:\n",{"type":41,"tag":149,"props":1713,"children":1714},{"class":151,"line":1043},[1715,1720,1725,1729,1734,1739,1743,1748,1752,1756,1761,1765,1770],{"type":41,"tag":149,"props":1716,"children":1717},{"style":156},[1718],{"type":50,"value":1719},"await",{"type":41,"tag":149,"props":1721,"children":1722},{"style":168},[1723],{"type":50,"value":1724}," (Body",{"type":41,"tag":149,"props":1726,"children":1727},{"style":162},[1728],{"type":50,"value":398},{"type":41,"tag":149,"props":1730,"children":1731},{"style":318},[1732],{"type":50,"value":1733},"destroy",{"type":41,"tag":149,"props":1735,"children":1736},{"style":162},[1737],{"type":50,"value":1738},"?.",{"type":41,"tag":149,"props":1740,"children":1741},{"style":168},[1742],{"type":50,"value":1009},{"type":41,"tag":149,"props":1744,"children":1745},{"style":162},[1746],{"type":50,"value":1747},"??",{"type":41,"tag":149,"props":1749,"children":1750},{"style":168},[1751],{"type":50,"value":1634},{"type":41,"tag":149,"props":1753,"children":1754},{"style":162},[1755],{"type":50,"value":398},{"type":41,"tag":149,"props":1757,"children":1758},{"style":318},[1759],{"type":50,"value":1760},"cancel",{"type":41,"tag":149,"props":1762,"children":1763},{"style":162},[1764],{"type":50,"value":1738},{"type":41,"tag":149,"props":1766,"children":1767},{"style":168},[1768],{"type":50,"value":1769},"())",{"type":41,"tag":149,"props":1771,"children":1772},{"style":162},[1773],{"type":50,"value":291},{"type":41,"tag":46,"props":1775,"children":1776},{},[1777],{"type":50,"value":1778},"Streams can only be read once.",{"type":41,"tag":60,"props":1780,"children":1782},{"id":1781},"paginators",[1783],{"type":50,"value":1784},"Paginators",{"type":41,"tag":46,"props":1786,"children":1787},{},[1788,1790,1796],{"type":50,"value":1789},"Use ",{"type":41,"tag":75,"props":1791,"children":1793},{"className":1792},[],[1794],{"type":50,"value":1795},"paginate*",{"type":50,"value":1797}," functions instead of manual token handling:",{"type":41,"tag":138,"props":1799,"children":1801},{"className":140,"code":1800,"language":142,"meta":143,"style":143},"import { DynamoDBClient, paginateListTables } from \"@aws-sdk\u002Fclient-dynamodb\";\n\nconst client = new DynamoDBClient({});\n\nconst tableNames = [];\nfor await (const page of paginateListTables({ client }, {})) {\n  \u002F\u002F page contains a single paginated output.\n  tableNames.push(...page.TableNames);\n}\n",[1802],{"type":41,"tag":75,"props":1803,"children":1804},{"__ignoreMap":143},[1805,1854,1861,1901,1908,1933,1999,2007,2055],{"type":41,"tag":149,"props":1806,"children":1807},{"class":151,"line":152},[1808,1812,1816,1820,1824,1829,1833,1837,1841,1846,1850],{"type":41,"tag":149,"props":1809,"children":1810},{"style":156},[1811],{"type":50,"value":159},{"type":41,"tag":149,"props":1813,"children":1814},{"style":162},[1815],{"type":50,"value":165},{"type":41,"tag":149,"props":1817,"children":1818},{"style":168},[1819],{"type":50,"value":857},{"type":41,"tag":149,"props":1821,"children":1822},{"style":162},[1823],{"type":50,"value":261},{"type":41,"tag":149,"props":1825,"children":1826},{"style":168},[1827],{"type":50,"value":1828}," paginateListTables",{"type":41,"tag":149,"props":1830,"children":1831},{"style":162},[1832],{"type":50,"value":176},{"type":41,"tag":149,"props":1834,"children":1835},{"style":156},[1836],{"type":50,"value":181},{"type":41,"tag":149,"props":1838,"children":1839},{"style":162},[1840],{"type":50,"value":186},{"type":41,"tag":149,"props":1842,"children":1843},{"style":189},[1844],{"type":50,"value":1845},"@aws-sdk\u002Fclient-dynamodb",{"type":41,"tag":149,"props":1847,"children":1848},{"style":162},[1849],{"type":50,"value":197},{"type":41,"tag":149,"props":1851,"children":1852},{"style":162},[1853],{"type":50,"value":291},{"type":41,"tag":149,"props":1855,"children":1856},{"class":151,"line":211},[1857],{"type":41,"tag":149,"props":1858,"children":1859},{"emptyLinePlaceholder":1028},[1860],{"type":50,"value":1031},{"type":41,"tag":149,"props":1862,"children":1863},{"class":151,"line":369},[1864,1868,1872,1876,1880,1884,1888,1893,1897],{"type":41,"tag":149,"props":1865,"children":1866},{"style":297},[1867],{"type":50,"value":300},{"type":41,"tag":149,"props":1869,"children":1870},{"style":168},[1871],{"type":50,"value":305},{"type":41,"tag":149,"props":1873,"children":1874},{"style":162},[1875],{"type":50,"value":310},{"type":41,"tag":149,"props":1877,"children":1878},{"style":162},[1879],{"type":50,"value":315},{"type":41,"tag":149,"props":1881,"children":1882},{"style":318},[1883],{"type":50,"value":857},{"type":41,"tag":149,"props":1885,"children":1886},{"style":168},[1887],{"type":50,"value":325},{"type":41,"tag":149,"props":1889,"children":1890},{"style":162},[1891],{"type":50,"value":1892},"{}",{"type":41,"tag":149,"props":1894,"children":1895},{"style":168},[1896],{"type":50,"value":120},{"type":41,"tag":149,"props":1898,"children":1899},{"style":162},[1900],{"type":50,"value":291},{"type":41,"tag":149,"props":1902,"children":1903},{"class":151,"line":1034},[1904],{"type":41,"tag":149,"props":1905,"children":1906},{"emptyLinePlaceholder":1028},[1907],{"type":50,"value":1031},{"type":41,"tag":149,"props":1909,"children":1910},{"class":151,"line":1043},[1911,1915,1920,1924,1929],{"type":41,"tag":149,"props":1912,"children":1913},{"style":297},[1914],{"type":50,"value":300},{"type":41,"tag":149,"props":1916,"children":1917},{"style":168},[1918],{"type":50,"value":1919}," tableNames ",{"type":41,"tag":149,"props":1921,"children":1922},{"style":162},[1923],{"type":50,"value":310},{"type":41,"tag":149,"props":1925,"children":1926},{"style":168},[1927],{"type":50,"value":1928}," []",{"type":41,"tag":149,"props":1930,"children":1931},{"style":162},[1932],{"type":50,"value":291},{"type":41,"tag":149,"props":1934,"children":1935},{"class":151,"line":1076},[1936,1941,1945,1950,1954,1959,1964,1968,1972,1976,1980,1985,1990,1995],{"type":41,"tag":149,"props":1937,"children":1938},{"style":156},[1939],{"type":50,"value":1940},"for",{"type":41,"tag":149,"props":1942,"children":1943},{"style":156},[1944],{"type":50,"value":388},{"type":41,"tag":149,"props":1946,"children":1947},{"style":168},[1948],{"type":50,"value":1949}," (",{"type":41,"tag":149,"props":1951,"children":1952},{"style":297},[1953],{"type":50,"value":300},{"type":41,"tag":149,"props":1955,"children":1956},{"style":168},[1957],{"type":50,"value":1958}," page ",{"type":41,"tag":149,"props":1960,"children":1961},{"style":162},[1962],{"type":50,"value":1963},"of",{"type":41,"tag":149,"props":1965,"children":1966},{"style":318},[1967],{"type":50,"value":1828},{"type":41,"tag":149,"props":1969,"children":1970},{"style":168},[1971],{"type":50,"value":325},{"type":41,"tag":149,"props":1973,"children":1974},{"style":162},[1975],{"type":50,"value":330},{"type":41,"tag":149,"props":1977,"children":1978},{"style":168},[1979],{"type":50,"value":305},{"type":41,"tag":149,"props":1981,"children":1982},{"style":162},[1983],{"type":50,"value":1984},"},",{"type":41,"tag":149,"props":1986,"children":1987},{"style":162},[1988],{"type":50,"value":1989}," {}",{"type":41,"tag":149,"props":1991,"children":1992},{"style":168},[1993],{"type":50,"value":1994},")) ",{"type":41,"tag":149,"props":1996,"children":1997},{"style":162},[1998],{"type":50,"value":1073},{"type":41,"tag":149,"props":2000,"children":2001},{"class":151,"line":1154},[2002],{"type":41,"tag":149,"props":2003,"children":2004},{"style":205},[2005],{"type":50,"value":2006},"  \u002F\u002F page contains a single paginated output.\n",{"type":41,"tag":149,"props":2008,"children":2009},{"class":151,"line":1170},[2010,2015,2019,2024,2028,2033,2038,2042,2047,2051],{"type":41,"tag":149,"props":2011,"children":2012},{"style":168},[2013],{"type":50,"value":2014},"  tableNames",{"type":41,"tag":149,"props":2016,"children":2017},{"style":162},[2018],{"type":50,"value":398},{"type":41,"tag":149,"props":2020,"children":2021},{"style":318},[2022],{"type":50,"value":2023},"push",{"type":41,"tag":149,"props":2025,"children":2026},{"style":333},[2027],{"type":50,"value":325},{"type":41,"tag":149,"props":2029,"children":2030},{"style":162},[2031],{"type":50,"value":2032},"...",{"type":41,"tag":149,"props":2034,"children":2035},{"style":168},[2036],{"type":50,"value":2037},"page",{"type":41,"tag":149,"props":2039,"children":2040},{"style":162},[2041],{"type":50,"value":398},{"type":41,"tag":149,"props":2043,"children":2044},{"style":168},[2045],{"type":50,"value":2046},"TableNames",{"type":41,"tag":149,"props":2048,"children":2049},{"style":333},[2050],{"type":50,"value":120},{"type":41,"tag":149,"props":2052,"children":2053},{"style":162},[2054],{"type":50,"value":291},{"type":41,"tag":149,"props":2056,"children":2057},{"class":151,"line":1178},[2058],{"type":41,"tag":149,"props":2059,"children":2060},{"style":162},[2061],{"type":50,"value":2062},"}\n",{"type":41,"tag":60,"props":2064,"children":2066},{"id":2065},"dynamodb-documentclient",[2067],{"type":50,"value":2068},"DynamoDB DocumentClient",{"type":41,"tag":46,"props":2070,"children":2071},{},[2072,2073,2079],{"type":50,"value":1789},{"type":41,"tag":75,"props":2074,"children":2076},{"className":2075},[],[2077],{"type":50,"value":2078},"@aws-sdk\u002Flib-dynamodb",{"type":50,"value":2080}," to work with native JS types instead of AttributeValues:",{"type":41,"tag":138,"props":2082,"children":2084},{"className":140,"code":2083,"language":142,"meta":143,"style":143},"import { DynamoDBClient } from \"@aws-sdk\u002Fclient-dynamodb\";\nimport { DynamoDBDocumentClient, GetCommand, PutCommand } from \"@aws-sdk\u002Flib-dynamodb\";\n\nconst client = DynamoDBDocumentClient.from(new DynamoDBClient({}));\nawait client.send(new PutCommand({ TableName: \"T\", Item: { id: \"1\", name: \"Alice\" } }));\nconst { Item } = await client.send(new GetCommand({ TableName: \"T\", Key: { id: \"1\" } }));\n",[2085],{"type":41,"tag":75,"props":2086,"children":2087},{"__ignoreMap":143},[2088,2127,2185,2192,2248,2390],{"type":41,"tag":149,"props":2089,"children":2090},{"class":151,"line":152},[2091,2095,2099,2103,2107,2111,2115,2119,2123],{"type":41,"tag":149,"props":2092,"children":2093},{"style":156},[2094],{"type":50,"value":159},{"type":41,"tag":149,"props":2096,"children":2097},{"style":162},[2098],{"type":50,"value":165},{"type":41,"tag":149,"props":2100,"children":2101},{"style":168},[2102],{"type":50,"value":857},{"type":41,"tag":149,"props":2104,"children":2105},{"style":162},[2106],{"type":50,"value":176},{"type":41,"tag":149,"props":2108,"children":2109},{"style":156},[2110],{"type":50,"value":181},{"type":41,"tag":149,"props":2112,"children":2113},{"style":162},[2114],{"type":50,"value":186},{"type":41,"tag":149,"props":2116,"children":2117},{"style":189},[2118],{"type":50,"value":1845},{"type":41,"tag":149,"props":2120,"children":2121},{"style":162},[2122],{"type":50,"value":197},{"type":41,"tag":149,"props":2124,"children":2125},{"style":162},[2126],{"type":50,"value":291},{"type":41,"tag":149,"props":2128,"children":2129},{"class":151,"line":211},[2130,2134,2138,2143,2147,2152,2156,2161,2165,2169,2173,2177,2181],{"type":41,"tag":149,"props":2131,"children":2132},{"style":156},[2133],{"type":50,"value":159},{"type":41,"tag":149,"props":2135,"children":2136},{"style":162},[2137],{"type":50,"value":165},{"type":41,"tag":149,"props":2139,"children":2140},{"style":168},[2141],{"type":50,"value":2142}," DynamoDBDocumentClient",{"type":41,"tag":149,"props":2144,"children":2145},{"style":162},[2146],{"type":50,"value":261},{"type":41,"tag":149,"props":2148,"children":2149},{"style":168},[2150],{"type":50,"value":2151}," GetCommand",{"type":41,"tag":149,"props":2153,"children":2154},{"style":162},[2155],{"type":50,"value":261},{"type":41,"tag":149,"props":2157,"children":2158},{"style":168},[2159],{"type":50,"value":2160}," PutCommand",{"type":41,"tag":149,"props":2162,"children":2163},{"style":162},[2164],{"type":50,"value":176},{"type":41,"tag":149,"props":2166,"children":2167},{"style":156},[2168],{"type":50,"value":181},{"type":41,"tag":149,"props":2170,"children":2171},{"style":162},[2172],{"type":50,"value":186},{"type":41,"tag":149,"props":2174,"children":2175},{"style":189},[2176],{"type":50,"value":2078},{"type":41,"tag":149,"props":2178,"children":2179},{"style":162},[2180],{"type":50,"value":197},{"type":41,"tag":149,"props":2182,"children":2183},{"style":162},[2184],{"type":50,"value":291},{"type":41,"tag":149,"props":2186,"children":2187},{"class":151,"line":369},[2188],{"type":41,"tag":149,"props":2189,"children":2190},{"emptyLinePlaceholder":1028},[2191],{"type":50,"value":1031},{"type":41,"tag":149,"props":2193,"children":2194},{"class":151,"line":1034},[2195,2199,2203,2207,2211,2215,2220,2224,2228,2232,2236,2240,2244],{"type":41,"tag":149,"props":2196,"children":2197},{"style":297},[2198],{"type":50,"value":300},{"type":41,"tag":149,"props":2200,"children":2201},{"style":168},[2202],{"type":50,"value":305},{"type":41,"tag":149,"props":2204,"children":2205},{"style":162},[2206],{"type":50,"value":310},{"type":41,"tag":149,"props":2208,"children":2209},{"style":168},[2210],{"type":50,"value":2142},{"type":41,"tag":149,"props":2212,"children":2213},{"style":162},[2214],{"type":50,"value":398},{"type":41,"tag":149,"props":2216,"children":2217},{"style":318},[2218],{"type":50,"value":2219},"from",{"type":41,"tag":149,"props":2221,"children":2222},{"style":168},[2223],{"type":50,"value":325},{"type":41,"tag":149,"props":2225,"children":2226},{"style":162},[2227],{"type":50,"value":412},{"type":41,"tag":149,"props":2229,"children":2230},{"style":318},[2231],{"type":50,"value":857},{"type":41,"tag":149,"props":2233,"children":2234},{"style":168},[2235],{"type":50,"value":325},{"type":41,"tag":149,"props":2237,"children":2238},{"style":162},[2239],{"type":50,"value":1892},{"type":41,"tag":149,"props":2241,"children":2242},{"style":168},[2243],{"type":50,"value":481},{"type":41,"tag":149,"props":2245,"children":2246},{"style":162},[2247],{"type":50,"value":291},{"type":41,"tag":149,"props":2249,"children":2250},{"class":151,"line":1043},[2251,2255,2259,2263,2267,2271,2275,2279,2283,2287,2292,2296,2300,2305,2309,2313,2318,2322,2326,2331,2335,2339,2344,2348,2352,2357,2361,2365,2370,2374,2378,2382,2386],{"type":41,"tag":149,"props":2252,"children":2253},{"style":156},[2254],{"type":50,"value":1719},{"type":41,"tag":149,"props":2256,"children":2257},{"style":168},[2258],{"type":50,"value":393},{"type":41,"tag":149,"props":2260,"children":2261},{"style":162},[2262],{"type":50,"value":398},{"type":41,"tag":149,"props":2264,"children":2265},{"style":318},[2266],{"type":50,"value":403},{"type":41,"tag":149,"props":2268,"children":2269},{"style":168},[2270],{"type":50,"value":325},{"type":41,"tag":149,"props":2272,"children":2273},{"style":162},[2274],{"type":50,"value":412},{"type":41,"tag":149,"props":2276,"children":2277},{"style":318},[2278],{"type":50,"value":2160},{"type":41,"tag":149,"props":2280,"children":2281},{"style":168},[2282],{"type":50,"value":325},{"type":41,"tag":149,"props":2284,"children":2285},{"style":162},[2286],{"type":50,"value":330},{"type":41,"tag":149,"props":2288,"children":2289},{"style":333},[2290],{"type":50,"value":2291}," TableName",{"type":41,"tag":149,"props":2293,"children":2294},{"style":162},[2295],{"type":50,"value":341},{"type":41,"tag":149,"props":2297,"children":2298},{"style":162},[2299],{"type":50,"value":186},{"type":41,"tag":149,"props":2301,"children":2302},{"style":189},[2303],{"type":50,"value":2304},"T",{"type":41,"tag":149,"props":2306,"children":2307},{"style":162},[2308],{"type":50,"value":197},{"type":41,"tag":149,"props":2310,"children":2311},{"style":162},[2312],{"type":50,"value":261},{"type":41,"tag":149,"props":2314,"children":2315},{"style":333},[2316],{"type":50,"value":2317}," Item",{"type":41,"tag":149,"props":2319,"children":2320},{"style":162},[2321],{"type":50,"value":341},{"type":41,"tag":149,"props":2323,"children":2324},{"style":162},[2325],{"type":50,"value":165},{"type":41,"tag":149,"props":2327,"children":2328},{"style":333},[2329],{"type":50,"value":2330}," id",{"type":41,"tag":149,"props":2332,"children":2333},{"style":162},[2334],{"type":50,"value":341},{"type":41,"tag":149,"props":2336,"children":2337},{"style":162},[2338],{"type":50,"value":186},{"type":41,"tag":149,"props":2340,"children":2341},{"style":189},[2342],{"type":50,"value":2343},"1",{"type":41,"tag":149,"props":2345,"children":2346},{"style":162},[2347],{"type":50,"value":197},{"type":41,"tag":149,"props":2349,"children":2350},{"style":162},[2351],{"type":50,"value":261},{"type":41,"tag":149,"props":2353,"children":2354},{"style":333},[2355],{"type":50,"value":2356}," name",{"type":41,"tag":149,"props":2358,"children":2359},{"style":162},[2360],{"type":50,"value":341},{"type":41,"tag":149,"props":2362,"children":2363},{"style":162},[2364],{"type":50,"value":186},{"type":41,"tag":149,"props":2366,"children":2367},{"style":189},[2368],{"type":50,"value":2369},"Alice",{"type":41,"tag":149,"props":2371,"children":2372},{"style":162},[2373],{"type":50,"value":197},{"type":41,"tag":149,"props":2375,"children":2376},{"style":162},[2377],{"type":50,"value":176},{"type":41,"tag":149,"props":2379,"children":2380},{"style":162},[2381],{"type":50,"value":176},{"type":41,"tag":149,"props":2383,"children":2384},{"style":168},[2385],{"type":50,"value":481},{"type":41,"tag":149,"props":2387,"children":2388},{"style":162},[2389],{"type":50,"value":291},{"type":41,"tag":149,"props":2391,"children":2392},{"class":151,"line":1076},[2393,2397,2401,2406,2410,2414,2418,2422,2426,2430,2434,2438,2442,2446,2450,2454,2458,2462,2466,2470,2474,2478,2482,2486,2490,2494,2498,2502,2506,2510,2514,2518],{"type":41,"tag":149,"props":2394,"children":2395},{"style":297},[2396],{"type":50,"value":300},{"type":41,"tag":149,"props":2398,"children":2399},{"style":162},[2400],{"type":50,"value":165},{"type":41,"tag":149,"props":2402,"children":2403},{"style":168},[2404],{"type":50,"value":2405}," Item ",{"type":41,"tag":149,"props":2407,"children":2408},{"style":162},[2409],{"type":50,"value":1014},{"type":41,"tag":149,"props":2411,"children":2412},{"style":162},[2413],{"type":50,"value":1359},{"type":41,"tag":149,"props":2415,"children":2416},{"style":156},[2417],{"type":50,"value":388},{"type":41,"tag":149,"props":2419,"children":2420},{"style":168},[2421],{"type":50,"value":393},{"type":41,"tag":149,"props":2423,"children":2424},{"style":162},[2425],{"type":50,"value":398},{"type":41,"tag":149,"props":2427,"children":2428},{"style":318},[2429],{"type":50,"value":403},{"type":41,"tag":149,"props":2431,"children":2432},{"style":168},[2433],{"type":50,"value":325},{"type":41,"tag":149,"props":2435,"children":2436},{"style":162},[2437],{"type":50,"value":412},{"type":41,"tag":149,"props":2439,"children":2440},{"style":318},[2441],{"type":50,"value":2151},{"type":41,"tag":149,"props":2443,"children":2444},{"style":168},[2445],{"type":50,"value":325},{"type":41,"tag":149,"props":2447,"children":2448},{"style":162},[2449],{"type":50,"value":330},{"type":41,"tag":149,"props":2451,"children":2452},{"style":333},[2453],{"type":50,"value":2291},{"type":41,"tag":149,"props":2455,"children":2456},{"style":162},[2457],{"type":50,"value":341},{"type":41,"tag":149,"props":2459,"children":2460},{"style":162},[2461],{"type":50,"value":186},{"type":41,"tag":149,"props":2463,"children":2464},{"style":189},[2465],{"type":50,"value":2304},{"type":41,"tag":149,"props":2467,"children":2468},{"style":162},[2469],{"type":50,"value":197},{"type":41,"tag":149,"props":2471,"children":2472},{"style":162},[2473],{"type":50,"value":261},{"type":41,"tag":149,"props":2475,"children":2476},{"style":333},[2477],{"type":50,"value":455},{"type":41,"tag":149,"props":2479,"children":2480},{"style":162},[2481],{"type":50,"value":341},{"type":41,"tag":149,"props":2483,"children":2484},{"style":162},[2485],{"type":50,"value":165},{"type":41,"tag":149,"props":2487,"children":2488},{"style":333},[2489],{"type":50,"value":2330},{"type":41,"tag":149,"props":2491,"children":2492},{"style":162},[2493],{"type":50,"value":341},{"type":41,"tag":149,"props":2495,"children":2496},{"style":162},[2497],{"type":50,"value":186},{"type":41,"tag":149,"props":2499,"children":2500},{"style":189},[2501],{"type":50,"value":2343},{"type":41,"tag":149,"props":2503,"children":2504},{"style":162},[2505],{"type":50,"value":197},{"type":41,"tag":149,"props":2507,"children":2508},{"style":162},[2509],{"type":50,"value":176},{"type":41,"tag":149,"props":2511,"children":2512},{"style":162},[2513],{"type":50,"value":176},{"type":41,"tag":149,"props":2515,"children":2516},{"style":168},[2517],{"type":50,"value":481},{"type":41,"tag":149,"props":2519,"children":2520},{"style":162},[2521],{"type":50,"value":291},{"type":41,"tag":46,"props":2523,"children":2524},{},[2525,2527,2533],{"type":50,"value":2526},"For marshall options, large numbers (NumberValue), pagination, and aggregated client → see ",{"type":41,"tag":75,"props":2528,"children":2530},{"className":2529},[],[2531],{"type":50,"value":2532},"references\u002Fdynamodb.md",{"type":50,"value":398},{"type":41,"tag":60,"props":2535,"children":2537},{"id":2536},"s3-presigned-urls-multipart-upload-waiters",[2538],{"type":50,"value":2539},"S3: Presigned URLs, Multipart Upload, Waiters",{"type":41,"tag":138,"props":2541,"children":2543},{"className":140,"code":2542,"language":142,"meta":143,"style":143},"\u002F\u002F Presigned GET URL\nimport { getSignedUrl } from \"@aws-sdk\u002Fs3-request-presigner\";\nconst url = await getSignedUrl(client, new GetObjectCommand({ Bucket: \"b\", Key: \"k\" }), { expiresIn: 3600 });\n\n\u002F\u002F Multipart upload (large files \u002F streams)\nimport { Upload } from \"@aws-sdk\u002Flib-storage\";\nconst upload = new Upload({ client, params: { Bucket: \"b\", Key: \"k\", Body: stream } });\nawait upload.done();\n\n\u002F\u002F Waiters\nimport { waitUntilObjectExists } from \"@aws-sdk\u002Fclient-s3\";\nawait waitUntilObjectExists({ client, maxWaitTime: 120 }, { Bucket: \"b\", Key: \"k\" });\n",[2544],{"type":41,"tag":75,"props":2545,"children":2546},{"__ignoreMap":143},[2547,2555,2596,2731,2738,2746,2787,2916,2945,2952,2960,3001],{"type":41,"tag":149,"props":2548,"children":2549},{"class":151,"line":152},[2550],{"type":41,"tag":149,"props":2551,"children":2552},{"style":205},[2553],{"type":50,"value":2554},"\u002F\u002F Presigned GET URL\n",{"type":41,"tag":149,"props":2556,"children":2557},{"class":151,"line":211},[2558,2562,2566,2571,2575,2579,2583,2588,2592],{"type":41,"tag":149,"props":2559,"children":2560},{"style":156},[2561],{"type":50,"value":159},{"type":41,"tag":149,"props":2563,"children":2564},{"style":162},[2565],{"type":50,"value":165},{"type":41,"tag":149,"props":2567,"children":2568},{"style":168},[2569],{"type":50,"value":2570}," getSignedUrl",{"type":41,"tag":149,"props":2572,"children":2573},{"style":162},[2574],{"type":50,"value":176},{"type":41,"tag":149,"props":2576,"children":2577},{"style":156},[2578],{"type":50,"value":181},{"type":41,"tag":149,"props":2580,"children":2581},{"style":162},[2582],{"type":50,"value":186},{"type":41,"tag":149,"props":2584,"children":2585},{"style":189},[2586],{"type":50,"value":2587},"@aws-sdk\u002Fs3-request-presigner",{"type":41,"tag":149,"props":2589,"children":2590},{"style":162},[2591],{"type":50,"value":197},{"type":41,"tag":149,"props":2593,"children":2594},{"style":162},[2595],{"type":50,"value":291},{"type":41,"tag":149,"props":2597,"children":2598},{"class":151,"line":369},[2599,2603,2608,2612,2616,2620,2625,2629,2633,2637,2641,2645,2649,2653,2657,2661,2665,2669,2673,2677,2681,2685,2689,2693,2697,2701,2705,2710,2714,2719,2723,2727],{"type":41,"tag":149,"props":2600,"children":2601},{"style":297},[2602],{"type":50,"value":300},{"type":41,"tag":149,"props":2604,"children":2605},{"style":168},[2606],{"type":50,"value":2607}," url ",{"type":41,"tag":149,"props":2609,"children":2610},{"style":162},[2611],{"type":50,"value":310},{"type":41,"tag":149,"props":2613,"children":2614},{"style":156},[2615],{"type":50,"value":388},{"type":41,"tag":149,"props":2617,"children":2618},{"style":318},[2619],{"type":50,"value":2570},{"type":41,"tag":149,"props":2621,"children":2622},{"style":168},[2623],{"type":50,"value":2624},"(client",{"type":41,"tag":149,"props":2626,"children":2627},{"style":162},[2628],{"type":50,"value":261},{"type":41,"tag":149,"props":2630,"children":2631},{"style":162},[2632],{"type":50,"value":315},{"type":41,"tag":149,"props":2634,"children":2635},{"style":318},[2636],{"type":50,"value":266},{"type":41,"tag":149,"props":2638,"children":2639},{"style":168},[2640],{"type":50,"value":325},{"type":41,"tag":149,"props":2642,"children":2643},{"style":162},[2644],{"type":50,"value":330},{"type":41,"tag":149,"props":2646,"children":2647},{"style":333},[2648],{"type":50,"value":429},{"type":41,"tag":149,"props":2650,"children":2651},{"style":162},[2652],{"type":50,"value":341},{"type":41,"tag":149,"props":2654,"children":2655},{"style":162},[2656],{"type":50,"value":186},{"type":41,"tag":149,"props":2658,"children":2659},{"style":189},[2660],{"type":50,"value":442},{"type":41,"tag":149,"props":2662,"children":2663},{"style":162},[2664],{"type":50,"value":197},{"type":41,"tag":149,"props":2666,"children":2667},{"style":162},[2668],{"type":50,"value":261},{"type":41,"tag":149,"props":2670,"children":2671},{"style":333},[2672],{"type":50,"value":455},{"type":41,"tag":149,"props":2674,"children":2675},{"style":162},[2676],{"type":50,"value":341},{"type":41,"tag":149,"props":2678,"children":2679},{"style":162},[2680],{"type":50,"value":186},{"type":41,"tag":149,"props":2682,"children":2683},{"style":189},[2684],{"type":50,"value":468},{"type":41,"tag":149,"props":2686,"children":2687},{"style":162},[2688],{"type":50,"value":197},{"type":41,"tag":149,"props":2690,"children":2691},{"style":162},[2692],{"type":50,"value":176},{"type":41,"tag":149,"props":2694,"children":2695},{"style":168},[2696],{"type":50,"value":120},{"type":41,"tag":149,"props":2698,"children":2699},{"style":162},[2700],{"type":50,"value":261},{"type":41,"tag":149,"props":2702,"children":2703},{"style":162},[2704],{"type":50,"value":165},{"type":41,"tag":149,"props":2706,"children":2707},{"style":333},[2708],{"type":50,"value":2709}," expiresIn",{"type":41,"tag":149,"props":2711,"children":2712},{"style":162},[2713],{"type":50,"value":341},{"type":41,"tag":149,"props":2715,"children":2716},{"style":791},[2717],{"type":50,"value":2718}," 3600",{"type":41,"tag":149,"props":2720,"children":2721},{"style":162},[2722],{"type":50,"value":176},{"type":41,"tag":149,"props":2724,"children":2725},{"style":168},[2726],{"type":50,"value":120},{"type":41,"tag":149,"props":2728,"children":2729},{"style":162},[2730],{"type":50,"value":291},{"type":41,"tag":149,"props":2732,"children":2733},{"class":151,"line":1034},[2734],{"type":41,"tag":149,"props":2735,"children":2736},{"emptyLinePlaceholder":1028},[2737],{"type":50,"value":1031},{"type":41,"tag":149,"props":2739,"children":2740},{"class":151,"line":1043},[2741],{"type":41,"tag":149,"props":2742,"children":2743},{"style":205},[2744],{"type":50,"value":2745},"\u002F\u002F Multipart upload (large files \u002F streams)\n",{"type":41,"tag":149,"props":2747,"children":2748},{"class":151,"line":1076},[2749,2753,2757,2762,2766,2770,2774,2779,2783],{"type":41,"tag":149,"props":2750,"children":2751},{"style":156},[2752],{"type":50,"value":159},{"type":41,"tag":149,"props":2754,"children":2755},{"style":162},[2756],{"type":50,"value":165},{"type":41,"tag":149,"props":2758,"children":2759},{"style":168},[2760],{"type":50,"value":2761}," Upload",{"type":41,"tag":149,"props":2763,"children":2764},{"style":162},[2765],{"type":50,"value":176},{"type":41,"tag":149,"props":2767,"children":2768},{"style":156},[2769],{"type":50,"value":181},{"type":41,"tag":149,"props":2771,"children":2772},{"style":162},[2773],{"type":50,"value":186},{"type":41,"tag":149,"props":2775,"children":2776},{"style":189},[2777],{"type":50,"value":2778},"@aws-sdk\u002Flib-storage",{"type":41,"tag":149,"props":2780,"children":2781},{"style":162},[2782],{"type":50,"value":197},{"type":41,"tag":149,"props":2784,"children":2785},{"style":162},[2786],{"type":50,"value":291},{"type":41,"tag":149,"props":2788,"children":2789},{"class":151,"line":1154},[2790,2794,2799,2803,2807,2811,2815,2819,2823,2827,2831,2835,2839,2843,2847,2851,2855,2859,2863,2867,2871,2875,2879,2883,2887,2891,2895,2900,2904,2908,2912],{"type":41,"tag":149,"props":2791,"children":2792},{"style":297},[2793],{"type":50,"value":300},{"type":41,"tag":149,"props":2795,"children":2796},{"style":168},[2797],{"type":50,"value":2798}," upload ",{"type":41,"tag":149,"props":2800,"children":2801},{"style":162},[2802],{"type":50,"value":310},{"type":41,"tag":149,"props":2804,"children":2805},{"style":162},[2806],{"type":50,"value":315},{"type":41,"tag":149,"props":2808,"children":2809},{"style":318},[2810],{"type":50,"value":2761},{"type":41,"tag":149,"props":2812,"children":2813},{"style":168},[2814],{"type":50,"value":325},{"type":41,"tag":149,"props":2816,"children":2817},{"style":162},[2818],{"type":50,"value":330},{"type":41,"tag":149,"props":2820,"children":2821},{"style":168},[2822],{"type":50,"value":393},{"type":41,"tag":149,"props":2824,"children":2825},{"style":162},[2826],{"type":50,"value":261},{"type":41,"tag":149,"props":2828,"children":2829},{"style":333},[2830],{"type":50,"value":1104},{"type":41,"tag":149,"props":2832,"children":2833},{"style":162},[2834],{"type":50,"value":341},{"type":41,"tag":149,"props":2836,"children":2837},{"style":162},[2838],{"type":50,"value":165},{"type":41,"tag":149,"props":2840,"children":2841},{"style":333},[2842],{"type":50,"value":429},{"type":41,"tag":149,"props":2844,"children":2845},{"style":162},[2846],{"type":50,"value":341},{"type":41,"tag":149,"props":2848,"children":2849},{"style":162},[2850],{"type":50,"value":186},{"type":41,"tag":149,"props":2852,"children":2853},{"style":189},[2854],{"type":50,"value":442},{"type":41,"tag":149,"props":2856,"children":2857},{"style":162},[2858],{"type":50,"value":197},{"type":41,"tag":149,"props":2860,"children":2861},{"style":162},[2862],{"type":50,"value":261},{"type":41,"tag":149,"props":2864,"children":2865},{"style":333},[2866],{"type":50,"value":455},{"type":41,"tag":149,"props":2868,"children":2869},{"style":162},[2870],{"type":50,"value":341},{"type":41,"tag":149,"props":2872,"children":2873},{"style":162},[2874],{"type":50,"value":186},{"type":41,"tag":149,"props":2876,"children":2877},{"style":189},[2878],{"type":50,"value":468},{"type":41,"tag":149,"props":2880,"children":2881},{"style":162},[2882],{"type":50,"value":197},{"type":41,"tag":149,"props":2884,"children":2885},{"style":162},[2886],{"type":50,"value":261},{"type":41,"tag":149,"props":2888,"children":2889},{"style":333},[2890],{"type":50,"value":1634},{"type":41,"tag":149,"props":2892,"children":2893},{"style":162},[2894],{"type":50,"value":341},{"type":41,"tag":149,"props":2896,"children":2897},{"style":168},[2898],{"type":50,"value":2899}," stream ",{"type":41,"tag":149,"props":2901,"children":2902},{"style":162},[2903],{"type":50,"value":1014},{"type":41,"tag":149,"props":2905,"children":2906},{"style":162},[2907],{"type":50,"value":176},{"type":41,"tag":149,"props":2909,"children":2910},{"style":168},[2911],{"type":50,"value":120},{"type":41,"tag":149,"props":2913,"children":2914},{"style":162},[2915],{"type":50,"value":291},{"type":41,"tag":149,"props":2917,"children":2918},{"class":151,"line":1170},[2919,2923,2928,2932,2937,2941],{"type":41,"tag":149,"props":2920,"children":2921},{"style":156},[2922],{"type":50,"value":1719},{"type":41,"tag":149,"props":2924,"children":2925},{"style":168},[2926],{"type":50,"value":2927}," upload",{"type":41,"tag":149,"props":2929,"children":2930},{"style":162},[2931],{"type":50,"value":398},{"type":41,"tag":149,"props":2933,"children":2934},{"style":318},[2935],{"type":50,"value":2936},"done",{"type":41,"tag":149,"props":2938,"children":2939},{"style":168},[2940],{"type":50,"value":1648},{"type":41,"tag":149,"props":2942,"children":2943},{"style":162},[2944],{"type":50,"value":291},{"type":41,"tag":149,"props":2946,"children":2947},{"class":151,"line":1178},[2948],{"type":41,"tag":149,"props":2949,"children":2950},{"emptyLinePlaceholder":1028},[2951],{"type":50,"value":1031},{"type":41,"tag":149,"props":2953,"children":2954},{"class":151,"line":1187},[2955],{"type":41,"tag":149,"props":2956,"children":2957},{"style":205},[2958],{"type":50,"value":2959},"\u002F\u002F Waiters\n",{"type":41,"tag":149,"props":2961,"children":2963},{"class":151,"line":2962},11,[2964,2968,2972,2977,2981,2985,2989,2993,2997],{"type":41,"tag":149,"props":2965,"children":2966},{"style":156},[2967],{"type":50,"value":159},{"type":41,"tag":149,"props":2969,"children":2970},{"style":162},[2971],{"type":50,"value":165},{"type":41,"tag":149,"props":2973,"children":2974},{"style":168},[2975],{"type":50,"value":2976}," waitUntilObjectExists",{"type":41,"tag":149,"props":2978,"children":2979},{"style":162},[2980],{"type":50,"value":176},{"type":41,"tag":149,"props":2982,"children":2983},{"style":156},[2984],{"type":50,"value":181},{"type":41,"tag":149,"props":2986,"children":2987},{"style":162},[2988],{"type":50,"value":186},{"type":41,"tag":149,"props":2990,"children":2991},{"style":189},[2992],{"type":50,"value":192},{"type":41,"tag":149,"props":2994,"children":2995},{"style":162},[2996],{"type":50,"value":197},{"type":41,"tag":149,"props":2998,"children":2999},{"style":162},[3000],{"type":50,"value":291},{"type":41,"tag":149,"props":3002,"children":3004},{"class":151,"line":3003},12,[3005,3009,3013,3017,3021,3025,3029,3034,3038,3043,3048,3052,3056,3060,3064,3068,3072,3076,3080,3084,3088,3092,3096,3100,3104],{"type":41,"tag":149,"props":3006,"children":3007},{"style":156},[3008],{"type":50,"value":1719},{"type":41,"tag":149,"props":3010,"children":3011},{"style":318},[3012],{"type":50,"value":2976},{"type":41,"tag":149,"props":3014,"children":3015},{"style":168},[3016],{"type":50,"value":325},{"type":41,"tag":149,"props":3018,"children":3019},{"style":162},[3020],{"type":50,"value":330},{"type":41,"tag":149,"props":3022,"children":3023},{"style":168},[3024],{"type":50,"value":393},{"type":41,"tag":149,"props":3026,"children":3027},{"style":162},[3028],{"type":50,"value":261},{"type":41,"tag":149,"props":3030,"children":3031},{"style":333},[3032],{"type":50,"value":3033}," maxWaitTime",{"type":41,"tag":149,"props":3035,"children":3036},{"style":162},[3037],{"type":50,"value":341},{"type":41,"tag":149,"props":3039,"children":3040},{"style":791},[3041],{"type":50,"value":3042}," 120",{"type":41,"tag":149,"props":3044,"children":3045},{"style":162},[3046],{"type":50,"value":3047}," },",{"type":41,"tag":149,"props":3049,"children":3050},{"style":162},[3051],{"type":50,"value":165},{"type":41,"tag":149,"props":3053,"children":3054},{"style":333},[3055],{"type":50,"value":429},{"type":41,"tag":149,"props":3057,"children":3058},{"style":162},[3059],{"type":50,"value":341},{"type":41,"tag":149,"props":3061,"children":3062},{"style":162},[3063],{"type":50,"value":186},{"type":41,"tag":149,"props":3065,"children":3066},{"style":189},[3067],{"type":50,"value":442},{"type":41,"tag":149,"props":3069,"children":3070},{"style":162},[3071],{"type":50,"value":197},{"type":41,"tag":149,"props":3073,"children":3074},{"style":162},[3075],{"type":50,"value":261},{"type":41,"tag":149,"props":3077,"children":3078},{"style":333},[3079],{"type":50,"value":455},{"type":41,"tag":149,"props":3081,"children":3082},{"style":162},[3083],{"type":50,"value":341},{"type":41,"tag":149,"props":3085,"children":3086},{"style":162},[3087],{"type":50,"value":186},{"type":41,"tag":149,"props":3089,"children":3090},{"style":189},[3091],{"type":50,"value":468},{"type":41,"tag":149,"props":3093,"children":3094},{"style":162},[3095],{"type":50,"value":197},{"type":41,"tag":149,"props":3097,"children":3098},{"style":162},[3099],{"type":50,"value":176},{"type":41,"tag":149,"props":3101,"children":3102},{"style":168},[3103],{"type":50,"value":120},{"type":41,"tag":149,"props":3105,"children":3106},{"style":162},[3107],{"type":50,"value":291},{"type":41,"tag":46,"props":3109,"children":3110},{},[3111,3113,3119],{"type":50,"value":3112},"For presigned POST, signed headers, waiter options → see ",{"type":41,"tag":75,"props":3114,"children":3116},{"className":3115},[],[3117],{"type":50,"value":3118},"references\u002Fs3.md",{"type":50,"value":398},{"type":41,"tag":60,"props":3121,"children":3123},{"id":3122},"error-handling",[3124],{"type":50,"value":3125},"Error Handling",{"type":41,"tag":138,"props":3127,"children":3129},{"className":140,"code":3128,"language":142,"meta":143,"style":143},"import { S3ServiceException } from \"@aws-sdk\u002Fclient-s3\";\n\ntry {\n  await client.send(new GetObjectCommand({ Bucket: \"b\", Key: \"k\" }));\n} catch (e) {\n  if (e?.$metadata) {\n    \u002F\u002F SDK service error — has $metadata.httpStatusCode, e.name, e.$response\n    console.error(e.name, e.$metadata.httpStatusCode);\n  }\n}\n",[3130],{"type":41,"tag":75,"props":3131,"children":3132},{"__ignoreMap":143},[3133,3173,3180,3193,3289,3310,3345,3353,3421,3429],{"type":41,"tag":149,"props":3134,"children":3135},{"class":151,"line":152},[3136,3140,3144,3149,3153,3157,3161,3165,3169],{"type":41,"tag":149,"props":3137,"children":3138},{"style":156},[3139],{"type":50,"value":159},{"type":41,"tag":149,"props":3141,"children":3142},{"style":162},[3143],{"type":50,"value":165},{"type":41,"tag":149,"props":3145,"children":3146},{"style":168},[3147],{"type":50,"value":3148}," S3ServiceException",{"type":41,"tag":149,"props":3150,"children":3151},{"style":162},[3152],{"type":50,"value":176},{"type":41,"tag":149,"props":3154,"children":3155},{"style":156},[3156],{"type":50,"value":181},{"type":41,"tag":149,"props":3158,"children":3159},{"style":162},[3160],{"type":50,"value":186},{"type":41,"tag":149,"props":3162,"children":3163},{"style":189},[3164],{"type":50,"value":192},{"type":41,"tag":149,"props":3166,"children":3167},{"style":162},[3168],{"type":50,"value":197},{"type":41,"tag":149,"props":3170,"children":3171},{"style":162},[3172],{"type":50,"value":291},{"type":41,"tag":149,"props":3174,"children":3175},{"class":151,"line":211},[3176],{"type":41,"tag":149,"props":3177,"children":3178},{"emptyLinePlaceholder":1028},[3179],{"type":50,"value":1031},{"type":41,"tag":149,"props":3181,"children":3182},{"class":151,"line":369},[3183,3188],{"type":41,"tag":149,"props":3184,"children":3185},{"style":156},[3186],{"type":50,"value":3187},"try",{"type":41,"tag":149,"props":3189,"children":3190},{"style":162},[3191],{"type":50,"value":3192}," {\n",{"type":41,"tag":149,"props":3194,"children":3195},{"class":151,"line":1034},[3196,3201,3205,3209,3213,3217,3221,3225,3229,3233,3237,3241,3245,3249,3253,3257,3261,3265,3269,3273,3277,3281,3285],{"type":41,"tag":149,"props":3197,"children":3198},{"style":156},[3199],{"type":50,"value":3200},"  await",{"type":41,"tag":149,"props":3202,"children":3203},{"style":168},[3204],{"type":50,"value":393},{"type":41,"tag":149,"props":3206,"children":3207},{"style":162},[3208],{"type":50,"value":398},{"type":41,"tag":149,"props":3210,"children":3211},{"style":318},[3212],{"type":50,"value":403},{"type":41,"tag":149,"props":3214,"children":3215},{"style":333},[3216],{"type":50,"value":325},{"type":41,"tag":149,"props":3218,"children":3219},{"style":162},[3220],{"type":50,"value":412},{"type":41,"tag":149,"props":3222,"children":3223},{"style":318},[3224],{"type":50,"value":266},{"type":41,"tag":149,"props":3226,"children":3227},{"style":333},[3228],{"type":50,"value":325},{"type":41,"tag":149,"props":3230,"children":3231},{"style":162},[3232],{"type":50,"value":330},{"type":41,"tag":149,"props":3234,"children":3235},{"style":333},[3236],{"type":50,"value":429},{"type":41,"tag":149,"props":3238,"children":3239},{"style":162},[3240],{"type":50,"value":341},{"type":41,"tag":149,"props":3242,"children":3243},{"style":162},[3244],{"type":50,"value":186},{"type":41,"tag":149,"props":3246,"children":3247},{"style":189},[3248],{"type":50,"value":442},{"type":41,"tag":149,"props":3250,"children":3251},{"style":162},[3252],{"type":50,"value":197},{"type":41,"tag":149,"props":3254,"children":3255},{"style":162},[3256],{"type":50,"value":261},{"type":41,"tag":149,"props":3258,"children":3259},{"style":333},[3260],{"type":50,"value":455},{"type":41,"tag":149,"props":3262,"children":3263},{"style":162},[3264],{"type":50,"value":341},{"type":41,"tag":149,"props":3266,"children":3267},{"style":162},[3268],{"type":50,"value":186},{"type":41,"tag":149,"props":3270,"children":3271},{"style":189},[3272],{"type":50,"value":468},{"type":41,"tag":149,"props":3274,"children":3275},{"style":162},[3276],{"type":50,"value":197},{"type":41,"tag":149,"props":3278,"children":3279},{"style":162},[3280],{"type":50,"value":176},{"type":41,"tag":149,"props":3282,"children":3283},{"style":333},[3284],{"type":50,"value":481},{"type":41,"tag":149,"props":3286,"children":3287},{"style":162},[3288],{"type":50,"value":291},{"type":41,"tag":149,"props":3290,"children":3291},{"class":151,"line":1043},[3292,3296,3301,3306],{"type":41,"tag":149,"props":3293,"children":3294},{"style":162},[3295],{"type":50,"value":1014},{"type":41,"tag":149,"props":3297,"children":3298},{"style":156},[3299],{"type":50,"value":3300}," catch",{"type":41,"tag":149,"props":3302,"children":3303},{"style":168},[3304],{"type":50,"value":3305}," (e) ",{"type":41,"tag":149,"props":3307,"children":3308},{"style":162},[3309],{"type":50,"value":1073},{"type":41,"tag":149,"props":3311,"children":3312},{"class":151,"line":1076},[3313,3318,3322,3327,3331,3336,3341],{"type":41,"tag":149,"props":3314,"children":3315},{"style":156},[3316],{"type":50,"value":3317},"  if",{"type":41,"tag":149,"props":3319,"children":3320},{"style":333},[3321],{"type":50,"value":1949},{"type":41,"tag":149,"props":3323,"children":3324},{"style":168},[3325],{"type":50,"value":3326},"e",{"type":41,"tag":149,"props":3328,"children":3329},{"style":162},[3330],{"type":50,"value":1738},{"type":41,"tag":149,"props":3332,"children":3333},{"style":168},[3334],{"type":50,"value":3335},"$metadata",{"type":41,"tag":149,"props":3337,"children":3338},{"style":333},[3339],{"type":50,"value":3340},") ",{"type":41,"tag":149,"props":3342,"children":3343},{"style":162},[3344],{"type":50,"value":1073},{"type":41,"tag":149,"props":3346,"children":3347},{"class":151,"line":1154},[3348],{"type":41,"tag":149,"props":3349,"children":3350},{"style":205},[3351],{"type":50,"value":3352},"    \u002F\u002F SDK service error — has $metadata.httpStatusCode, e.name, e.$response\n",{"type":41,"tag":149,"props":3354,"children":3355},{"class":151,"line":1170},[3356,3361,3365,3370,3374,3378,3382,3387,3391,3396,3400,3404,3408,3413,3417],{"type":41,"tag":149,"props":3357,"children":3358},{"style":168},[3359],{"type":50,"value":3360},"    console",{"type":41,"tag":149,"props":3362,"children":3363},{"style":162},[3364],{"type":50,"value":398},{"type":41,"tag":149,"props":3366,"children":3367},{"style":318},[3368],{"type":50,"value":3369},"error",{"type":41,"tag":149,"props":3371,"children":3372},{"style":333},[3373],{"type":50,"value":325},{"type":41,"tag":149,"props":3375,"children":3376},{"style":168},[3377],{"type":50,"value":3326},{"type":41,"tag":149,"props":3379,"children":3380},{"style":162},[3381],{"type":50,"value":398},{"type":41,"tag":149,"props":3383,"children":3384},{"style":168},[3385],{"type":50,"value":3386},"name",{"type":41,"tag":149,"props":3388,"children":3389},{"style":162},[3390],{"type":50,"value":261},{"type":41,"tag":149,"props":3392,"children":3393},{"style":168},[3394],{"type":50,"value":3395}," e",{"type":41,"tag":149,"props":3397,"children":3398},{"style":162},[3399],{"type":50,"value":398},{"type":41,"tag":149,"props":3401,"children":3402},{"style":168},[3403],{"type":50,"value":3335},{"type":41,"tag":149,"props":3405,"children":3406},{"style":162},[3407],{"type":50,"value":398},{"type":41,"tag":149,"props":3409,"children":3410},{"style":168},[3411],{"type":50,"value":3412},"httpStatusCode",{"type":41,"tag":149,"props":3414,"children":3415},{"style":333},[3416],{"type":50,"value":120},{"type":41,"tag":149,"props":3418,"children":3419},{"style":162},[3420],{"type":50,"value":291},{"type":41,"tag":149,"props":3422,"children":3423},{"class":151,"line":1178},[3424],{"type":41,"tag":149,"props":3425,"children":3426},{"style":162},[3427],{"type":50,"value":3428},"  }\n",{"type":41,"tag":149,"props":3430,"children":3431},{"class":151,"line":1187},[3432],{"type":41,"tag":149,"props":3433,"children":3434},{"style":162},[3435],{"type":50,"value":2062},{"type":41,"tag":46,"props":3437,"children":3438},{},[3439,3441,3447,3449,3455,3457,3463],{"type":50,"value":3440},"Check ",{"type":41,"tag":75,"props":3442,"children":3444},{"className":3443},[],[3445],{"type":50,"value":3446},"e.name",{"type":50,"value":3448}," or ",{"type":41,"tag":75,"props":3450,"children":3452},{"className":3451},[],[3453],{"type":50,"value":3454},"instanceof",{"type":50,"value":3456}," for specific error types. See ",{"type":41,"tag":75,"props":3458,"children":3460},{"className":3459},[],[3461],{"type":50,"value":3462},"references\u002Ferror-handling.md",{"type":50,"value":3464}," for full patterns.",{"type":41,"tag":46,"props":3466,"children":3467},{},[3468,3470,3475,3477,3483],{"type":50,"value":3469},"For ",{"type":41,"tag":228,"props":3471,"children":3472},{},[3473],{"type":50,"value":3474},"runtime validation, serialization to non-default formats, or questions about what schemas are",{"type":50,"value":3476}," in jsv3 → see ",{"type":41,"tag":75,"props":3478,"children":3480},{"className":3479},[],[3481],{"type":50,"value":3482},"references\u002Fschemas.md",{"type":50,"value":398},{"type":41,"tag":60,"props":3485,"children":3487},{"id":3486},"performance-parallel-workloads",[3488],{"type":50,"value":3489},"Performance: Parallel Workloads",{"type":41,"tag":138,"props":3491,"children":3493},{"className":140,"code":3492,"language":142,"meta":143,"style":143},"\u002F\u002F Configure maxSockets to match your parallel batch size\nconst client = new S3Client({\n  requestHandler: { httpsAgent: { maxSockets: 50 } },\n  cacheMiddleware: true, \u002F\u002F skip if using custom middleware\n});\n",[3494],{"type":41,"tag":75,"props":3495,"children":3496},{"__ignoreMap":143},[3497,3505,3536,3588,3615],{"type":41,"tag":149,"props":3498,"children":3499},{"class":151,"line":152},[3500],{"type":41,"tag":149,"props":3501,"children":3502},{"style":205},[3503],{"type":50,"value":3504},"\u002F\u002F Configure maxSockets to match your parallel batch size\n",{"type":41,"tag":149,"props":3506,"children":3507},{"class":151,"line":211},[3508,3512,3516,3520,3524,3528,3532],{"type":41,"tag":149,"props":3509,"children":3510},{"style":297},[3511],{"type":50,"value":300},{"type":41,"tag":149,"props":3513,"children":3514},{"style":168},[3515],{"type":50,"value":305},{"type":41,"tag":149,"props":3517,"children":3518},{"style":162},[3519],{"type":50,"value":310},{"type":41,"tag":149,"props":3521,"children":3522},{"style":162},[3523],{"type":50,"value":315},{"type":41,"tag":149,"props":3525,"children":3526},{"style":318},[3527],{"type":50,"value":171},{"type":41,"tag":149,"props":3529,"children":3530},{"style":168},[3531],{"type":50,"value":325},{"type":41,"tag":149,"props":3533,"children":3534},{"style":162},[3535],{"type":50,"value":1073},{"type":41,"tag":149,"props":3537,"children":3538},{"class":151,"line":369},[3539,3544,3548,3552,3557,3561,3565,3570,3574,3579,3583],{"type":41,"tag":149,"props":3540,"children":3541},{"style":333},[3542],{"type":50,"value":3543},"  requestHandler",{"type":41,"tag":149,"props":3545,"children":3546},{"style":162},[3547],{"type":50,"value":341},{"type":41,"tag":149,"props":3549,"children":3550},{"style":162},[3551],{"type":50,"value":165},{"type":41,"tag":149,"props":3553,"children":3554},{"style":333},[3555],{"type":50,"value":3556}," httpsAgent",{"type":41,"tag":149,"props":3558,"children":3559},{"style":162},[3560],{"type":50,"value":341},{"type":41,"tag":149,"props":3562,"children":3563},{"style":162},[3564],{"type":50,"value":165},{"type":41,"tag":149,"props":3566,"children":3567},{"style":333},[3568],{"type":50,"value":3569}," maxSockets",{"type":41,"tag":149,"props":3571,"children":3572},{"style":162},[3573],{"type":50,"value":341},{"type":41,"tag":149,"props":3575,"children":3576},{"style":791},[3577],{"type":50,"value":3578}," 50",{"type":41,"tag":149,"props":3580,"children":3581},{"style":162},[3582],{"type":50,"value":176},{"type":41,"tag":149,"props":3584,"children":3585},{"style":162},[3586],{"type":50,"value":3587}," },\n",{"type":41,"tag":149,"props":3589,"children":3590},{"class":151,"line":1034},[3591,3596,3600,3606,3610],{"type":41,"tag":149,"props":3592,"children":3593},{"style":333},[3594],{"type":50,"value":3595},"  cacheMiddleware",{"type":41,"tag":149,"props":3597,"children":3598},{"style":162},[3599],{"type":50,"value":341},{"type":41,"tag":149,"props":3601,"children":3603},{"style":3602},"--shiki-light:#FF5370;--shiki-default:#FF9CAC;--shiki-dark:#FF9CAC",[3604],{"type":50,"value":3605}," true",{"type":41,"tag":149,"props":3607,"children":3608},{"style":162},[3609],{"type":50,"value":261},{"type":41,"tag":149,"props":3611,"children":3612},{"style":205},[3613],{"type":50,"value":3614}," \u002F\u002F skip if using custom middleware\n",{"type":41,"tag":149,"props":3616,"children":3617},{"class":151,"line":1043},[3618,3622,3626],{"type":41,"tag":149,"props":3619,"children":3620},{"style":162},[3621],{"type":50,"value":1014},{"type":41,"tag":149,"props":3623,"children":3624},{"style":168},[3625],{"type":50,"value":120},{"type":41,"tag":149,"props":3627,"children":3628},{"style":162},[3629],{"type":50,"value":291},{"type":41,"tag":46,"props":3631,"children":3632},{},[3633,3638,3640,3645,3647,3653],{"type":41,"tag":228,"props":3634,"children":3635},{},[3636],{"type":50,"value":3637},"Streaming deadlock warning",{"type":50,"value":3639},": with limited sockets, don't ",{"type":41,"tag":75,"props":3641,"children":3643},{"className":3642},[],[3644],{"type":50,"value":1719},{"type":50,"value":3646}," the request and stream body separately — chain them. See ",{"type":41,"tag":75,"props":3648,"children":3650},{"className":3649},[],[3651],{"type":50,"value":3652},"references\u002Fperformance.md",{"type":50,"value":398},{"type":41,"tag":60,"props":3655,"children":3657},{"id":3656},"middleware",[3658],{"type":50,"value":3659},"Middleware",{"type":41,"tag":46,"props":3661,"children":3662},{},[3663],{"type":50,"value":3664},"Add custom logic to all commands on a client:",{"type":41,"tag":138,"props":3666,"children":3668},{"className":140,"code":3667,"language":142,"meta":143,"style":143},"client.middlewareStack.add(\n  (next, context) => async (args) => {\n    console.log(context.commandName, args.input);\n    const result = await next(args);\n    return result;\n  },\n  { name: \"MyMiddleware\", step: \"build\", override: true }\n);\n",[3669],{"type":41,"tag":75,"props":3670,"children":3671},{"__ignoreMap":143},[3672,3703,3761,3821,3863,3879,3887,3964],{"type":41,"tag":149,"props":3673,"children":3674},{"class":151,"line":152},[3675,3680,3684,3689,3693,3698],{"type":41,"tag":149,"props":3676,"children":3677},{"style":168},[3678],{"type":50,"value":3679},"client",{"type":41,"tag":149,"props":3681,"children":3682},{"style":162},[3683],{"type":50,"value":398},{"type":41,"tag":149,"props":3685,"children":3686},{"style":168},[3687],{"type":50,"value":3688},"middlewareStack",{"type":41,"tag":149,"props":3690,"children":3691},{"style":162},[3692],{"type":50,"value":398},{"type":41,"tag":149,"props":3694,"children":3695},{"style":318},[3696],{"type":50,"value":3697},"add",{"type":41,"tag":149,"props":3699,"children":3700},{"style":168},[3701],{"type":50,"value":3702},"(\n",{"type":41,"tag":149,"props":3704,"children":3705},{"class":151,"line":211},[3706,3711,3717,3721,3726,3730,3735,3740,3744,3749,3753,3757],{"type":41,"tag":149,"props":3707,"children":3708},{"style":162},[3709],{"type":50,"value":3710},"  (",{"type":41,"tag":149,"props":3712,"children":3714},{"style":3713},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[3715],{"type":50,"value":3716},"next",{"type":41,"tag":149,"props":3718,"children":3719},{"style":162},[3720],{"type":50,"value":261},{"type":41,"tag":149,"props":3722,"children":3723},{"style":3713},[3724],{"type":50,"value":3725}," context",{"type":41,"tag":149,"props":3727,"children":3728},{"style":162},[3729],{"type":50,"value":120},{"type":41,"tag":149,"props":3731,"children":3732},{"style":297},[3733],{"type":50,"value":3734}," =>",{"type":41,"tag":149,"props":3736,"children":3737},{"style":297},[3738],{"type":50,"value":3739}," async",{"type":41,"tag":149,"props":3741,"children":3742},{"style":162},[3743],{"type":50,"value":1949},{"type":41,"tag":149,"props":3745,"children":3746},{"style":3713},[3747],{"type":50,"value":3748},"args",{"type":41,"tag":149,"props":3750,"children":3751},{"style":162},[3752],{"type":50,"value":120},{"type":41,"tag":149,"props":3754,"children":3755},{"style":297},[3756],{"type":50,"value":3734},{"type":41,"tag":149,"props":3758,"children":3759},{"style":162},[3760],{"type":50,"value":3192},{"type":41,"tag":149,"props":3762,"children":3763},{"class":151,"line":369},[3764,3768,3772,3777,3781,3786,3790,3795,3799,3804,3808,3813,3817],{"type":41,"tag":149,"props":3765,"children":3766},{"style":168},[3767],{"type":50,"value":3360},{"type":41,"tag":149,"props":3769,"children":3770},{"style":162},[3771],{"type":50,"value":398},{"type":41,"tag":149,"props":3773,"children":3774},{"style":318},[3775],{"type":50,"value":3776},"log",{"type":41,"tag":149,"props":3778,"children":3779},{"style":333},[3780],{"type":50,"value":325},{"type":41,"tag":149,"props":3782,"children":3783},{"style":168},[3784],{"type":50,"value":3785},"context",{"type":41,"tag":149,"props":3787,"children":3788},{"style":162},[3789],{"type":50,"value":398},{"type":41,"tag":149,"props":3791,"children":3792},{"style":168},[3793],{"type":50,"value":3794},"commandName",{"type":41,"tag":149,"props":3796,"children":3797},{"style":162},[3798],{"type":50,"value":261},{"type":41,"tag":149,"props":3800,"children":3801},{"style":168},[3802],{"type":50,"value":3803}," args",{"type":41,"tag":149,"props":3805,"children":3806},{"style":162},[3807],{"type":50,"value":398},{"type":41,"tag":149,"props":3809,"children":3810},{"style":168},[3811],{"type":50,"value":3812},"input",{"type":41,"tag":149,"props":3814,"children":3815},{"style":333},[3816],{"type":50,"value":120},{"type":41,"tag":149,"props":3818,"children":3819},{"style":162},[3820],{"type":50,"value":291},{"type":41,"tag":149,"props":3822,"children":3823},{"class":151,"line":1034},[3824,3829,3834,3838,3842,3847,3851,3855,3859],{"type":41,"tag":149,"props":3825,"children":3826},{"style":297},[3827],{"type":50,"value":3828},"    const",{"type":41,"tag":149,"props":3830,"children":3831},{"style":168},[3832],{"type":50,"value":3833}," result",{"type":41,"tag":149,"props":3835,"children":3836},{"style":162},[3837],{"type":50,"value":1359},{"type":41,"tag":149,"props":3839,"children":3840},{"style":156},[3841],{"type":50,"value":388},{"type":41,"tag":149,"props":3843,"children":3844},{"style":318},[3845],{"type":50,"value":3846}," next",{"type":41,"tag":149,"props":3848,"children":3849},{"style":333},[3850],{"type":50,"value":325},{"type":41,"tag":149,"props":3852,"children":3853},{"style":168},[3854],{"type":50,"value":3748},{"type":41,"tag":149,"props":3856,"children":3857},{"style":333},[3858],{"type":50,"value":120},{"type":41,"tag":149,"props":3860,"children":3861},{"style":162},[3862],{"type":50,"value":291},{"type":41,"tag":149,"props":3864,"children":3865},{"class":151,"line":1043},[3866,3871,3875],{"type":41,"tag":149,"props":3867,"children":3868},{"style":156},[3869],{"type":50,"value":3870},"    return",{"type":41,"tag":149,"props":3872,"children":3873},{"style":168},[3874],{"type":50,"value":3833},{"type":41,"tag":149,"props":3876,"children":3877},{"style":162},[3878],{"type":50,"value":291},{"type":41,"tag":149,"props":3880,"children":3881},{"class":151,"line":1076},[3882],{"type":41,"tag":149,"props":3883,"children":3884},{"style":162},[3885],{"type":50,"value":3886},"  },\n",{"type":41,"tag":149,"props":3888,"children":3889},{"class":151,"line":1154},[3890,3895,3899,3903,3907,3912,3916,3920,3925,3929,3933,3938,3942,3946,3951,3955,3959],{"type":41,"tag":149,"props":3891,"children":3892},{"style":162},[3893],{"type":50,"value":3894},"  {",{"type":41,"tag":149,"props":3896,"children":3897},{"style":333},[3898],{"type":50,"value":2356},{"type":41,"tag":149,"props":3900,"children":3901},{"style":162},[3902],{"type":50,"value":341},{"type":41,"tag":149,"props":3904,"children":3905},{"style":162},[3906],{"type":50,"value":186},{"type":41,"tag":149,"props":3908,"children":3909},{"style":189},[3910],{"type":50,"value":3911},"MyMiddleware",{"type":41,"tag":149,"props":3913,"children":3914},{"style":162},[3915],{"type":50,"value":197},{"type":41,"tag":149,"props":3917,"children":3918},{"style":162},[3919],{"type":50,"value":261},{"type":41,"tag":149,"props":3921,"children":3922},{"style":333},[3923],{"type":50,"value":3924}," step",{"type":41,"tag":149,"props":3926,"children":3927},{"style":162},[3928],{"type":50,"value":341},{"type":41,"tag":149,"props":3930,"children":3931},{"style":162},[3932],{"type":50,"value":186},{"type":41,"tag":149,"props":3934,"children":3935},{"style":189},[3936],{"type":50,"value":3937},"build",{"type":41,"tag":149,"props":3939,"children":3940},{"style":162},[3941],{"type":50,"value":197},{"type":41,"tag":149,"props":3943,"children":3944},{"style":162},[3945],{"type":50,"value":261},{"type":41,"tag":149,"props":3947,"children":3948},{"style":333},[3949],{"type":50,"value":3950}," override",{"type":41,"tag":149,"props":3952,"children":3953},{"style":162},[3954],{"type":50,"value":341},{"type":41,"tag":149,"props":3956,"children":3957},{"style":3602},[3958],{"type":50,"value":3605},{"type":41,"tag":149,"props":3960,"children":3961},{"style":162},[3962],{"type":50,"value":3963}," }\n",{"type":41,"tag":149,"props":3965,"children":3966},{"class":151,"line":1170},[3967,3971],{"type":41,"tag":149,"props":3968,"children":3969},{"style":168},[3970],{"type":50,"value":120},{"type":41,"tag":149,"props":3972,"children":3973},{"style":162},[3974],{"type":50,"value":291},{"type":41,"tag":46,"props":3976,"children":3977},{},[3978,3980,3986,3988,3994,3995,4000,4001,4007,4008],{"type":50,"value":3979},"Steps (in order): ",{"type":41,"tag":75,"props":3981,"children":3983},{"className":3982},[],[3984],{"type":50,"value":3985},"initialize",{"type":50,"value":3987}," → ",{"type":41,"tag":75,"props":3989,"children":3991},{"className":3990},[],[3992],{"type":50,"value":3993},"serialize",{"type":50,"value":3987},{"type":41,"tag":75,"props":3996,"children":3998},{"className":3997},[],[3999],{"type":50,"value":3937},{"type":50,"value":3987},{"type":41,"tag":75,"props":4002,"children":4004},{"className":4003},[],[4005],{"type":50,"value":4006},"finalizeRequest",{"type":50,"value":3987},{"type":41,"tag":75,"props":4009,"children":4011},{"className":4010},[],[4012],{"type":50,"value":4013},"deserialize",{"type":41,"tag":60,"props":4015,"children":4017},{"id":4016},"abort-controller",[4018],{"type":50,"value":4019},"Abort Controller",{"type":41,"tag":138,"props":4021,"children":4023},{"className":140,"code":4022,"language":142,"meta":143,"style":143},"const { AbortController } = require(\"@aws-sdk\u002Fabort-controller\");\nconst { S3Client, CreateBucketCommand } = require(\"@aws-sdk\u002Fclient-s3\");\n\nconst abortController = new AbortController();\nconst client = new S3Client(clientParams);\n\nconst requestPromise = client.send(new CreateBucketCommand(commandParams), {\n  abortSignal: abortController.signal,\n});\n\n\u002F\u002F The request will not be created if abortSignal is already aborted.\n\u002F\u002F The request will be destroyed if abortSignal is aborted before response is returned.\nabortController.abort();\n\n\u002F\u002F This will fail with \"AbortError\" as abortSignal is aborted.\nawait requestPromise;\n",[4024],{"type":41,"tag":75,"props":4025,"children":4026},{"__ignoreMap":143},[4027,4081,4141,4148,4181,4213,4220,4274,4304,4319,4326,4334,4342,4368,4376,4385],{"type":41,"tag":149,"props":4028,"children":4029},{"class":151,"line":152},[4030,4034,4038,4043,4047,4051,4056,4060,4064,4069,4073,4077],{"type":41,"tag":149,"props":4031,"children":4032},{"style":297},[4033],{"type":50,"value":300},{"type":41,"tag":149,"props":4035,"children":4036},{"style":162},[4037],{"type":50,"value":165},{"type":41,"tag":149,"props":4039,"children":4040},{"style":168},[4041],{"type":50,"value":4042}," AbortController ",{"type":41,"tag":149,"props":4044,"children":4045},{"style":162},[4046],{"type":50,"value":1014},{"type":41,"tag":149,"props":4048,"children":4049},{"style":162},[4050],{"type":50,"value":1359},{"type":41,"tag":149,"props":4052,"children":4053},{"style":318},[4054],{"type":50,"value":4055}," require",{"type":41,"tag":149,"props":4057,"children":4058},{"style":168},[4059],{"type":50,"value":325},{"type":41,"tag":149,"props":4061,"children":4062},{"style":162},[4063],{"type":50,"value":197},{"type":41,"tag":149,"props":4065,"children":4066},{"style":189},[4067],{"type":50,"value":4068},"@aws-sdk\u002Fabort-controller",{"type":41,"tag":149,"props":4070,"children":4071},{"style":162},[4072],{"type":50,"value":197},{"type":41,"tag":149,"props":4074,"children":4075},{"style":168},[4076],{"type":50,"value":120},{"type":41,"tag":149,"props":4078,"children":4079},{"style":162},[4080],{"type":50,"value":291},{"type":41,"tag":149,"props":4082,"children":4083},{"class":151,"line":211},[4084,4088,4092,4096,4100,4105,4109,4113,4117,4121,4125,4129,4133,4137],{"type":41,"tag":149,"props":4085,"children":4086},{"style":297},[4087],{"type":50,"value":300},{"type":41,"tag":149,"props":4089,"children":4090},{"style":162},[4091],{"type":50,"value":165},{"type":41,"tag":149,"props":4093,"children":4094},{"style":168},[4095],{"type":50,"value":171},{"type":41,"tag":149,"props":4097,"children":4098},{"style":162},[4099],{"type":50,"value":261},{"type":41,"tag":149,"props":4101,"children":4102},{"style":168},[4103],{"type":50,"value":4104}," CreateBucketCommand ",{"type":41,"tag":149,"props":4106,"children":4107},{"style":162},[4108],{"type":50,"value":1014},{"type":41,"tag":149,"props":4110,"children":4111},{"style":162},[4112],{"type":50,"value":1359},{"type":41,"tag":149,"props":4114,"children":4115},{"style":318},[4116],{"type":50,"value":4055},{"type":41,"tag":149,"props":4118,"children":4119},{"style":168},[4120],{"type":50,"value":325},{"type":41,"tag":149,"props":4122,"children":4123},{"style":162},[4124],{"type":50,"value":197},{"type":41,"tag":149,"props":4126,"children":4127},{"style":189},[4128],{"type":50,"value":192},{"type":41,"tag":149,"props":4130,"children":4131},{"style":162},[4132],{"type":50,"value":197},{"type":41,"tag":149,"props":4134,"children":4135},{"style":168},[4136],{"type":50,"value":120},{"type":41,"tag":149,"props":4138,"children":4139},{"style":162},[4140],{"type":50,"value":291},{"type":41,"tag":149,"props":4142,"children":4143},{"class":151,"line":369},[4144],{"type":41,"tag":149,"props":4145,"children":4146},{"emptyLinePlaceholder":1028},[4147],{"type":50,"value":1031},{"type":41,"tag":149,"props":4149,"children":4150},{"class":151,"line":1034},[4151,4155,4160,4164,4168,4173,4177],{"type":41,"tag":149,"props":4152,"children":4153},{"style":297},[4154],{"type":50,"value":300},{"type":41,"tag":149,"props":4156,"children":4157},{"style":168},[4158],{"type":50,"value":4159}," abortController ",{"type":41,"tag":149,"props":4161,"children":4162},{"style":162},[4163],{"type":50,"value":310},{"type":41,"tag":149,"props":4165,"children":4166},{"style":162},[4167],{"type":50,"value":315},{"type":41,"tag":149,"props":4169,"children":4170},{"style":318},[4171],{"type":50,"value":4172}," AbortController",{"type":41,"tag":149,"props":4174,"children":4175},{"style":168},[4176],{"type":50,"value":1648},{"type":41,"tag":149,"props":4178,"children":4179},{"style":162},[4180],{"type":50,"value":291},{"type":41,"tag":149,"props":4182,"children":4183},{"class":151,"line":1043},[4184,4188,4192,4196,4200,4204,4209],{"type":41,"tag":149,"props":4185,"children":4186},{"style":297},[4187],{"type":50,"value":300},{"type":41,"tag":149,"props":4189,"children":4190},{"style":168},[4191],{"type":50,"value":305},{"type":41,"tag":149,"props":4193,"children":4194},{"style":162},[4195],{"type":50,"value":310},{"type":41,"tag":149,"props":4197,"children":4198},{"style":162},[4199],{"type":50,"value":315},{"type":41,"tag":149,"props":4201,"children":4202},{"style":318},[4203],{"type":50,"value":171},{"type":41,"tag":149,"props":4205,"children":4206},{"style":168},[4207],{"type":50,"value":4208},"(clientParams)",{"type":41,"tag":149,"props":4210,"children":4211},{"style":162},[4212],{"type":50,"value":291},{"type":41,"tag":149,"props":4214,"children":4215},{"class":151,"line":1076},[4216],{"type":41,"tag":149,"props":4217,"children":4218},{"emptyLinePlaceholder":1028},[4219],{"type":50,"value":1031},{"type":41,"tag":149,"props":4221,"children":4222},{"class":151,"line":1154},[4223,4227,4232,4236,4240,4244,4248,4252,4256,4261,4266,4270],{"type":41,"tag":149,"props":4224,"children":4225},{"style":297},[4226],{"type":50,"value":300},{"type":41,"tag":149,"props":4228,"children":4229},{"style":168},[4230],{"type":50,"value":4231}," requestPromise ",{"type":41,"tag":149,"props":4233,"children":4234},{"style":162},[4235],{"type":50,"value":310},{"type":41,"tag":149,"props":4237,"children":4238},{"style":168},[4239],{"type":50,"value":393},{"type":41,"tag":149,"props":4241,"children":4242},{"style":162},[4243],{"type":50,"value":398},{"type":41,"tag":149,"props":4245,"children":4246},{"style":318},[4247],{"type":50,"value":403},{"type":41,"tag":149,"props":4249,"children":4250},{"style":168},[4251],{"type":50,"value":325},{"type":41,"tag":149,"props":4253,"children":4254},{"style":162},[4255],{"type":50,"value":412},{"type":41,"tag":149,"props":4257,"children":4258},{"style":318},[4259],{"type":50,"value":4260}," CreateBucketCommand",{"type":41,"tag":149,"props":4262,"children":4263},{"style":168},[4264],{"type":50,"value":4265},"(commandParams)",{"type":41,"tag":149,"props":4267,"children":4268},{"style":162},[4269],{"type":50,"value":261},{"type":41,"tag":149,"props":4271,"children":4272},{"style":162},[4273],{"type":50,"value":3192},{"type":41,"tag":149,"props":4275,"children":4276},{"class":151,"line":1170},[4277,4282,4286,4291,4295,4300],{"type":41,"tag":149,"props":4278,"children":4279},{"style":333},[4280],{"type":50,"value":4281},"  abortSignal",{"type":41,"tag":149,"props":4283,"children":4284},{"style":162},[4285],{"type":50,"value":341},{"type":41,"tag":149,"props":4287,"children":4288},{"style":168},[4289],{"type":50,"value":4290}," abortController",{"type":41,"tag":149,"props":4292,"children":4293},{"style":162},[4294],{"type":50,"value":398},{"type":41,"tag":149,"props":4296,"children":4297},{"style":168},[4298],{"type":50,"value":4299},"signal",{"type":41,"tag":149,"props":4301,"children":4302},{"style":162},[4303],{"type":50,"value":1151},{"type":41,"tag":149,"props":4305,"children":4306},{"class":151,"line":1178},[4307,4311,4315],{"type":41,"tag":149,"props":4308,"children":4309},{"style":162},[4310],{"type":50,"value":1014},{"type":41,"tag":149,"props":4312,"children":4313},{"style":168},[4314],{"type":50,"value":120},{"type":41,"tag":149,"props":4316,"children":4317},{"style":162},[4318],{"type":50,"value":291},{"type":41,"tag":149,"props":4320,"children":4321},{"class":151,"line":1187},[4322],{"type":41,"tag":149,"props":4323,"children":4324},{"emptyLinePlaceholder":1028},[4325],{"type":50,"value":1031},{"type":41,"tag":149,"props":4327,"children":4328},{"class":151,"line":2962},[4329],{"type":41,"tag":149,"props":4330,"children":4331},{"style":205},[4332],{"type":50,"value":4333},"\u002F\u002F The request will not be created if abortSignal is already aborted.\n",{"type":41,"tag":149,"props":4335,"children":4336},{"class":151,"line":3003},[4337],{"type":41,"tag":149,"props":4338,"children":4339},{"style":205},[4340],{"type":50,"value":4341},"\u002F\u002F The request will be destroyed if abortSignal is aborted before response is returned.\n",{"type":41,"tag":149,"props":4343,"children":4345},{"class":151,"line":4344},13,[4346,4351,4355,4360,4364],{"type":41,"tag":149,"props":4347,"children":4348},{"style":168},[4349],{"type":50,"value":4350},"abortController",{"type":41,"tag":149,"props":4352,"children":4353},{"style":162},[4354],{"type":50,"value":398},{"type":41,"tag":149,"props":4356,"children":4357},{"style":318},[4358],{"type":50,"value":4359},"abort",{"type":41,"tag":149,"props":4361,"children":4362},{"style":168},[4363],{"type":50,"value":1648},{"type":41,"tag":149,"props":4365,"children":4366},{"style":162},[4367],{"type":50,"value":291},{"type":41,"tag":149,"props":4369,"children":4371},{"class":151,"line":4370},14,[4372],{"type":41,"tag":149,"props":4373,"children":4374},{"emptyLinePlaceholder":1028},[4375],{"type":50,"value":1031},{"type":41,"tag":149,"props":4377,"children":4379},{"class":151,"line":4378},15,[4380],{"type":41,"tag":149,"props":4381,"children":4382},{"style":205},[4383],{"type":50,"value":4384},"\u002F\u002F This will fail with \"AbortError\" as abortSignal is aborted.\n",{"type":41,"tag":149,"props":4386,"children":4388},{"class":151,"line":4387},16,[4389,4393,4398],{"type":41,"tag":149,"props":4390,"children":4391},{"style":156},[4392],{"type":50,"value":1719},{"type":41,"tag":149,"props":4394,"children":4395},{"style":168},[4396],{"type":50,"value":4397}," requestPromise",{"type":41,"tag":149,"props":4399,"children":4400},{"style":162},[4401],{"type":50,"value":291},{"type":41,"tag":60,"props":4403,"children":4405},{"id":4404},"lambda-best-practices",[4406],{"type":50,"value":4407},"Lambda Best Practices",{"type":41,"tag":46,"props":4409,"children":4410},{},[4411,4413,4418,4420,4425],{"type":50,"value":4412},"Initialize clients ",{"type":41,"tag":228,"props":4414,"children":4415},{},[4416],{"type":50,"value":4417},"outside",{"type":50,"value":4419}," the handler (container reuse), make API calls ",{"type":41,"tag":228,"props":4421,"children":4422},{},[4423],{"type":50,"value":4424},"inside",{"type":50,"value":4426},". For one-time async setup, use a lazy init flag inside the handler:",{"type":41,"tag":138,"props":4428,"children":4430},{"className":140,"code":4429,"language":142,"meta":143,"style":143},"import { S3Client } from \"@aws-sdk\u002Fclient-s3\";\n\nconst client = new S3Client({}); \u002F\u002F outside — reused across invocations\n\nlet ready = false;\nexport const handler = async (event) => {\n  if (!ready) { await prepare(); ready = true; } \u002F\u002F lazy one-time setup inside handler\n  \u002F\u002F ... API calls here\n};\n",[4431],{"type":41,"tag":75,"props":4432,"children":4433},{"__ignoreMap":143},[4434,4473,4480,4524,4531,4557,4604,4676,4684],{"type":41,"tag":149,"props":4435,"children":4436},{"class":151,"line":152},[4437,4441,4445,4449,4453,4457,4461,4465,4469],{"type":41,"tag":149,"props":4438,"children":4439},{"style":156},[4440],{"type":50,"value":159},{"type":41,"tag":149,"props":4442,"children":4443},{"style":162},[4444],{"type":50,"value":165},{"type":41,"tag":149,"props":4446,"children":4447},{"style":168},[4448],{"type":50,"value":171},{"type":41,"tag":149,"props":4450,"children":4451},{"style":162},[4452],{"type":50,"value":176},{"type":41,"tag":149,"props":4454,"children":4455},{"style":156},[4456],{"type":50,"value":181},{"type":41,"tag":149,"props":4458,"children":4459},{"style":162},[4460],{"type":50,"value":186},{"type":41,"tag":149,"props":4462,"children":4463},{"style":189},[4464],{"type":50,"value":192},{"type":41,"tag":149,"props":4466,"children":4467},{"style":162},[4468],{"type":50,"value":197},{"type":41,"tag":149,"props":4470,"children":4471},{"style":162},[4472],{"type":50,"value":291},{"type":41,"tag":149,"props":4474,"children":4475},{"class":151,"line":211},[4476],{"type":41,"tag":149,"props":4477,"children":4478},{"emptyLinePlaceholder":1028},[4479],{"type":50,"value":1031},{"type":41,"tag":149,"props":4481,"children":4482},{"class":151,"line":369},[4483,4487,4491,4495,4499,4503,4507,4511,4515,4519],{"type":41,"tag":149,"props":4484,"children":4485},{"style":297},[4486],{"type":50,"value":300},{"type":41,"tag":149,"props":4488,"children":4489},{"style":168},[4490],{"type":50,"value":305},{"type":41,"tag":149,"props":4492,"children":4493},{"style":162},[4494],{"type":50,"value":310},{"type":41,"tag":149,"props":4496,"children":4497},{"style":162},[4498],{"type":50,"value":315},{"type":41,"tag":149,"props":4500,"children":4501},{"style":318},[4502],{"type":50,"value":171},{"type":41,"tag":149,"props":4504,"children":4505},{"style":168},[4506],{"type":50,"value":325},{"type":41,"tag":149,"props":4508,"children":4509},{"style":162},[4510],{"type":50,"value":1892},{"type":41,"tag":149,"props":4512,"children":4513},{"style":168},[4514],{"type":50,"value":120},{"type":41,"tag":149,"props":4516,"children":4517},{"style":162},[4518],{"type":50,"value":202},{"type":41,"tag":149,"props":4520,"children":4521},{"style":205},[4522],{"type":50,"value":4523}," \u002F\u002F outside — reused across invocations\n",{"type":41,"tag":149,"props":4525,"children":4526},{"class":151,"line":1034},[4527],{"type":41,"tag":149,"props":4528,"children":4529},{"emptyLinePlaceholder":1028},[4530],{"type":50,"value":1031},{"type":41,"tag":149,"props":4532,"children":4533},{"class":151,"line":1043},[4534,4539,4544,4548,4553],{"type":41,"tag":149,"props":4535,"children":4536},{"style":297},[4537],{"type":50,"value":4538},"let",{"type":41,"tag":149,"props":4540,"children":4541},{"style":168},[4542],{"type":50,"value":4543}," ready ",{"type":41,"tag":149,"props":4545,"children":4546},{"style":162},[4547],{"type":50,"value":310},{"type":41,"tag":149,"props":4549,"children":4550},{"style":3602},[4551],{"type":50,"value":4552}," false",{"type":41,"tag":149,"props":4554,"children":4555},{"style":162},[4556],{"type":50,"value":291},{"type":41,"tag":149,"props":4558,"children":4559},{"class":151,"line":1076},[4560,4565,4570,4575,4579,4583,4587,4592,4596,4600],{"type":41,"tag":149,"props":4561,"children":4562},{"style":156},[4563],{"type":50,"value":4564},"export",{"type":41,"tag":149,"props":4566,"children":4567},{"style":297},[4568],{"type":50,"value":4569}," const",{"type":41,"tag":149,"props":4571,"children":4572},{"style":168},[4573],{"type":50,"value":4574}," handler ",{"type":41,"tag":149,"props":4576,"children":4577},{"style":162},[4578],{"type":50,"value":310},{"type":41,"tag":149,"props":4580,"children":4581},{"style":297},[4582],{"type":50,"value":3739},{"type":41,"tag":149,"props":4584,"children":4585},{"style":162},[4586],{"type":50,"value":1949},{"type":41,"tag":149,"props":4588,"children":4589},{"style":3713},[4590],{"type":50,"value":4591},"event",{"type":41,"tag":149,"props":4593,"children":4594},{"style":162},[4595],{"type":50,"value":120},{"type":41,"tag":149,"props":4597,"children":4598},{"style":297},[4599],{"type":50,"value":3734},{"type":41,"tag":149,"props":4601,"children":4602},{"style":162},[4603],{"type":50,"value":3192},{"type":41,"tag":149,"props":4605,"children":4606},{"class":151,"line":1154},[4607,4611,4615,4620,4625,4629,4633,4637,4642,4646,4650,4655,4659,4663,4667,4671],{"type":41,"tag":149,"props":4608,"children":4609},{"style":156},[4610],{"type":50,"value":3317},{"type":41,"tag":149,"props":4612,"children":4613},{"style":333},[4614],{"type":50,"value":1949},{"type":41,"tag":149,"props":4616,"children":4617},{"style":162},[4618],{"type":50,"value":4619},"!",{"type":41,"tag":149,"props":4621,"children":4622},{"style":168},[4623],{"type":50,"value":4624},"ready",{"type":41,"tag":149,"props":4626,"children":4627},{"style":333},[4628],{"type":50,"value":3340},{"type":41,"tag":149,"props":4630,"children":4631},{"style":162},[4632],{"type":50,"value":330},{"type":41,"tag":149,"props":4634,"children":4635},{"style":156},[4636],{"type":50,"value":388},{"type":41,"tag":149,"props":4638,"children":4639},{"style":318},[4640],{"type":50,"value":4641}," prepare",{"type":41,"tag":149,"props":4643,"children":4644},{"style":333},[4645],{"type":50,"value":1648},{"type":41,"tag":149,"props":4647,"children":4648},{"style":162},[4649],{"type":50,"value":202},{"type":41,"tag":149,"props":4651,"children":4652},{"style":168},[4653],{"type":50,"value":4654}," ready",{"type":41,"tag":149,"props":4656,"children":4657},{"style":162},[4658],{"type":50,"value":1359},{"type":41,"tag":149,"props":4660,"children":4661},{"style":3602},[4662],{"type":50,"value":3605},{"type":41,"tag":149,"props":4664,"children":4665},{"style":162},[4666],{"type":50,"value":202},{"type":41,"tag":149,"props":4668,"children":4669},{"style":162},[4670],{"type":50,"value":176},{"type":41,"tag":149,"props":4672,"children":4673},{"style":205},[4674],{"type":50,"value":4675}," \u002F\u002F lazy one-time setup inside handler\n",{"type":41,"tag":149,"props":4677,"children":4678},{"class":151,"line":1170},[4679],{"type":41,"tag":149,"props":4680,"children":4681},{"style":205},[4682],{"type":50,"value":4683},"  \u002F\u002F ... API calls here\n",{"type":41,"tag":149,"props":4685,"children":4686},{"class":151,"line":1178},[4687],{"type":41,"tag":149,"props":4688,"children":4689},{"style":162},[4690],{"type":50,"value":4691},"};\n",{"type":41,"tag":46,"props":4693,"children":4694},{},[4695,4697,4703],{"type":50,"value":4696},"See ",{"type":41,"tag":75,"props":4698,"children":4700},{"className":4699},[],[4701],{"type":50,"value":4702},"references\u002Flambda.md",{"type":50,"value":4704}," for Lambda layers and versioning.",{"type":41,"tag":60,"props":4706,"children":4708},{"id":4707},"nodejs-version-requirements",[4709],{"type":50,"value":4710},"Node.js Version Requirements",{"type":41,"tag":67,"props":4712,"children":4713},{},[4714,4719],{"type":41,"tag":71,"props":4715,"children":4716},{},[4717],{"type":50,"value":4718},"v3.968.0+ requires Node.js >= 20",{"type":41,"tag":71,"props":4720,"children":4721},{},[4722],{"type":50,"value":4723},"v3.723.0+ requires Node.js >= 18",{"type":41,"tag":60,"props":4725,"children":4726},{"id":14},[4727],{"type":50,"value":13},{"type":41,"tag":46,"props":4729,"children":4730},{},[4731,4733,4739,4741,4747,4748,4754,4756,4762,4764,4770,4772,4778,4780,4786],{"type":50,"value":4732},"Response fields are typed as ",{"type":41,"tag":75,"props":4734,"children":4736},{"className":4735},[],[4737],{"type":50,"value":4738},"T | undefined",{"type":50,"value":4740}," by default. Use ",{"type":41,"tag":75,"props":4742,"children":4744},{"className":4743},[],[4745],{"type":50,"value":4746},"AssertiveClient",{"type":50,"value":910},{"type":41,"tag":75,"props":4749,"children":4751},{"className":4750},[],[4752],{"type":50,"value":4753},"@smithy\u002Ftypes",{"type":50,"value":4755}," to remove ",{"type":41,"tag":75,"props":4757,"children":4759},{"className":4758},[],[4760],{"type":50,"value":4761},"| undefined",{"type":50,"value":4763},", or ",{"type":41,"tag":75,"props":4765,"children":4767},{"className":4766},[],[4768],{"type":50,"value":4769},"NodeJsClient",{"type":50,"value":4771}," \u002F ",{"type":41,"tag":75,"props":4773,"children":4775},{"className":4774},[],[4776],{"type":50,"value":4777},"BrowserClient",{"type":50,"value":4779}," to narrow streaming blob types. See ",{"type":41,"tag":75,"props":4781,"children":4783},{"className":4782},[],[4784],{"type":50,"value":4785},"references\u002Ftypescript.md",{"type":50,"value":398},{"type":41,"tag":60,"props":4788,"children":4790},{"id":4789},"sigv4a-s3-multi-region-access-points",[4791],{"type":50,"value":4792},"SigV4a (S3 Multi-Region Access Points)",{"type":41,"tag":46,"props":4794,"children":4795},{},[4796],{"type":50,"value":4797},"S3 MRAP and certain other features require SigV4a. You must install and side-effect-import exactly one of:",{"type":41,"tag":67,"props":4799,"children":4800},{},[4801,4812],{"type":41,"tag":71,"props":4802,"children":4803},{},[4804,4810],{"type":41,"tag":75,"props":4805,"children":4807},{"className":4806},[],[4808],{"type":50,"value":4809},"@aws-sdk\u002Fsignature-v4-crt",{"type":50,"value":4811}," — Node.js only, better performance",{"type":41,"tag":71,"props":4813,"children":4814},{},[4815,4821],{"type":41,"tag":75,"props":4816,"children":4818},{"className":4817},[],[4819],{"type":50,"value":4820},"@aws-sdk\u002Fsignature-v4a",{"type":50,"value":4822}," — Node.js + browsers, pure JS",{"type":41,"tag":138,"props":4824,"children":4826},{"className":140,"code":4825,"language":142,"meta":143,"style":143},"import \"@aws-sdk\u002Fsignature-v4a\"; \u002F\u002F side-effect only — no exported values needed\n",[4827],{"type":41,"tag":75,"props":4828,"children":4829},{"__ignoreMap":143},[4830],{"type":41,"tag":149,"props":4831,"children":4832},{"class":151,"line":152},[4833,4837,4841,4845,4849,4853],{"type":41,"tag":149,"props":4834,"children":4835},{"style":156},[4836],{"type":50,"value":159},{"type":41,"tag":149,"props":4838,"children":4839},{"style":162},[4840],{"type":50,"value":186},{"type":41,"tag":149,"props":4842,"children":4843},{"style":189},[4844],{"type":50,"value":4820},{"type":41,"tag":149,"props":4846,"children":4847},{"style":162},[4848],{"type":50,"value":197},{"type":41,"tag":149,"props":4850,"children":4851},{"style":162},[4852],{"type":50,"value":202},{"type":41,"tag":149,"props":4854,"children":4855},{"style":205},[4856],{"type":50,"value":4857}," \u002F\u002F side-effect only — no exported values needed\n",{"type":41,"tag":46,"props":4859,"children":4860},{},[4861,4862,4868],{"type":50,"value":4696},{"type":41,"tag":75,"props":4863,"children":4865},{"className":4864},[],[4866],{"type":50,"value":4867},"references\u002Fsigv4a.md",{"type":50,"value":4869}," for full details and MRAP ARN format.",{"type":41,"tag":4871,"props":4872,"children":4873},"style",{},[4874],{"type":50,"value":4875},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":4877,"total":5048},[4878,4895,4910,4925,4940,4950,4965,4981,4998,5011,5023,5038],{"slug":4879,"name":4879,"fn":4880,"description":4881,"org":4882,"tags":4883,"stars":24,"repoUrl":25,"updatedAt":4894},"agents-build","add capabilities to existing agent projects","Use when adding capabilities to an existing agent project — memory, app integration, VPC, multi-agent, migration, model changes, browser, code interpreter, or resource removal. Triggers on: \"add memory\", \"remember across sessions\", \"call agent from app\", \"invoke agent from code\", \"auth to call agent\", \"streaming responses\", \"VPC\", \"VPC connectivity\", \"VPC error\", \"can't reach from VPC\", \"multi-agent\", \"A2A\", \"A2A auth\", \"orchestrator not delegating\", \"specialist not called\", \"migrate Bedrock Agent\", \"after import\", \"migration issue\", \"framework for migration\", \"change model\", \"browser tool\", \"code interpreter\", \"delete agent\", \"tear down\", \"agentcore remove\", \"cross-account memory\", \"resource-based policy on memory\", \"pay for x402 content\", \"402 Payment Required\", \"microtransactions\", \"paid API or tool\". Not for connecting to external APIs via Gateway — use agents-connect. Not for scaffolding a new project — use agents-get-started. Not for CLI\u002Fdev server errors — use agents-debug. Strands vs LangGraph in a migration context routes here.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4884,4887,4890,4891],{"name":4885,"slug":4886,"type":15},"Agents","agents",{"name":4888,"slug":4889,"type":15},"Automation","automation",{"name":23,"slug":8,"type":15},{"name":4892,"slug":4893,"type":15},"Engineering","engineering","2026-07-12T08:42:53.812877",{"slug":4896,"name":4896,"fn":4897,"description":4898,"org":4899,"tags":4900,"stars":24,"repoUrl":25,"updatedAt":4909},"agents-connect","connect agents to external services","Use when connecting your agent to external APIs, tools, or services via Gateway, or restricting tool access with Cedar policies. Handles gateway setup, target types, outbound auth (OAuth, API key, IAM), credentials, and Cedar policy authoring. Triggers on: \"connect to API\", \"add gateway\", \"connect to MCP server\", \"Lambda tools\", \"OpenAPI\", \"gateway target\", \"Cedar policy\", \"restrict tools\", \"policy engine\", \"gateway auth error\", \"store API key\", \"outbound credential\", \"env var API key\", \"API key None after deploy\", \"credential not available after deploy\", \"should this be a gateway target\", \"give my agent tools\", \"add tools to agent\". Not for inbound auth (who can call your agent) — use agents-harden. Not for debugging agent behavior — use agents-debug. Not for VPC networking errors (agent can't reach APIs due to VPC) — use agents-build. Not for creating or hosting a new MCP server project — use agents-get-started.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4901,4902,4905,4908],{"name":4885,"slug":4886,"type":15},{"name":4903,"slug":4904,"type":15},"API Development","api-development",{"name":4906,"slug":4907,"type":15},"Authentication","authentication",{"name":23,"slug":8,"type":15},"2026-07-16T06:00:38.866147",{"slug":4911,"name":4911,"fn":4912,"description":4913,"org":4914,"tags":4915,"stars":24,"repoUrl":25,"updatedAt":4924},"agents-debug","debug agent and environment issues","Use when your agent or environment is broken — wrong answers, errors, timeouts, tool failures, or CLI issues. Reads traces and logs to diagnose root causes. Also checks prerequisites when the CLI itself isn't working. Triggers on: \"agent not working\", \"wrong answer\", \"agent error\", \"tool call failing\", \"debug agent\", \"check logs\", \"read traces\", \"broken\", \"500 error\", \"424 error\", \"model access denied\", \"command not found\", \"stuck in DELETING\", \"maxVms exceeded\", \"cold start diagnosis\", \"cold start slow\", \"agentcore create error\", \"create failed\", \"exit code 7\", \"connection refused local dev\". Not for deploy failures — use agents-deploy. Not for performance tuning without errors — use agents-optimize. Not for VPC configuration — use agents-build. Not for observability setup or missing logs — use agents-optimize.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4916,4917,4918,4921],{"name":4885,"slug":4886,"type":15},{"name":23,"slug":8,"type":15},{"name":4919,"slug":4920,"type":15},"Debugging","debugging",{"name":4922,"slug":4923,"type":15},"Observability","observability","2026-07-16T06:00:44.679093",{"slug":4926,"name":4926,"fn":4927,"description":4928,"org":4929,"tags":4930,"stars":24,"repoUrl":25,"updatedAt":4939},"agents-deploy","deploy AI agents to AWS","Use when deploying your agent to AWS, or when a deploy has failed. Handles pre-flight validation, CDK\u002FIAM\u002Fquota error diagnosis, version management, rollback, and canary deployments. Triggers on: \"deploy my agent\", \"agentcore deploy\", \"deploy failed\", \"CDK error\", \"rollback\", \"canary deploy\", \"pin version\", \"redeploy\", \"deploy stuck\". Not for production hardening — use agents-harden. Not for adding capabilities before deploy — use agents-build or agents-connect. Not for VPC configuration errors — use agents-build.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4931,4932,4933,4936],{"name":4885,"slug":4886,"type":15},{"name":23,"slug":8,"type":15},{"name":4934,"slug":4935,"type":15},"CI\u002FCD","ci-cd",{"name":4937,"slug":4938,"type":15},"Deployment","deployment","2026-07-12T08:42:55.059577",{"slug":4941,"name":4941,"fn":4942,"description":4943,"org":4944,"tags":4945,"stars":24,"repoUrl":25,"updatedAt":4949},"agents-get-started","scaffold and deploy new agent projects","Use when a developer wants to create a new agent project or get started with AgentCore. Handles framework selection, project scaffolding, first deploy, and first invocation. Triggers on: \"build an agent\", \"create an agent\", \"get started\", \"new project\", \"agentcore create\", \"which framework\", \"Strands vs LangGraph\", \"hello world agent\", \"first agent\", \"create MCP server\", \"host MCP server\", \"agentcore dev\", \"dev server\", \"what port\", \"local development\". Not for adding capabilities to existing projects — use agents-build or agents-connect. Strands vs LangGraph in a migration context routes to agents-build, not here. Connecting to an existing MCP server routes to agents-connect, not here.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4946,4947,4948],{"name":4885,"slug":4886,"type":15},{"name":23,"slug":8,"type":15},{"name":4937,"slug":4938,"type":15},"2026-07-12T08:42:51.963247",{"slug":4951,"name":4951,"fn":4952,"description":4953,"org":4954,"tags":4955,"stars":24,"repoUrl":25,"updatedAt":4964},"agents-harden","harden agents for production","Use when preparing your agent for production — IAM scoping, inbound auth (JWT, SigV4), secrets management, cold start optimization, session lifecycle, rate limiting, input validation, and quota guidance. Triggers on: \"production checklist\", \"harden agent\", \"production ready\", \"secure agent\", \"inbound auth\", \"going live\", \"cold start optimization\", \"session lifecycle\", \"StopRuntimeSession\", \"quota\", \"throttling\", \"maxVms\", \"rate limit\", \"security audit of outbound API calls\", \"gateway target audit for production\", \"restrict who can call\", \"lock down endpoint\", \"only our app can call\". Not for Cedar tool-restriction policies — use agents-connect. Not for quality measurement — use agents-optimize. Not for outbound credential storage or API key wiring — use agents-connect. Not for A2A agent-to-agent auth — use agents-build. Cold start observation and diagnosis (not optimization) routes to agents-debug.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4956,4957,4958,4961],{"name":4885,"slug":4886,"type":15},{"name":23,"slug":8,"type":15},{"name":4959,"slug":4960,"type":15},"Best Practices","best-practices",{"name":4962,"slug":4963,"type":15},"Security","security","2026-07-16T06:00:42.174705",{"slug":4966,"name":4966,"fn":4967,"description":4968,"org":4969,"tags":4970,"stars":24,"repoUrl":25,"updatedAt":4980},"agents-optimize","optimize agent quality and performance","Use when measuring or improving agent quality and performance — set up evaluators, online monitoring, CI\u002FCD quality gates, observability, or cost optimization. Triggers on: \"evaluate my agent\", \"add evaluator\", \"measure quality\", \"quality gate\", \"run evals\", \"agent too slow\", \"why is it slow\", \"reduce latency\", \"set up observability\", \"CloudWatch dashboard\", \"how much does my agent cost\", \"cost optimization\", \"logs not showing up\", \"logs missing\", \"spans not found\", \"eval failing\", \"eval error\", \"dev traces\", \"local traces\", \"agentcore dev traces\", \"traces to CloudWatch\". Not for debugging errors or crashes — use agents-debug. Slow but correct routes here; broken routes to debug.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4971,4972,4973,4976,4977],{"name":4885,"slug":4886,"type":15},{"name":23,"slug":8,"type":15},{"name":4974,"slug":4975,"type":15},"Evals","evals",{"name":4922,"slug":4923,"type":15},{"name":4978,"slug":4979,"type":15},"Performance","performance","2026-07-12T08:42:56.488105",{"slug":4982,"name":4982,"fn":4983,"description":4984,"org":4985,"tags":4986,"stars":24,"repoUrl":25,"updatedAt":4997},"amazon-aurora-mysql","manage Amazon Aurora MySQL clusters","Amazon Aurora MySQL — creates, modifies, and advises on Aurora MySQL clusters specifically (MySQL-compatible engine, Aurora serverless, parallel query). Trigger for Aurora MySQL cluster operations, ACU sizing, I\u002FO-Optimized storage, commitment pricing, or MySQL upgrade planning. Aurora MySQL uses full (VPC-based) configuration — express configuration is PostgreSQL-only. For Aurora PostgreSQL, use amazon-aurora-postgresql instead. Contains safety guardrails and response templates that override defaults.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4987,4988,4991,4994],{"name":23,"slug":8,"type":15},{"name":4989,"slug":4990,"type":15},"Database","database",{"name":4992,"slug":4993,"type":15},"MySQL","mysql",{"name":4995,"slug":4996,"type":15},"Serverless","serverless","2026-07-12T08:43:13.27939",{"slug":4999,"name":4999,"fn":5000,"description":5001,"org":5002,"tags":5003,"stars":24,"repoUrl":25,"updatedAt":5010},"amazon-aurora-postgresql","configure Amazon Aurora PostgreSQL clusters","Amazon Aurora PostgreSQL — creates, modifies, and advises on Aurora PostgreSQL clusters specifically (PostgreSQL-compatible engine, Aurora serverless, express configuration, pgvector, Babelfish). Trigger for Aurora PostgreSQL cluster operations, express-configuration quick-start, ACU sizing, I\u002FO-Optimized storage, commitment pricing, or PostgreSQL upgrade planning. For Aurora MySQL, use amazon-aurora-mysql instead. Contains safety guardrails, express-first routing, and response templates that override defaults.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[5004,5005,5006,5009],{"name":23,"slug":8,"type":15},{"name":4989,"slug":4990,"type":15},{"name":5007,"slug":5008,"type":15},"PostgreSQL","postgresql",{"name":4995,"slug":4996,"type":15},"2026-07-16T06:00:34.789624",{"slug":5012,"name":5012,"fn":5013,"description":5014,"org":5015,"tags":5016,"stars":24,"repoUrl":25,"updatedAt":5022},"amazon-bedrock","build generative AI apps with Amazon Bedrock","Builds generative AI applications on Amazon Bedrock. Covers model invocation (Converse API, InvokeModel), RAG with Knowledge Bases, Bedrock Agents, Guardrails, and AgentCore. Use when invoking models, setting up Knowledge Bases, creating agents, applying guardrails, deploying to AgentCore, migrating\u002Fporting\u002Fconverting a Bedrock Agent (including inline agents) to an AgentCore Harness, troubleshooting Bedrock errors (ThrottlingException, AccessDeniedException), or choosing models (Claude, Llama, Nova, Titan). ALSO USE for prompt caching setup and debugging, quota health checks and throttling diagnosis, cost attribution and tracking, migrating between Claude model generations (4.5 to 4.6 to 4.7), chunking strategies, API selection (Converse vs InvokeModel), guardrail capabilities, and model selection. Also covers AgentCore Payments setup (x402, microtransactions, Payment Manager, Connector, Instrument, Coinbase CDP, Stripe Privy, 402 Payment Required, pay for content, paid endpoint, agent payments). NOT for custom model training, Rekognition, or Comprehend.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[5017,5018,5019],{"name":4885,"slug":4886,"type":15},{"name":23,"slug":8,"type":15},{"name":5020,"slug":5021,"type":15},"LLM","llm","2026-07-25T05:30:35.20899",{"slug":5024,"name":5024,"fn":5025,"description":5026,"org":5027,"tags":5028,"stars":24,"repoUrl":25,"updatedAt":5037},"amazon-documentdb","manage Amazon DocumentDB clusters","Manages Amazon DocumentDB end-to-end — serverless-on-8.0 cluster setup, TLS\u002FVPC\u002Fdriver config, flexible-schema and vector-search data modeling, MongoDB compatibility assessment, DMS-based migration, slow-query diagnosis, major version upgrades (4.0→5.0→8.0), Well-Architected reviews (41-check wa_review.py), cost estimation, and security hardening. Retrieve for every DocumentDB question and when the user asks to set up or migrate MongoDB to AWS — DocumentDB is AWS's MongoDB-compatible managed database. Triggers: JSON document store, document database, MongoDB on AWS, Nested fields, Lambda cannot connect, TLS handshake, VPC port 27017, IAM auth, Secrets Manager, encryption at rest, $graphLookup, flexible schema, COLLSCAN, compound index, DMS migration, CDC cutover, $vectorSearch, RAG, Global Clusters, DR replication, cost sizing, audit, health check, production-readiness.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[5029,5030,5031,5034],{"name":23,"slug":8,"type":15},{"name":4989,"slug":4990,"type":15},{"name":5032,"slug":5033,"type":15},"MongoDB","mongodb",{"name":5035,"slug":5036,"type":15},"NoSQL","nosql","2026-07-12T08:43:00.455878",{"slug":5039,"name":5039,"fn":5040,"description":5041,"org":5042,"tags":5043,"stars":24,"repoUrl":25,"updatedAt":5047},"amazon-dynamodb","design and debug DynamoDB data layers","Designs, reviews, and debugs DynamoDB data layers from design axioms — enumerates access patterns, chooses partition\u002Fsort keys and GSIs, decides single-table vs. multi-table, configures Streams, Global Tables, TTL, and zero-ETL integrations to OpenSearch\u002FRedshift\u002FSageMaker Lakehouse, and produces a defensible data-layer design with a monthly cost estimate and optional live validation. Applies whenever a user is designing, reviewing, or refactoring anything backed by DynamoDB — schemas, access patterns, GSIs, single- vs. multi-table choices, Streams consumers, transactional outboxes, Global Tables, zero-ETL pipelines — even when they don't say \"axioms\" or \"design review.\" Also applies when debugging hot partitions, throttling, unbounded Scans, LWW conflicts, or surprise bills on DynamoDB workloads.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[5044,5045,5046],{"name":23,"slug":8,"type":15},{"name":4989,"slug":4990,"type":15},{"name":5035,"slug":5036,"type":15},"2026-07-16T06:00:37.690386",115,{"items":5050,"total":5100},[5051,5058,5065,5072,5079,5085,5092],{"slug":4879,"name":4879,"fn":4880,"description":4881,"org":5052,"tags":5053,"stars":24,"repoUrl":25,"updatedAt":4894},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[5054,5055,5056,5057],{"name":4885,"slug":4886,"type":15},{"name":4888,"slug":4889,"type":15},{"name":23,"slug":8,"type":15},{"name":4892,"slug":4893,"type":15},{"slug":4896,"name":4896,"fn":4897,"description":4898,"org":5059,"tags":5060,"stars":24,"repoUrl":25,"updatedAt":4909},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[5061,5062,5063,5064],{"name":4885,"slug":4886,"type":15},{"name":4903,"slug":4904,"type":15},{"name":4906,"slug":4907,"type":15},{"name":23,"slug":8,"type":15},{"slug":4911,"name":4911,"fn":4912,"description":4913,"org":5066,"tags":5067,"stars":24,"repoUrl":25,"updatedAt":4924},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[5068,5069,5070,5071],{"name":4885,"slug":4886,"type":15},{"name":23,"slug":8,"type":15},{"name":4919,"slug":4920,"type":15},{"name":4922,"slug":4923,"type":15},{"slug":4926,"name":4926,"fn":4927,"description":4928,"org":5073,"tags":5074,"stars":24,"repoUrl":25,"updatedAt":4939},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[5075,5076,5077,5078],{"name":4885,"slug":4886,"type":15},{"name":23,"slug":8,"type":15},{"name":4934,"slug":4935,"type":15},{"name":4937,"slug":4938,"type":15},{"slug":4941,"name":4941,"fn":4942,"description":4943,"org":5080,"tags":5081,"stars":24,"repoUrl":25,"updatedAt":4949},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[5082,5083,5084],{"name":4885,"slug":4886,"type":15},{"name":23,"slug":8,"type":15},{"name":4937,"slug":4938,"type":15},{"slug":4951,"name":4951,"fn":4952,"description":4953,"org":5086,"tags":5087,"stars":24,"repoUrl":25,"updatedAt":4964},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[5088,5089,5090,5091],{"name":4885,"slug":4886,"type":15},{"name":23,"slug":8,"type":15},{"name":4959,"slug":4960,"type":15},{"name":4962,"slug":4963,"type":15},{"slug":4966,"name":4966,"fn":4967,"description":4968,"org":5093,"tags":5094,"stars":24,"repoUrl":25,"updatedAt":4980},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[5095,5096,5097,5098,5099],{"name":4885,"slug":4886,"type":15},{"name":23,"slug":8,"type":15},{"name":4974,"slug":4975,"type":15},{"name":4922,"slug":4923,"type":15},{"name":4978,"slug":4979,"type":15},114]