├── .github
├── PULL_REQUEST_TEMPLATE.md
└── workflows
│ ├── comment_pr.yml
│ └── receive_pr.yml
├── .gitignore
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── FAQ.md
├── LICENSE
├── LICENSE-SAMPLECODE
├── LICENSE-SUMMARY
├── README.md
└── src
├── Dockerfile
├── README.md
├── docker_assets
├── config.go
├── convert.go
└── plantuml
├── hugo
├── config.toml
├── content
│ ├── en-us
│ │ ├── _footer.md
│ │ ├── _header.md
│ │ ├── _index.md
│ │ ├── about
│ │ │ └── _index.md
│ │ ├── best_practices
│ │ │ ├── _index.md
│ │ │ └── aws
│ │ │ │ ├── _index.md
│ │ │ │ └── data_ingest
│ │ │ │ └── _index.md
│ │ ├── bot.md
│ │ ├── contribute
│ │ │ ├── _index.md
│ │ │ ├── kitchen_sink
│ │ │ │ └── _index.md
│ │ │ └── templates
│ │ │ │ ├── _index.md
│ │ │ │ ├── implementation.md
│ │ │ │ └── pattern.md
│ │ ├── glossary
│ │ │ ├── _index.md
│ │ │ ├── personae.md
│ │ │ └── vocabulary.md
│ │ ├── implementations
│ │ │ ├── _index.md
│ │ │ └── aws
│ │ │ │ ├── _index.md
│ │ │ │ ├── command
│ │ │ │ ├── _index.md
│ │ │ │ ├── command1
│ │ │ │ │ ├── _index.md
│ │ │ │ │ └── architecture.svg
│ │ │ │ └── command2
│ │ │ │ │ ├── _index.md
│ │ │ │ │ ├── architecture1.svg
│ │ │ │ │ └── architecture2.svg
│ │ │ │ ├── device_bootstrap
│ │ │ │ ├── _index.md
│ │ │ │ ├── aws-iot-certificate-vending-machine
│ │ │ │ │ ├── _index.md
│ │ │ │ │ ├── aws-iot-cvm-architecture.png
│ │ │ │ │ └── aws-iot-cvm-flow-diagram.png
│ │ │ │ └── fleet_provisioning_trusted_user
│ │ │ │ │ ├── _index.md
│ │ │ │ │ ├── fp_by_trasted_user_flow.png
│ │ │ │ │ ├── home-page.png
│ │ │ │ │ ├── iot-cognito.svg
│ │ │ │ │ └── sign-in.png
│ │ │ │ ├── device_state_replica
│ │ │ │ ├── _index.md
│ │ │ │ └── device_state_replica1
│ │ │ │ │ ├── _index.md
│ │ │ │ │ └── device_shadow.png
│ │ │ │ ├── software_update
│ │ │ │ ├── IoT_Jobs
│ │ │ │ │ ├── IoT_Jobs_Ref_Diagram.png
│ │ │ │ │ └── _index.md
│ │ │ │ └── _index.md
│ │ │ │ ├── telemetry
│ │ │ │ ├── _index.md
│ │ │ │ └── fan-in1
│ │ │ │ │ ├── _index.md
│ │ │ │ │ └── architecture.svg
│ │ │ │ └── telemetry_archiving
│ │ │ │ ├── _index.md
│ │ │ │ └── iot_analytics1
│ │ │ │ ├── .gitignore
│ │ │ │ ├── _index.md
│ │ │ │ ├── architecture.svg
│ │ │ │ └── raw_sensor_data_analysis.png
│ │ └── patterns
│ │ │ ├── MVC
│ │ │ ├── DeviceUML.png
│ │ │ ├── MVC-UML.png
│ │ │ ├── PracMVC.png
│ │ │ └── _index.md
│ │ │ ├── _index.md
│ │ │ ├── command
│ │ │ ├── _index.md
│ │ │ └── command.png
│ │ │ ├── device_bootstrap
│ │ │ ├── _index.md
│ │ │ └── bootstrap.png
│ │ │ ├── device_state_replica
│ │ │ ├── _index.md
│ │ │ ├── c2d-state.png
│ │ │ └── d2c-state.png
│ │ │ ├── gateway
│ │ │ ├── _index.md
│ │ │ ├── algorithms.png
│ │ │ └── gateway.png
│ │ │ ├── iot-atlas-patterns.pptx
│ │ │ ├── protocol-translation
│ │ │ ├── IIoT-Extraction-Architecture.png
│ │ │ ├── ProtocolTranslation.png
│ │ │ └── _index.md
│ │ │ ├── software_update
│ │ │ ├── _index.md
│ │ │ └── software-update.png
│ │ │ ├── telemetry
│ │ │ ├── _index.md
│ │ │ └── telemetry.png
│ │ │ └── telemetry_archiving
│ │ │ ├── _index.md
│ │ │ └── archiving.png
│ ├── fr-fr
│ │ ├── _footer.md
│ │ ├── _header.md
│ │ ├── _index.md
│ │ ├── about
│ │ │ └── _index.md
│ │ ├── designs
│ │ │ ├── _index.md
│ │ │ ├── command
│ │ │ │ ├── _index.md
│ │ │ │ └── command.png
│ │ │ ├── device_bootstrap
│ │ │ │ ├── _index.md
│ │ │ │ └── bootstrap.png
│ │ │ ├── device_state_replica
│ │ │ │ ├── _index.md
│ │ │ │ ├── c2d-state.png
│ │ │ │ └── d2c-state.png
│ │ │ ├── gateway
│ │ │ │ ├── _index.md
│ │ │ │ ├── algorithms.png
│ │ │ │ └── gateway.png
│ │ │ ├── iot-atlas-patterns.pptx
│ │ │ ├── protocol-translation
│ │ │ │ ├── IIoT-Extraction-Architecture.png
│ │ │ │ ├── ProtocolTranslation.png
│ │ │ │ └── _index.md
│ │ │ ├── software_update
│ │ │ │ ├── _index.md
│ │ │ │ └── software-update.png
│ │ │ ├── telemetry
│ │ │ │ ├── _index.md
│ │ │ │ └── telemetry.png
│ │ │ └── telemetry_archiving
│ │ │ │ ├── _index.md
│ │ │ │ └── archiving.png
│ │ └── glossary
│ │ │ ├── _index.md
│ │ │ ├── personae.md
│ │ │ └── vocabulary.md
│ └── zh-cn
│ │ ├── _footer.md
│ │ ├── _header.md
│ │ ├── _index.md
│ │ ├── about
│ │ └── _index.md
│ │ ├── designs
│ │ ├── _index.md
│ │ ├── command
│ │ │ └── _index.md
│ │ ├── device_bootstrap
│ │ │ └── _index.md
│ │ ├── device_state_replica
│ │ │ └── _index.md
│ │ ├── gateway
│ │ │ └── _index.md
│ │ ├── software_update
│ │ │ └── _index.md
│ │ ├── telemetry
│ │ │ └── _index.md
│ │ └── telemetry_archiving
│ │ │ └── _index.md
│ │ └── glossary
│ │ ├── _index.md
│ │ ├── personae.md
│ │ └── vocabulary.md
├── layouts
│ ├── partials
│ │ ├── custom-footer.html
│ │ ├── custom-header.html
│ │ ├── logo.html
│ │ ├── menu-footer.html
│ │ └── seo-schema.html
│ └── shortcodes
│ │ ├── atlas-logo.html
│ │ ├── center.html
│ │ ├── synopsis-archiving.html
│ │ ├── synopsis-bootstrap.html
│ │ ├── synopsis-gateway.html
│ │ ├── synopsis-protocol-translation.html
│ │ ├── synopsis-software-update.html
│ │ └── synopsis-telemetry.html
├── static
│ ├── css
│ │ └── theme-atlas.css
│ ├── images
│ │ ├── favicon.ico
│ │ ├── favicon.png
│ │ ├── iot_atlas_150x.png
│ │ └── iot_atlas_white_150x.png
│ ├── iot-atlas-patterns.pptx
│ └── iot_atlas_white_150x.png
└── themes
│ └── iot-atlas
│ ├── .editorconfig
│ ├── .gitignore
│ ├── .grenrc.yml
│ ├── CHANGELOG.md
│ ├── LICENSE.md
│ ├── README.md
│ ├── archetypes
│ ├── chapter.md
│ └── default.md
│ ├── i18n
│ ├── ar.toml
│ ├── de.toml
│ ├── en.toml
│ ├── es.toml
│ ├── fr.toml
│ ├── hi.toml
│ ├── id.toml
│ ├── ja.toml
│ ├── nl.toml
│ ├── pt.toml
│ ├── ru.toml
│ ├── tr.toml
│ └── zh-cn.toml
│ ├── images
│ ├── screenshot.png
│ └── tn.png
│ ├── layouts
│ ├── 404.html
│ ├── _default
│ │ ├── list.html
│ │ └── single.html
│ ├── index.html
│ ├── index.json
│ ├── partials
│ │ ├── custom-comments.html
│ │ ├── custom-footer.html
│ │ ├── custom-header.html
│ │ ├── favicon.html
│ │ ├── footer.html
│ │ ├── header.html
│ │ ├── logo.html
│ │ ├── menu-footer.html
│ │ ├── menu.html
│ │ ├── meta.html
│ │ ├── search.html
│ │ ├── tags.html
│ │ └── toc.html
│ └── shortcodes
│ │ ├── attachments.html
│ │ ├── button.html
│ │ ├── children.html
│ │ ├── expand.html
│ │ ├── mermaid.html
│ │ ├── notice.html
│ │ ├── ref.html
│ │ ├── relref.html
│ │ ├── siteparam.html
│ │ ├── tab.html
│ │ └── tabs.html
│ ├── netlify.toml
│ ├── static
│ ├── css
│ │ ├── atom-one-dark-reasonable.css
│ │ ├── auto-complete.css
│ │ ├── featherlight.min.css
│ │ ├── fontawesome-all.min.css
│ │ ├── hugo-theme.css
│ │ ├── hybrid.css
│ │ ├── nucleus.css
│ │ ├── perfect-scrollbar.min.css
│ │ ├── tabs.css
│ │ ├── tags.css
│ │ ├── theme-aws.css
│ │ ├── theme-blue.css
│ │ ├── theme-green.css
│ │ ├── theme-red.css
│ │ └── theme.css
│ ├── fonts
│ │ ├── Inconsolata.eot
│ │ ├── Inconsolata.svg
│ │ ├── Inconsolata.ttf
│ │ ├── Inconsolata.woff
│ │ ├── Novecentosanswide-Normal-webfont.eot
│ │ ├── Novecentosanswide-Normal-webfont.svg
│ │ ├── Novecentosanswide-Normal-webfont.ttf
│ │ ├── Novecentosanswide-Normal-webfont.woff
│ │ ├── Novecentosanswide-Normal-webfont.woff2
│ │ ├── Novecentosanswide-UltraLight-webfont.eot
│ │ ├── Novecentosanswide-UltraLight-webfont.svg
│ │ ├── Novecentosanswide-UltraLight-webfont.ttf
│ │ ├── Novecentosanswide-UltraLight-webfont.woff
│ │ ├── Novecentosanswide-UltraLight-webfont.woff2
│ │ ├── Work_Sans_200.eot
│ │ ├── Work_Sans_200.svg
│ │ ├── Work_Sans_200.ttf
│ │ ├── Work_Sans_200.woff
│ │ ├── Work_Sans_200.woff2
│ │ ├── Work_Sans_300.eot
│ │ ├── Work_Sans_300.svg
│ │ ├── Work_Sans_300.ttf
│ │ ├── Work_Sans_300.woff
│ │ ├── Work_Sans_300.woff2
│ │ ├── Work_Sans_500.eot
│ │ ├── Work_Sans_500.svg
│ │ ├── Work_Sans_500.ttf
│ │ ├── Work_Sans_500.woff
│ │ └── Work_Sans_500.woff2
│ ├── images
│ │ ├── clippy.svg
│ │ ├── favicon.png
│ │ └── gopher-404.jpg
│ ├── js
│ │ ├── auto-complete.js
│ │ ├── clipboard.min.js
│ │ ├── featherlight.min.js
│ │ ├── highlight.pack.js
│ │ ├── hugo-learn.js
│ │ ├── jquery-3.6.0.min.js
│ │ ├── jquery.sticky.js
│ │ ├── learn.js
│ │ ├── lunr.min.js
│ │ ├── modernizr.custom-3.6.0.js
│ │ ├── perfect-scrollbar.jquery.min.js
│ │ ├── perfect-scrollbar.min.js
│ │ └── search.js
│ ├── mermaid
│ │ └── mermaid.js
│ └── webfonts
│ │ ├── fa-brands-400.eot
│ │ ├── fa-brands-400.svg
│ │ ├── fa-brands-400.ttf
│ │ ├── fa-brands-400.woff
│ │ ├── fa-brands-400.woff2
│ │ ├── fa-regular-400.eot
│ │ ├── fa-regular-400.svg
│ │ ├── fa-regular-400.ttf
│ │ ├── fa-regular-400.woff
│ │ ├── fa-regular-400.woff2
│ │ ├── fa-solid-900.eot
│ │ ├── fa-solid-900.svg
│ │ ├── fa-solid-900.ttf
│ │ ├── fa-solid-900.woff
│ │ └── fa-solid-900.woff2
│ ├── theme.toml
│ └── wercker.yml
└── make_hugo.sh
/.github/PULL_REQUEST_TEMPLATE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/.github/PULL_REQUEST_TEMPLATE.md
--------------------------------------------------------------------------------
/.github/workflows/comment_pr.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/.github/workflows/comment_pr.yml
--------------------------------------------------------------------------------
/.github/workflows/receive_pr.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/.github/workflows/receive_pr.yml
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/.gitignore
--------------------------------------------------------------------------------
/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/CODE_OF_CONDUCT.md
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/CONTRIBUTING.md
--------------------------------------------------------------------------------
/FAQ.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/FAQ.md
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/LICENSE
--------------------------------------------------------------------------------
/LICENSE-SAMPLECODE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/LICENSE-SAMPLECODE
--------------------------------------------------------------------------------
/LICENSE-SUMMARY:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/LICENSE-SUMMARY
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/README.md
--------------------------------------------------------------------------------
/src/Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/Dockerfile
--------------------------------------------------------------------------------
/src/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/README.md
--------------------------------------------------------------------------------
/src/docker_assets/config.go:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/docker_assets/config.go
--------------------------------------------------------------------------------
/src/docker_assets/convert.go:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/docker_assets/convert.go
--------------------------------------------------------------------------------
/src/docker_assets/plantuml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/docker_assets/plantuml
--------------------------------------------------------------------------------
/src/hugo/config.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/config.toml
--------------------------------------------------------------------------------
/src/hugo/content/en-us/_footer.md:
--------------------------------------------------------------------------------
1 | Copyright (c) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2 |
--------------------------------------------------------------------------------
/src/hugo/content/en-us/_header.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/_header.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/about/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/about/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/best_practices/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/best_practices/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/best_practices/aws/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/best_practices/aws/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/best_practices/aws/data_ingest/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/best_practices/aws/data_ingest/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/bot.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/bot.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/contribute/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/contribute/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/contribute/kitchen_sink/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/contribute/kitchen_sink/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/contribute/templates/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/contribute/templates/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/contribute/templates/implementation.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/contribute/templates/implementation.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/contribute/templates/pattern.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/contribute/templates/pattern.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/glossary/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/glossary/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/glossary/personae.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/glossary/personae.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/glossary/vocabulary.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/glossary/vocabulary.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/implementations/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/implementations/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/implementations/aws/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/implementations/aws/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/implementations/aws/command/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/implementations/aws/command/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/implementations/aws/command/command1/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/implementations/aws/command/command1/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/implementations/aws/command/command1/architecture.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/implementations/aws/command/command1/architecture.svg
--------------------------------------------------------------------------------
/src/hugo/content/en-us/implementations/aws/command/command2/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/implementations/aws/command/command2/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/implementations/aws/command/command2/architecture1.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/implementations/aws/command/command2/architecture1.svg
--------------------------------------------------------------------------------
/src/hugo/content/en-us/implementations/aws/command/command2/architecture2.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/implementations/aws/command/command2/architecture2.svg
--------------------------------------------------------------------------------
/src/hugo/content/en-us/implementations/aws/device_bootstrap/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/implementations/aws/device_bootstrap/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/implementations/aws/device_bootstrap/aws-iot-certificate-vending-machine/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/implementations/aws/device_bootstrap/aws-iot-certificate-vending-machine/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/implementations/aws/device_bootstrap/aws-iot-certificate-vending-machine/aws-iot-cvm-architecture.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/implementations/aws/device_bootstrap/aws-iot-certificate-vending-machine/aws-iot-cvm-architecture.png
--------------------------------------------------------------------------------
/src/hugo/content/en-us/implementations/aws/device_bootstrap/aws-iot-certificate-vending-machine/aws-iot-cvm-flow-diagram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/implementations/aws/device_bootstrap/aws-iot-certificate-vending-machine/aws-iot-cvm-flow-diagram.png
--------------------------------------------------------------------------------
/src/hugo/content/en-us/implementations/aws/device_bootstrap/fleet_provisioning_trusted_user/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/implementations/aws/device_bootstrap/fleet_provisioning_trusted_user/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/implementations/aws/device_bootstrap/fleet_provisioning_trusted_user/fp_by_trasted_user_flow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/implementations/aws/device_bootstrap/fleet_provisioning_trusted_user/fp_by_trasted_user_flow.png
--------------------------------------------------------------------------------
/src/hugo/content/en-us/implementations/aws/device_bootstrap/fleet_provisioning_trusted_user/home-page.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/implementations/aws/device_bootstrap/fleet_provisioning_trusted_user/home-page.png
--------------------------------------------------------------------------------
/src/hugo/content/en-us/implementations/aws/device_bootstrap/fleet_provisioning_trusted_user/iot-cognito.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/implementations/aws/device_bootstrap/fleet_provisioning_trusted_user/iot-cognito.svg
--------------------------------------------------------------------------------
/src/hugo/content/en-us/implementations/aws/device_bootstrap/fleet_provisioning_trusted_user/sign-in.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/implementations/aws/device_bootstrap/fleet_provisioning_trusted_user/sign-in.png
--------------------------------------------------------------------------------
/src/hugo/content/en-us/implementations/aws/device_state_replica/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/implementations/aws/device_state_replica/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/implementations/aws/device_state_replica/device_state_replica1/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/implementations/aws/device_state_replica/device_state_replica1/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/implementations/aws/device_state_replica/device_state_replica1/device_shadow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/implementations/aws/device_state_replica/device_state_replica1/device_shadow.png
--------------------------------------------------------------------------------
/src/hugo/content/en-us/implementations/aws/software_update/IoT_Jobs/IoT_Jobs_Ref_Diagram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/implementations/aws/software_update/IoT_Jobs/IoT_Jobs_Ref_Diagram.png
--------------------------------------------------------------------------------
/src/hugo/content/en-us/implementations/aws/software_update/IoT_Jobs/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/implementations/aws/software_update/IoT_Jobs/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/implementations/aws/software_update/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/implementations/aws/software_update/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/implementations/aws/telemetry/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/implementations/aws/telemetry/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/implementations/aws/telemetry/fan-in1/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/implementations/aws/telemetry/fan-in1/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/implementations/aws/telemetry/fan-in1/architecture.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/implementations/aws/telemetry/fan-in1/architecture.svg
--------------------------------------------------------------------------------
/src/hugo/content/en-us/implementations/aws/telemetry_archiving/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/implementations/aws/telemetry_archiving/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/implementations/aws/telemetry_archiving/iot_analytics1/.gitignore:
--------------------------------------------------------------------------------
1 | *.txt
2 | *.py
3 | *.json
4 |
--------------------------------------------------------------------------------
/src/hugo/content/en-us/implementations/aws/telemetry_archiving/iot_analytics1/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/implementations/aws/telemetry_archiving/iot_analytics1/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/implementations/aws/telemetry_archiving/iot_analytics1/architecture.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/implementations/aws/telemetry_archiving/iot_analytics1/architecture.svg
--------------------------------------------------------------------------------
/src/hugo/content/en-us/implementations/aws/telemetry_archiving/iot_analytics1/raw_sensor_data_analysis.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/implementations/aws/telemetry_archiving/iot_analytics1/raw_sensor_data_analysis.png
--------------------------------------------------------------------------------
/src/hugo/content/en-us/patterns/MVC/DeviceUML.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/patterns/MVC/DeviceUML.png
--------------------------------------------------------------------------------
/src/hugo/content/en-us/patterns/MVC/MVC-UML.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/patterns/MVC/MVC-UML.png
--------------------------------------------------------------------------------
/src/hugo/content/en-us/patterns/MVC/PracMVC.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/patterns/MVC/PracMVC.png
--------------------------------------------------------------------------------
/src/hugo/content/en-us/patterns/MVC/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/patterns/MVC/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/patterns/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/patterns/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/patterns/command/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/patterns/command/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/patterns/command/command.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/patterns/command/command.png
--------------------------------------------------------------------------------
/src/hugo/content/en-us/patterns/device_bootstrap/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/patterns/device_bootstrap/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/patterns/device_bootstrap/bootstrap.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/patterns/device_bootstrap/bootstrap.png
--------------------------------------------------------------------------------
/src/hugo/content/en-us/patterns/device_state_replica/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/patterns/device_state_replica/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/patterns/device_state_replica/c2d-state.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/patterns/device_state_replica/c2d-state.png
--------------------------------------------------------------------------------
/src/hugo/content/en-us/patterns/device_state_replica/d2c-state.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/patterns/device_state_replica/d2c-state.png
--------------------------------------------------------------------------------
/src/hugo/content/en-us/patterns/gateway/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/patterns/gateway/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/patterns/gateway/algorithms.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/patterns/gateway/algorithms.png
--------------------------------------------------------------------------------
/src/hugo/content/en-us/patterns/gateway/gateway.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/patterns/gateway/gateway.png
--------------------------------------------------------------------------------
/src/hugo/content/en-us/patterns/iot-atlas-patterns.pptx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/patterns/iot-atlas-patterns.pptx
--------------------------------------------------------------------------------
/src/hugo/content/en-us/patterns/protocol-translation/IIoT-Extraction-Architecture.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/patterns/protocol-translation/IIoT-Extraction-Architecture.png
--------------------------------------------------------------------------------
/src/hugo/content/en-us/patterns/protocol-translation/ProtocolTranslation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/patterns/protocol-translation/ProtocolTranslation.png
--------------------------------------------------------------------------------
/src/hugo/content/en-us/patterns/protocol-translation/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/patterns/protocol-translation/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/patterns/software_update/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/patterns/software_update/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/patterns/software_update/software-update.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/patterns/software_update/software-update.png
--------------------------------------------------------------------------------
/src/hugo/content/en-us/patterns/telemetry/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/patterns/telemetry/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/patterns/telemetry/telemetry.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/patterns/telemetry/telemetry.png
--------------------------------------------------------------------------------
/src/hugo/content/en-us/patterns/telemetry_archiving/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/patterns/telemetry_archiving/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/en-us/patterns/telemetry_archiving/archiving.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/en-us/patterns/telemetry_archiving/archiving.png
--------------------------------------------------------------------------------
/src/hugo/content/fr-fr/_footer.md:
--------------------------------------------------------------------------------
1 | Copyright (c) 2020 Amazon.com, Inc. ou ses filiales. Tous droits réservés.
--------------------------------------------------------------------------------
/src/hugo/content/fr-fr/_header.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/fr-fr/_header.md
--------------------------------------------------------------------------------
/src/hugo/content/fr-fr/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/fr-fr/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/fr-fr/about/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/fr-fr/about/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/fr-fr/designs/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/fr-fr/designs/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/fr-fr/designs/command/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/fr-fr/designs/command/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/fr-fr/designs/command/command.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/fr-fr/designs/command/command.png
--------------------------------------------------------------------------------
/src/hugo/content/fr-fr/designs/device_bootstrap/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/fr-fr/designs/device_bootstrap/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/fr-fr/designs/device_bootstrap/bootstrap.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/fr-fr/designs/device_bootstrap/bootstrap.png
--------------------------------------------------------------------------------
/src/hugo/content/fr-fr/designs/device_state_replica/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/fr-fr/designs/device_state_replica/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/fr-fr/designs/device_state_replica/c2d-state.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/fr-fr/designs/device_state_replica/c2d-state.png
--------------------------------------------------------------------------------
/src/hugo/content/fr-fr/designs/device_state_replica/d2c-state.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/fr-fr/designs/device_state_replica/d2c-state.png
--------------------------------------------------------------------------------
/src/hugo/content/fr-fr/designs/gateway/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/fr-fr/designs/gateway/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/fr-fr/designs/gateway/algorithms.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/fr-fr/designs/gateway/algorithms.png
--------------------------------------------------------------------------------
/src/hugo/content/fr-fr/designs/gateway/gateway.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/fr-fr/designs/gateway/gateway.png
--------------------------------------------------------------------------------
/src/hugo/content/fr-fr/designs/iot-atlas-patterns.pptx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/fr-fr/designs/iot-atlas-patterns.pptx
--------------------------------------------------------------------------------
/src/hugo/content/fr-fr/designs/protocol-translation/IIoT-Extraction-Architecture.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/fr-fr/designs/protocol-translation/IIoT-Extraction-Architecture.png
--------------------------------------------------------------------------------
/src/hugo/content/fr-fr/designs/protocol-translation/ProtocolTranslation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/fr-fr/designs/protocol-translation/ProtocolTranslation.png
--------------------------------------------------------------------------------
/src/hugo/content/fr-fr/designs/protocol-translation/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/fr-fr/designs/protocol-translation/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/fr-fr/designs/software_update/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/fr-fr/designs/software_update/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/fr-fr/designs/software_update/software-update.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/fr-fr/designs/software_update/software-update.png
--------------------------------------------------------------------------------
/src/hugo/content/fr-fr/designs/telemetry/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/fr-fr/designs/telemetry/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/fr-fr/designs/telemetry/telemetry.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/fr-fr/designs/telemetry/telemetry.png
--------------------------------------------------------------------------------
/src/hugo/content/fr-fr/designs/telemetry_archiving/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/fr-fr/designs/telemetry_archiving/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/fr-fr/designs/telemetry_archiving/archiving.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/fr-fr/designs/telemetry_archiving/archiving.png
--------------------------------------------------------------------------------
/src/hugo/content/fr-fr/glossary/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/fr-fr/glossary/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/fr-fr/glossary/personae.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/fr-fr/glossary/personae.md
--------------------------------------------------------------------------------
/src/hugo/content/fr-fr/glossary/vocabulary.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/fr-fr/glossary/vocabulary.md
--------------------------------------------------------------------------------
/src/hugo/content/zh-cn/_footer.md:
--------------------------------------------------------------------------------
1 | ©2020, Amazon Web Services, Inc. 或其附属公司。保留所有权利。
2 |
--------------------------------------------------------------------------------
/src/hugo/content/zh-cn/_header.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/zh-cn/_header.md
--------------------------------------------------------------------------------
/src/hugo/content/zh-cn/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/zh-cn/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/zh-cn/about/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/zh-cn/about/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/zh-cn/designs/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/zh-cn/designs/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/zh-cn/designs/command/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/zh-cn/designs/command/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/zh-cn/designs/device_bootstrap/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/zh-cn/designs/device_bootstrap/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/zh-cn/designs/device_state_replica/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/zh-cn/designs/device_state_replica/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/zh-cn/designs/gateway/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/zh-cn/designs/gateway/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/zh-cn/designs/software_update/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/zh-cn/designs/software_update/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/zh-cn/designs/telemetry/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/zh-cn/designs/telemetry/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/zh-cn/designs/telemetry_archiving/_index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/zh-cn/designs/telemetry_archiving/_index.md
--------------------------------------------------------------------------------
/src/hugo/content/zh-cn/glossary/_index.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: "术语表"
3 | weight: 500
4 | ---
5 |
6 | {{% children style="card" depth="1" description="true" %}}
7 |
--------------------------------------------------------------------------------
/src/hugo/content/zh-cn/glossary/personae.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/zh-cn/glossary/personae.md
--------------------------------------------------------------------------------
/src/hugo/content/zh-cn/glossary/vocabulary.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/content/zh-cn/glossary/vocabulary.md
--------------------------------------------------------------------------------
/src/hugo/layouts/partials/custom-footer.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/layouts/partials/custom-footer.html
--------------------------------------------------------------------------------
/src/hugo/layouts/partials/custom-header.html:
--------------------------------------------------------------------------------
1 | {{ partial "seo-schema" . }}
2 |
--------------------------------------------------------------------------------
/src/hugo/layouts/partials/logo.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/src/hugo/layouts/partials/menu-footer.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/layouts/partials/menu-footer.html
--------------------------------------------------------------------------------
/src/hugo/layouts/partials/seo-schema.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/layouts/partials/seo-schema.html
--------------------------------------------------------------------------------
/src/hugo/layouts/shortcodes/atlas-logo.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/layouts/shortcodes/atlas-logo.html
--------------------------------------------------------------------------------
/src/hugo/layouts/shortcodes/center.html:
--------------------------------------------------------------------------------
1 |