Skip to content
This repository was archived by the owner on Jul 9, 2025. It is now read-only.

switch language sdk to aws sdk #1375

Merged
merged 1 commit into from
Jul 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/en/references/network-troubleshooting/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ LocalStack only binds to IPv4 addresses (e.g. `127.0.0.1`). Check you are not tr

<div class="row mt-2">

For example, setting the `endpoint_url` parameter with a [language SDK]({{< ref "user-guide/integrations/sdks" >}}).
For example, setting the `endpoint_url` parameter with an [AWS SDK]({{< ref "user-guide/integrations/sdks" >}}).

</div>

Expand Down
4 changes: 2 additions & 2 deletions content/en/user-guide/aws/s3/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,10 +131,10 @@ By default, most SDKs will try to use **Virtual-Hosted style** requests and prep
However, if the endpoint is not prefixed by `s3.`, LocalStack will not be able to understand the request and it will most likely result in an error.

You can either change the endpoint to an S3-specific one, or configure your SDK to use **Path style** requests instead.
Check out our [SDK documentation](https://docs.localstack.cloud/user-guide/integrations/sdks/) to learn how you can configure language SDKs to access LocalStack and S3.
Check out our [SDK documentation](https://docs.localstack.cloud/user-guide/integrations/sdks/) to learn how you can configure AWS SDKs to access LocalStack and S3.

{{< callout "tip" >}}
While using [AWS language SDKs](https://aws.amazon.com/developer/tools/#SDKs), you would need to configure the `ForcePathStyle` parameter to `true` in the S3 client configuration to use **Path style** requests. If you want to use virtual host addressing of buckets, you can remove `ForcePathStyle` from the configuration.
While using [AWS SDKs](https://aws.amazon.com/developer/tools/#SDKs), you would need to configure the `ForcePathStyle` parameter to `true` in the S3 client configuration to use **Path style** requests. If you want to use virtual host addressing of buckets, you can remove `ForcePathStyle` from the configuration.
The `ForcePathStyle` parameter name can vary between SDK and languages, please check our [SDK documentation](https://docs.localstack.cloud/user-guide/integrations/sdks/)
{{< /callout >}}

Expand Down
4 changes: 2 additions & 2 deletions content/en/user-guide/integrations/sdks/_index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Language SDKs"
linkTitle: "Language SDKs"
title: "AWS SDKs"
linkTitle: "AWS SDKs"
description: >
How to use your favorite cloud development SDK with LocalStack.
weight: 1
Expand Down