diff --git a/README.md b/README.md index e01cccf..e337f7f 100644 --- a/README.md +++ b/README.md @@ -393,8 +393,10 @@ If you discover a potential security issue, refer to the [security policy](https # Additional Resources * [AWS Message Processing Framework for .NET Design Document](./docs/docs/design/message-processing-framework-design.md) -* [Sample Applications](https://github.com/awslabs/aws-dotnet-messaging/tree/main/sampleapps) in this repo contains samples of a publisher service, long-running subscriber service, and Lambda function handlers. +* [Sample Applications](https://github.com/awslabs/aws-dotnet-messaging/tree/main/sampleapps) - contains sample applications of a publisher service, long-running subscriber service, Lambda function handlers, and using Polly to override the framework's built-in backoff logic. * [Developer Guide](https://docs.aws.amazon.com/sdk-for-net/v3/developer-guide/msg-proc-fw.html) +* [API Reference](https://awslabs.github.io/aws-dotnet-messaging/) +* [Introducing the AWS Message Processing Framework for .NET (Preview) Blog Post](https://aws.amazon.com/blogs/developer/introducing-the-aws-message-processing-framework-for-net-preview/) - walks through creating simple applications to send and receive SQS messages. # License diff --git a/src/AWS.Messaging.Lambda/README.md b/src/AWS.Messaging.Lambda/README.md index 09a2ca3..c5bb846 100644 --- a/src/AWS.Messaging.Lambda/README.md +++ b/src/AWS.Messaging.Lambda/README.md @@ -11,7 +11,7 @@ In AWS Lambda, the service takes care of reading the messages from the SQS queue To get started, add the `AWS.Messaging.Lambda` NuGet package to your project: ``` -dotnet add package AWS.Messaging.Lambda --prerelease +dotnet add package AWS.Messaging.Lambda ``` The example shown below uses the [.NET Amazon Lambda Annotations](https://github.com/aws/aws-lambda-dotnet/tree/master/Libraries/src/Amazon.Lambda.Annotations) framework, which makes it easy to set up .NET's dependency injection. @@ -66,7 +66,11 @@ was successful. If the function is configured for partial response failure this # Useful Links -* [AWS Message Processing Framework for .NET Design Document](./docs/design/message-processing-framework-design.md) +* [AWS Message Processing Framework for .NET Design Document](../../docs/docs/design/message-processing-framework-design.md) +* [Sample Applications](https://github.com/awslabs/aws-dotnet-messaging/tree/main/sampleapps) - contains sample applications of a publisher service, long-running subscriber service, Lambda function handlers, and using Polly to override the framework's built-in backoff logic. +* [Developer Guide](https://docs.aws.amazon.com/sdk-for-net/v3/developer-guide/msg-proc-fw.html) +* [API Reference](https://awslabs.github.io/aws-dotnet-messaging/) +* [Introducing the AWS Message Processing Framework for .NET (Preview) Blog Post](https://aws.amazon.com/blogs/developer/introducing-the-aws-message-processing-framework-for-net-preview/) - walks through creating simple applications to send and receive SQS messages. # Security diff --git a/src/AWS.Messaging.Telemetry.OpenTelemetry/README.md b/src/AWS.Messaging.Telemetry.OpenTelemetry/README.md index 2f5d54a..5dee18f 100644 --- a/src/AWS.Messaging.Telemetry.OpenTelemetry/README.md +++ b/src/AWS.Messaging.Telemetry.OpenTelemetry/README.md @@ -16,7 +16,7 @@ Add a reference to [`AWS.Messaging.Telemetry.OpenTelemetry`](https://www.nuget.o You may also add a reference to one or more [exporters](https://opentelemetry.io/docs/instrumentation/net/exporters/) to visualize your telemetry data. ```shell -dotnet add package AWS.Messaging.Telemetry.OpenTelemetry --prerelease +dotnet add package AWS.Messaging.Telemetry.OpenTelemetry dotnet add package OpenTelemetry.Extensions.Hosting ``` @@ -44,7 +44,11 @@ public class Startup ``` # Useful Links -* [AWS Message Processing Framework for .NET Design Document](../../docs/design/message-processing-framework-design.md) +* [AWS Message Processing Framework for .NET Design Document](../../docs/docs/design/message-processing-framework-design.md) +* [Sample Applications](https://github.com/awslabs/aws-dotnet-messaging/tree/main/sampleapps) - contains sample applications of a publisher service, long-running subscriber service, Lambda function handlers, and using Polly to override the framework's built-in backoff logic. +* [Developer Guide](https://docs.aws.amazon.com/sdk-for-net/v3/developer-guide/msg-proc-fw.html) +* [API Reference](https://awslabs.github.io/aws-dotnet-messaging/) +* [Introducing the AWS Message Processing Framework for .NET (Preview) Blog Post](https://aws.amazon.com/blogs/developer/introducing-the-aws-message-processing-framework-for-net-preview/) - walks through creating simple applications to send and receive SQS messages. # Security