diff --git a/applications/feedback_sentiment_analyzer/README.md b/applications/feedback_sentiment_analyzer/README.md index 78e0c3ae171..53ad0180580 100644 --- a/applications/feedback_sentiment_analyzer/README.md +++ b/applications/feedback_sentiment_analyzer/README.md @@ -17,6 +17,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) +- [.NET](../../dotnetv3/cross-service/FeedbackSentimentAnalyzer/README.md) To deploy one of these implementations, follow the [Deployment instructions](#deployment-instructions). diff --git a/dotnetv3/cross-service/FeedbackSentimentAnalyzer/FsaServices/Services/SynthesizeService.cs b/dotnetv3/cross-service/FeedbackSentimentAnalyzer/FsaServices/Services/SynthesizeService.cs index 6ca98c96f7a..3dfd01fdd05 100644 --- a/dotnetv3/cross-service/FeedbackSentimentAnalyzer/FsaServices/Services/SynthesizeService.cs +++ b/dotnetv3/cross-service/FeedbackSentimentAnalyzer/FsaServices/Services/SynthesizeService.cs @@ -23,6 +23,7 @@ public class SynthesizeService /// Constructor that uses the injected Amazon Polly and S3 clients. /// /// Amazon Polly client. + /// Amazon S3 client. public SynthesizeService(IAmazonPolly amazonPolly, IAmazonS3 amazonS3) { _amazonPolly = amazonPolly; @@ -32,8 +33,7 @@ public SynthesizeService(IAmazonPolly amazonPolly, IAmazonS3 amazonS3) /// /// Extract the words from a given bucket object and return them in a single string. /// - /// The source text to synthesize. - /// The bucket to use when storing results. + /// The source destination bucket, text, and object ke.y /// The name of the result object in the bucket. public async Task SynthesizeSpeechFromText(AudioSourceDestinationDetails sourceDestinationDetails) { diff --git a/dotnetv3/cross-service/FeedbackSentimentAnalyzer/FsaServices/Services/TranslationService.cs b/dotnetv3/cross-service/FeedbackSentimentAnalyzer/FsaServices/Services/TranslationService.cs index dc15255c713..e5b1338a305 100644 --- a/dotnetv3/cross-service/FeedbackSentimentAnalyzer/FsaServices/Services/TranslationService.cs +++ b/dotnetv3/cross-service/FeedbackSentimentAnalyzer/FsaServices/Services/TranslationService.cs @@ -23,7 +23,7 @@ public TranslationService(IAmazonTranslate amazonTranslate) } /// - /// Translate a string and language code to English. + /// Translate a string to the specified target language. /// /// The source text to translate. /// The language code of the source text. diff --git a/dotnetv3/cross-service/FeedbackSentimentAnalyzer/README.md b/dotnetv3/cross-service/FeedbackSentimentAnalyzer/README.md index e66662c7e9c..090331babd2 100644 --- a/dotnetv3/cross-service/FeedbackSentimentAnalyzer/README.md +++ b/dotnetv3/cross-service/FeedbackSentimentAnalyzer/README.md @@ -14,4 +14,9 @@ This document discusses the language-specific nuances of deploying the Feedback - The AWS services included in this document are included in the [AWS Free Tier](https://aws.amazon.com/free/?all-free-tier.sort-by=item.additionalFields.SortRank&all-free-tier.sort-order=asc). - This code has not been tested in all AWS Regions. Some AWS services are available only in specific Regions. For more information, see [AWS Regional Services](https://aws.amazon.com/about-aws/global-infrastructure/regional-product-services). - Running this code might result in charges to your AWS account. -- Be sure to delete all the resources you create while going through this tutorial so that you won't be charged. \ No newline at end of file +- Be sure to delete all the resources you create while going through this tutorial so that you won't be charged. + +### .NET Implementation Details + - This example includes AWS Lambda functions for the various operations of the Feedback Sentiment Analyzer. + - Each function was created using the AWS Lambda Template from the [AWS Toolkit for Visual Studio](https://aws.amazon.com/visualstudio/) + - Each function also uses [Powertools for AWS Lamba (.NET)](https://github.com/aws-powertools/powertools-lambda-dotnet) for enhanced logging. \ No newline at end of file