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
212 lines (204 loc) · 6.3 KB
/
mkdocs.yml
File metadata and controls
212 lines (204 loc) · 6.3 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
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.powertools.aws.dev/lambda/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:
- Homepage:
- 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
- Workshop: https://s12d.com/powertools-for-aws-lambda-workshop" target="_blank
- Features:
- features/index.md
- features/tracer.md
- features/logger.md
- features/metrics.md
- Event Handler:
- features/event-handler/index.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/kafka.md
- Environment variables: environment-variables.md
- Upgrade guide: upgrade.md
- Community Content: we_made_this.md
- Roadmap: roadmap.md
- Changelog: changelog.md
- Resources:
- "llms.txt": ./llms.txt
- "llms.txt (full version)": ./llms-full.txt
- API reference: api/" target="_blank
- Processes:
- Roadmap: roadmap.md
- Versioning policy: versioning.md
- Maintainers: maintainers.md
- Contributing:
- Development environment: contributing/setup.md
- Your first contribution: contributing/getting_started.md
- Conventions: contributing/conventions.md
- Testing: contributing/testing.md
theme:
name: material
font:
text: Ubuntu
palette:
- scheme: default
primary: deep orange
accent: deep orange
toggle:
icon: material/lightbulb
name: Switch to dark mode
- scheme: slate
primary: deep orange
accent: deep orange
toggle:
icon: material/lightbulb-outline
name: Switch to light mode
features:
- header.autohide
- navigation.sections
- navigation.top
- navigation.instant
- navigation.indexes
- navigation.tracking
- navigation.tabs
- 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: 4
- 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: Copyright © 2025 Amazon Web Services
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:
Getting Started:
- getting-started/installation.md
- getting-started/usage-patterns.md
- getting-started/typescript-settings.md
- getting-started/lambda-layers.md
Features:
- features/index.md
- features/tracer.md
- features/logger.md
- features/metrics.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/kafka.md
Environment variables:
- environment-variables.md
Upgrade guide:
- upgrade.md
extra_css:
- stylesheets/extra.css
extra_javascript:
- javascript/aws-amplify.min.js
- javascript/extra.js
- https://docs.powertools.aws.dev/shared/mermaid.min.js
extra:
version:
provider: mike
default: latest
social:
- icon: fontawesome/brands/github
link: https://github.com/aws-powertools/powertools-lambda-typescript
- icon: fontawesome/brands/discord
link: https://discord.gg/B8zZKbbyET
name: Join our Discord Server!
status:
new: New Utility