-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
75 lines (72 loc) · 2.01 KB
/
Copy pathmkdocs.yml
File metadata and controls
75 lines (72 loc) · 2.01 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
site_name: AWS Lambda Templates - Python
repo_url: https://github.com/amrabed/aws-lambda-templates
repo_name: amrabed/aws-lambda-templates
edit_uri: edit/main/docs/
copyright: Copyright © 2026
theme:
name: material
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- announce.dismiss
- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
- content.tooltips
- navigation.footer
- navigation.indexes
- navigation.sections
- navigation.tabs
- navigation.tabs.sticky
- navigation.tracking
- navigation.top
- search.highlight
- search.suggest
- toc.follow
nav:
- Overview:
- Overview: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Templates:
- Bedrock Agent: template/agent.md
- GraphQL API: template/graphql.md
- REST API: template/api.md
- DynamoDB Stream: template/stream.md
- EventBridge: template/eventbridge.md
- S3 to SQS: template/s3.md
- SQS to DynamoDB: template/sqs.md
- Reference:
- Bedrock Agent: reference/agent.md
- GraphQL API: reference/graphql.md
- REST API: reference/api.md
- DynamoDB Stream: reference/stream.md
- EventBridge: reference/eventbridge.md
- S3: reference/s3.md
- SQS: reference/sqs.md
- Models: reference/models.md
- Queue: reference/queue.md
- Repository: reference/repository.md
- Settings: reference/settings.md
plugins:
- search
- mkdocstrings:
handlers:
python:
paths: [.]
options:
docstring_style: google # Or numpy, reST, etc., based on your code style