Skip to content

Commit

Permalink
chore: Update links in READMEs
Browse files Browse the repository at this point in the history
  • Loading branch information
ashovlin committed Apr 2, 2024
1 parent e0143f3 commit ff73323
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
8 changes: 6 additions & 2 deletions src/AWS.Messaging.Lambda/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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

Expand Down
8 changes: 6 additions & 2 deletions src/AWS.Messaging.Telemetry.OpenTelemetry/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down Expand Up @@ -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

Expand Down

0 comments on commit ff73323

Please sign in to comment.