Skip to content

Commit

Permalink
Merge branch 'main' into new_s3tm_ex
Browse files Browse the repository at this point in the history
  • Loading branch information
Laren-AWS authored Nov 1, 2022
2 parents 096ab10 + eb177ef commit 8decfcd
Show file tree
Hide file tree
Showing 33 changed files with 956 additions and 1,264 deletions.
19 changes: 9 additions & 10 deletions .doc_gen/cross-content/cross_DynamoDBDataTracker_Python_block.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,20 @@
]>
<block>
<para>
Shows how to use the &Python3long; to create a web application that tracks work
Shows how to use the &Python3long; to create a REST service that tracks work
items in &DDBlong; and emails reports by using &SESlong; (&SES;).
This example uses the Flask web framework to host a local website and render
templated web pages.
This example uses the Flask web framework to handle HTTP routing and integrates
with a React webpage to present a fully functional web application.
</para>

<itemizedlist>
<listitem><para>Integrate a Flask web application with &AWS; services.</para></listitem>
<listitem><para>List, add, update, and delete items in a &DDB; table.</para></listitem>
<listitem><para>Send an email report of filtered work items using &SES;.</para></listitem>
<listitem><para>Make &AWS; requests with an &IAMlong; (&IAM;) role that restricts permissions.</para></listitem>
<listitem><para>Deploy and manage example resources with the included &CFNlong; script.</para></listitem>
<listitem><para>Build a Flask REST service that integrates with &AWS-services;.</para></listitem>
<listitem><para>Read, write, and update work items that are stored in a &DDB; table.</para></listitem>
<listitem><para>Use &SES; to send email reports of work items.</para></listitem>
</itemizedlist>
<para>
For complete source code and instructions on how to set up and run, see the full example on
<ulink url="https://github.com/awsdocs/aws-doc-sdk-examples/tree/main/python/cross_service/dynamodb_item_tracker">GitHub</ulink>.
For complete source code and instructions on how to set up and run, see the full example in the
<ulink url="https://github.com/awsdocs/aws-doc-sdk-examples/tree/main/python/cross_service/dynamodb_item_tracker">&AWS; Code Examples Repository</ulink>
on GitHub.
</para>
</block>
5 changes: 3 additions & 2 deletions .doc_gen/metadata/cross_metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,10 @@ cross_LexChatbotLanguages:
translate:
comprehend:
cross_DynamoDBDataTracker:
title: Create a dynamic web application to track &DDB; data
title: Create a web application to track &DDB; data
title_abbrev: Create a web application to track &DDB; data
synopsis: create a web application that tracks and reports on work items.
synopsis: create a web application that tracks work items in an &DDBlong; table and
uses &SESlong; (&SES;) to send reports.
languages:
Java:
versions:
Expand Down
1 change: 1 addition & 0 deletions gov2/dynamodb/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
moviedata.json
23 changes: 23 additions & 0 deletions javascriptv3/example_code/cross-services/textract-react/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.chalice/deployed
.chalice/deployments
out

Loading

0 comments on commit 8decfcd

Please sign in to comment.