Skip to content

Commit

Permalink
Incorporating review feedback.
Browse files Browse the repository at this point in the history
  • Loading branch information
rlhagerm committed Oct 13, 2023
1 parent 096cebf commit 7ce7ef6
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
1 change: 1 addition & 0 deletions applications/feedback_sentiment_analyzer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ public class SynthesizeService
/// Constructor that uses the injected Amazon Polly and S3 clients.
/// </summary>
/// <param name="amazonPolly">Amazon Polly client.</param>
/// <param name="amazonS3">Amazon S3 client.</param>
public SynthesizeService(IAmazonPolly amazonPolly, IAmazonS3 amazonS3)
{
_amazonPolly = amazonPolly;
Expand All @@ -32,8 +33,7 @@ public SynthesizeService(IAmazonPolly amazonPolly, IAmazonS3 amazonS3)
/// <summary>
/// Extract the words from a given bucket object and return them in a single string.
/// </summary>
/// <param name="sourceText">The source text to synthesize.</param>
/// <param name="resultsBucket">The bucket to use when storing results.</param>
/// <param name="sourceDestinationDetails">The source destination bucket, text, and object ke.y</param>
/// <returns>The name of the result object in the bucket.</returns>
public async Task<string> SynthesizeSpeechFromText(AudioSourceDestinationDetails sourceDestinationDetails)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public TranslationService(IAmazonTranslate amazonTranslate)
}

/// <summary>
/// Translate a string and language code to English.
/// Translate a string to the specified target language.
/// </summary>
/// <param name="sourceText">The source text to translate.</param>
/// <param name="languageCode">The language code of the source text.</param>
Expand Down
7 changes: 6 additions & 1 deletion dotnetv3/cross-service/FeedbackSentimentAnalyzer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
- 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.

0 comments on commit 7ce7ef6

Please sign in to comment.