Skip to content

Commit

Permalink
adapt changes to localstack docs structure and guidelines. localstack…
Browse files Browse the repository at this point in the history
  • Loading branch information
Blind-Striker committed Sep 10, 2023
1 parent 03aff12 commit 41a1ad2
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions content/en/user-guide/integrations/sdks/dotnet/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,7 @@ If you're working with .NET and LocalStack, you have a few options. In addition
### How it Works

- Instead of manually setting the endpoint configurations when initializing a client, `LocalStack.NET` offers methods that handle these details.
- The library aims to reduce the boilerplate required to set up LocalStack clients in .NET.
Instead of manually setting the endpoint configurations when initializing a client, `LocalStack.NET` offers methods that handle these details. The library aims to reduce the boilerplate required to set up LocalStack clients in .NET.

### Example Usage

Expand Down Expand Up @@ -106,8 +105,8 @@ var sessionOptions = new SessionOptions();
var configOptions = new ConfigOptions();

ISession session = SessionStandalone.Init()
.WithSessionOptions(sessionOptions)
.WithConfigurationOptions(configOptions).Create();
.WithSessionOptions(sessionOptions)
.WithConfigurationOptions(configOptions).Create();

var amazonS3Client = session.CreateClientByImplementation<AmazonS3Client>();
```
Expand Down

0 comments on commit 41a1ad2

Please sign in to comment.