├── .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 |
{{.Inner}}
2 | -------------------------------------------------------------------------------- /src/hugo/layouts/shortcodes/synopsis-archiving.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/layouts/shortcodes/synopsis-archiving.html -------------------------------------------------------------------------------- /src/hugo/layouts/shortcodes/synopsis-bootstrap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/layouts/shortcodes/synopsis-bootstrap.html -------------------------------------------------------------------------------- /src/hugo/layouts/shortcodes/synopsis-gateway.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/layouts/shortcodes/synopsis-gateway.html -------------------------------------------------------------------------------- /src/hugo/layouts/shortcodes/synopsis-protocol-translation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/layouts/shortcodes/synopsis-protocol-translation.html -------------------------------------------------------------------------------- /src/hugo/layouts/shortcodes/synopsis-software-update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/layouts/shortcodes/synopsis-software-update.html -------------------------------------------------------------------------------- /src/hugo/layouts/shortcodes/synopsis-telemetry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/layouts/shortcodes/synopsis-telemetry.html -------------------------------------------------------------------------------- /src/hugo/static/css/theme-atlas.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/static/css/theme-atlas.css -------------------------------------------------------------------------------- /src/hugo/static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/static/images/favicon.ico -------------------------------------------------------------------------------- /src/hugo/static/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/static/images/favicon.png -------------------------------------------------------------------------------- /src/hugo/static/images/iot_atlas_150x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/static/images/iot_atlas_150x.png -------------------------------------------------------------------------------- /src/hugo/static/images/iot_atlas_white_150x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/static/images/iot_atlas_white_150x.png -------------------------------------------------------------------------------- /src/hugo/static/iot-atlas-patterns.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/static/iot-atlas-patterns.pptx -------------------------------------------------------------------------------- /src/hugo/static/iot_atlas_white_150x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/static/iot_atlas_white_150x.png -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/.editorconfig -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/.gitignore -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/.grenrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/.grenrc.yml -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/CHANGELOG.md -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/LICENSE.md -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/README.md -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/archetypes/chapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/archetypes/chapter.md -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/archetypes/default.md -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/i18n/ar.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/i18n/ar.toml -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/i18n/de.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/i18n/de.toml -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/i18n/en.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/i18n/en.toml -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/i18n/es.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/i18n/es.toml -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/i18n/fr.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/i18n/fr.toml -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/i18n/hi.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/i18n/hi.toml -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/i18n/id.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/i18n/id.toml -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/i18n/ja.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/i18n/ja.toml -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/i18n/nl.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/i18n/nl.toml -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/i18n/pt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/i18n/pt.toml -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/i18n/ru.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/i18n/ru.toml -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/i18n/tr.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/i18n/tr.toml -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/i18n/zh-cn.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/i18n/zh-cn.toml -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/images/screenshot.png -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/images/tn.png -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/layouts/404.html -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/layouts/_default/list.html -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/layouts/_default/single.html -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/layouts/index.html -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/layouts/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/layouts/index.json -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/layouts/partials/custom-comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/layouts/partials/custom-comments.html -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/layouts/partials/custom-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/layouts/partials/custom-footer.html -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/layouts/partials/custom-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/layouts/partials/custom-header.html -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/layouts/partials/favicon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/layouts/partials/favicon.html -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/layouts/partials/footer.html -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/layouts/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/layouts/partials/header.html -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/layouts/partials/logo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/layouts/partials/logo.html -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/layouts/partials/menu-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/layouts/partials/menu-footer.html -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/layouts/partials/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/layouts/partials/menu.html -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/layouts/partials/meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/layouts/partials/meta.html -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/layouts/partials/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/layouts/partials/search.html -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/layouts/partials/tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/layouts/partials/tags.html -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/layouts/partials/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/layouts/partials/toc.html -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/layouts/shortcodes/attachments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/layouts/shortcodes/attachments.html -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/layouts/shortcodes/button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/layouts/shortcodes/button.html -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/layouts/shortcodes/children.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/layouts/shortcodes/children.html -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/layouts/shortcodes/expand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/layouts/shortcodes/expand.html -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/layouts/shortcodes/mermaid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/layouts/shortcodes/mermaid.html -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/layouts/shortcodes/notice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/layouts/shortcodes/notice.html -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/layouts/shortcodes/ref.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/layouts/shortcodes/ref.html -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/layouts/shortcodes/relref.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/layouts/shortcodes/relref.html -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/layouts/shortcodes/siteparam.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/layouts/shortcodes/siteparam.html -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/layouts/shortcodes/tab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/layouts/shortcodes/tab.html -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/layouts/shortcodes/tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/layouts/shortcodes/tabs.html -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/netlify.toml -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/css/atom-one-dark-reasonable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/css/atom-one-dark-reasonable.css -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/css/auto-complete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/css/auto-complete.css -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/css/featherlight.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/css/featherlight.min.css -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/css/fontawesome-all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/css/fontawesome-all.min.css -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/css/hugo-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/css/hugo-theme.css -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/css/hybrid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/css/hybrid.css -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/css/nucleus.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/css/nucleus.css -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/css/perfect-scrollbar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/css/perfect-scrollbar.min.css -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/css/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/css/tabs.css -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/css/tags.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/css/tags.css -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/css/theme-aws.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/css/theme-aws.css -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/css/theme-blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/css/theme-blue.css -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/css/theme-green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/css/theme-green.css -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/css/theme-red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/css/theme-red.css -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/css/theme.css -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/fonts/Inconsolata.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/fonts/Inconsolata.eot -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/fonts/Inconsolata.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/fonts/Inconsolata.svg -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/fonts/Inconsolata.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/fonts/Inconsolata.ttf -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/fonts/Inconsolata.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/fonts/Inconsolata.woff -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/fonts/Novecentosanswide-Normal-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/fonts/Novecentosanswide-Normal-webfont.eot -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/fonts/Novecentosanswide-Normal-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/fonts/Novecentosanswide-Normal-webfont.svg -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/fonts/Novecentosanswide-Normal-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/fonts/Novecentosanswide-Normal-webfont.ttf -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/fonts/Novecentosanswide-Normal-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/fonts/Novecentosanswide-Normal-webfont.woff -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/fonts/Novecentosanswide-Normal-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/fonts/Novecentosanswide-Normal-webfont.woff2 -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/fonts/Novecentosanswide-UltraLight-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/fonts/Novecentosanswide-UltraLight-webfont.eot -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/fonts/Novecentosanswide-UltraLight-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/fonts/Novecentosanswide-UltraLight-webfont.svg -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/fonts/Novecentosanswide-UltraLight-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/fonts/Novecentosanswide-UltraLight-webfont.ttf -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/fonts/Novecentosanswide-UltraLight-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/fonts/Novecentosanswide-UltraLight-webfont.woff -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/fonts/Novecentosanswide-UltraLight-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/fonts/Novecentosanswide-UltraLight-webfont.woff2 -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/fonts/Work_Sans_200.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/fonts/Work_Sans_200.eot -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/fonts/Work_Sans_200.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/fonts/Work_Sans_200.svg -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/fonts/Work_Sans_200.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/fonts/Work_Sans_200.ttf -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/fonts/Work_Sans_200.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/fonts/Work_Sans_200.woff -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/fonts/Work_Sans_200.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/fonts/Work_Sans_200.woff2 -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/fonts/Work_Sans_300.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/fonts/Work_Sans_300.eot -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/fonts/Work_Sans_300.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/fonts/Work_Sans_300.svg -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/fonts/Work_Sans_300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/fonts/Work_Sans_300.ttf -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/fonts/Work_Sans_300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/fonts/Work_Sans_300.woff -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/fonts/Work_Sans_300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/fonts/Work_Sans_300.woff2 -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/fonts/Work_Sans_500.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/fonts/Work_Sans_500.eot -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/fonts/Work_Sans_500.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/fonts/Work_Sans_500.svg -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/fonts/Work_Sans_500.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/fonts/Work_Sans_500.ttf -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/fonts/Work_Sans_500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/fonts/Work_Sans_500.woff -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/fonts/Work_Sans_500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/fonts/Work_Sans_500.woff2 -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/images/clippy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/images/clippy.svg -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/images/favicon.png -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/images/gopher-404.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/images/gopher-404.jpg -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/js/auto-complete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/js/auto-complete.js -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/js/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/js/clipboard.min.js -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/js/featherlight.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/js/featherlight.min.js -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/js/highlight.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/js/highlight.pack.js -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/js/hugo-learn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/js/hugo-learn.js -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/js/jquery-3.6.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/js/jquery-3.6.0.min.js -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/js/jquery.sticky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/js/jquery.sticky.js -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/js/learn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/js/learn.js -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/js/lunr.min.js -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/js/modernizr.custom-3.6.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/js/modernizr.custom-3.6.0.js -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/js/perfect-scrollbar.jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/js/perfect-scrollbar.jquery.min.js -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/js/perfect-scrollbar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/js/perfect-scrollbar.min.js -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/js/search.js -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/mermaid/mermaid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/mermaid/mermaid.js -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/static/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/static/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/theme.toml -------------------------------------------------------------------------------- /src/hugo/themes/iot-atlas/wercker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/hugo/themes/iot-atlas/wercker.yml -------------------------------------------------------------------------------- /src/make_hugo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/iot-atlas/HEAD/src/make_hugo.sh --------------------------------------------------------------------------------