-
Notifications
You must be signed in to change notification settings - Fork 88
/
mkdocs.yml
96 lines (89 loc) · 2.35 KB
/
mkdocs.yml
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
site_name: Powertools for AWS Lambda (Java)
site_description: Powertools for AWS Lambda (Java)
site_author: Amazon Web Services
site_url: https://docs.powertools.aws.dev/lambda-java/
nav:
- Homepage: index.md
- Changelog: changelog.md
- Workshop 🆕: https://s12d.com/powertools-for-aws-lambda-workshop" target="_blank
- FAQs: FAQs.md
- Core utilities:
- core/logging.md
- core/tracing.md
- core/metrics.md
- Utilities:
- utilities/idempotency.md
- utilities/parameters.md
- utilities/large_messages.md
- utilities/batch.md
- utilities/validation.md
- utilities/custom_resources.md
- utilities/serialization.md
- Deprecated:
- utilities/sqs_large_message_handling.md
- utilities/sqs_batch.md
- Processes:
- processes/maintainers.md
theme:
name: material
font:
text: Ubuntu
palette:
- scheme: default
primary: deep purple
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- scheme: slate
primary: indigo
accent: teal
toggle:
icon: material/toggle-switch
name: Switch to light mode
features:
- navigation.sections
- navigation.expand
- 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
- pymdownx.inlinehilite
- pymdownx.highlight:
linenums: true
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.details
- pymdownx.snippets:
base_path: '.'
check_paths: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- meta
- toc:
permalink: true
toc_depth: 4
- attr_list
copyright: Copyright © 2021 Amazon Web Services
plugins:
- git-revision-date
- search
- macros
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:
powertools:
version: 1.18.0 # to update after each release (we do not want snapshot version here)
repo_url: https://github.com/aws-powertools/powertools-lambda-java
edit_uri: edit/main/docs