Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Java V2 Added FSA content #5347

Closed
wants to merge 21 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .doc_gen/cross-content/cross_FSA_Java_block.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "file://zonbook/docbookx.dtd" [
<!ENTITY % phrases-shared SYSTEM "file://AWSShared/common/phrases-shared.ent">
%phrases-shared;
]>
<block>
<para>
This example application analyzes and stores customer feedback cards. Specifically,
it fulfills the need of a fictitious hotel in New York City. The hotel receives feedback
from guests in various languages in the form of physical comment cards. That feedback
is uploaded into the app through a web client.

After an image of a comment card is uploaded, the following steps occur:
</para>
<itemizedlist>
<listitem>
<para>Text is extracted from the image using &TEXTRACT;.</para>
</listitem>
<listitem>
<para>&CMP; determines the sentiment of the extracted text and its language.</para>
</listitem>
<listitem>
<para>The extracted text is translated to French using &TSL;.</para>
</listitem>
<listitem>
<para>&POL; synthesizes an audio file from the extracted text.</para>
</listitem>
</itemizedlist>
<para> The full app can be deployed with the &CDK;. For source code and deployment
instructions, see the project in <ulink
url="https://github.com/awsdocs/aws-doc-sdk-examples/tree/main/javav2/usecases/creating_fsa_app">
GitHub</ulink>. </para>
</block>
4 changes: 4 additions & 0 deletions .doc_gen/metadata/cross_metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ cross_FSA:
their original language, determines their sentiment, and generates an audio file
from the translated text.
languages:
Java:
versions:
- sdk_version: 2
block_content: cross_FSA_Java_block.xml
Ruby:
versions:
- sdk_version: 3
Expand Down
1 change: 1 addition & 0 deletions applications/feedback_sentiment_analyzer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ This application has been implemented with the following AWS SDKs.

- [Ruby](../../ruby/cross_service_examples/feedback_sentiment_analyzer/README.md)
- [JavaScript](../../javascriptv3/example_code/cross-services/feedback-sentiment-analyzer/README.md)
- [Java](../../javav2/usecases/creating_fsa_app/README.md)

To deploy one of these implementations, follow the [Deployment instructions](#deployment-instructions).

Expand Down
Loading