forked from aws-powertools/powertools-lambda-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
227 lines (220 loc) · 6.79 KB
/
Copy pathmkdocs.yml
File metadata and controls
227 lines (220 loc) · 6.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
site_name: Powertools for AWS Lambda (TypeScript)
site_description: Powertools for AWS Lambda (TypeScript)
site_author: Amazon Web Services
repo_url: https://github.com/aws-powertools/powertools-lambda-typescript
edit_uri: edit/main/docs
site_url: https://docs.aws.amazon.com/powertools/typescript/latest/
watch: [
docs,
packages/batch/src,
examples/snippets/batch,
packages/commons/src,
packages/event-handler/src,
examples/snippets/event-handler,
packages/idempotency/src,
examples/snippets/idempotency,
packages/jmespath/src,
examples/snippets/jmespath,
packages/logger/src,
examples/snippets/logger,
packages/metrics/src,
examples/snippets/metrics,
packages/parameters/src,
examples/snippets/parameters,
packages/parser/src,
examples/snippets/parser,
packages/tracer/src,
examples/snippets/tracer,
packages/validation/src,
examples/snippets/validation,
packages/kafka/src,
examples/snippets/kafka,
]
nav:
- What is Powertools for AWS Lambda (TypeScript): index.md
- Getting Started:
- Installation: getting-started/installation.md
- Usage patterns: getting-started/usage-patterns.md
- TypeScript settings: getting-started/typescript-settings.md
- Lambda layers: getting-started/lambda-layers.md
- features/tracer.md
- features/logger.md
- features/metrics.md
- Event Handler:
- features/event-handler/index.md
- features/event-handler/http.md
- features/event-handler/appsync-events.md
- features/event-handler/appsync-graphql.md
- features/event-handler/bedrock-agents.md
- features/parameters.md
- features/idempotency.md
- features/batch.md
- features/jmespath.md
- features/parser.md
- features/validation.md
- features/data-masking.md
- features/kafka.md
- features/signer.md
- features/metadata.md
- Environment variables: environment-variables.md
- API reference: api/
- Changelog: changelog.md
- Versioning policy: versioning.md
- Resources:
- Upgrade guide: upgrade.md
- Community Content: we_made_this.md
- "llms.txt": ./llms.txt
theme:
name: material
font: false # Amazon Ember is self-hosted via stylesheets/aws-restyle.css
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Device
- media: "(prefers-color-scheme: light)"
scheme: default
primary: custom
accent: custom
toggle:
icon: material/brightness-7
name: Light
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: custom
accent: custom
toggle:
icon: material/brightness-4
name: Dark
features:
- navigation.top
- navigation.instant
- navigation.indexes
- navigation.tracking
- content.code.annotate
- content.code.copy
- announce.dismiss
- content.tabs.link
icon:
repo: fontawesome/brands/github
logo: media/aws-logo-light.svg
favicon: media/aws-logo-light.svg
custom_dir: docs/overrides
markdown_extensions:
- admonition
- abbr
- pymdownx.tabbed:
alternate_style: true
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
- pymdownx.highlight:
linenums: true
- pymdownx.details
- pymdownx.snippets:
base_path: "."
check_paths: true
restrict_base_path: false
- meta
- toc:
permalink: true
toc_depth: 2
- attr_list
- md_in_html
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tasklist:
custom_checkbox: true
copyright: |
<div id="awsdocs-legal-zone-copyright">
<a href="https://aws.amazon.com/privacy" target="_blank" rel="nofollow">Privacy</a> |
<a href="https://aws.amazon.com/terms/" target="_blank" rel="nofollow">Site terms</a> |
<span class="copyright">
© 2025, Amazon Web Services, Inc. or its affiliates. All rights reserved.
</span>
</div>
plugins:
- privacy
- git-revision-date
- search
- exclude:
glob:
- snippets/node_modules/*
- snippets/package.json
- snippets/CHANGELOG.md
- typedoc:
source: '.'
output_dir: 'api'
tsconfig: 'tsconfig.json'
options: 'typedoc.json'
name: 'API Reference'
- llmstxt:
markdown_description: Powertools for AWS Lambda (TypeScript) is a developer toolkit to implement Serverless best practices and increase developer velocity. It provides a suite of utilities for AWS Lambda Functions that makes tracing with AWS X-Ray, structured logging and creating custom metrics asynchronously easier.
full_output: llms-full.txt
sections:
What is Powertools for AWS Lambda (TypeScript):
- index.md
Getting Started:
- getting-started/installation.md
- getting-started/usage-patterns.md
- getting-started/typescript-settings.md
- getting-started/lambda-layers.md
Features:
- features/tracer.md
- features/logger.md
- features/metrics.md
- features/event-handler/index.md
- features/event-handler/http.md
- features/event-handler/appsync-events.md
- features/event-handler/appsync-graphql.md
- features/event-handler/bedrock-agents.md
- features/parameters.md
- features/idempotency.md
- features/batch.md
- features/jmespath.md
- features/parser.md
- features/validation.md
- features/data-masking.md
- features/kafka.md
- features/signer.md
- features/metadata.md
Environment variables:
- environment-variables.md
Changelog:
- changelog.md
Versioning policy:
- versioning.md
Resources:
- upgrade.md
- we_made_this.md
extra_css:
- stylesheets/extra.css
- stylesheets/aws-restyle.css
- stylesheets/aws-header.css
- stylesheets/aws-nav.css
- stylesheets/aws-content.css
- stylesheets/aws-footer.css
extra_javascript:
- javascript/extra.js
- javascript/aws-header.js
- https://docs.aws.amazon.com/powertools/shared/mermaid.min.js
- https://docs.aws.amazon.com/assets/js/awsdocs-boot.js
extra:
version:
provider: mike
default: latest
social:
- icon: fontawesome/brands/github
link: https://github.com/aws-powertools/powertools-lambda-typescript
- icon: fontawesome/brands/github
link: https://github.com/aws-powertools/powertools-lambda-typescript/discussions
name: Join our GitHub Discussions!
status:
new: New Utility