Skip to content

Commit 08c11b6

Browse files
committed
fix(mnq): continue correcting links
1 parent 0217f48 commit 08c11b6

File tree

27 files changed

+53
-32
lines changed

27 files changed

+53
-32
lines changed

menu/filters.json

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,16 @@
101101
"label": "SQL databases"
102102
},
103103
{
104-
"category": "messaging",
105-
"label": "Messaging and Queuing"
104+
"category": "nats",
105+
"label": "NATS"
106+
},
107+
{
108+
"category": "queues",
109+
"label": "Queues"
110+
},
111+
{
112+
"category": "topics-and-events",
113+
"label": "topics-and-events"
106114
}
107115
],
108116
"category": "serverless",

menu/navigation.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4414,7 +4414,7 @@
44144414
"slug": "manage-credentials"
44154415
},
44164416
{
4417-
"label": "Create and manage queues",
4417+
"label": "Create and manage topics",
44184418
"slug": "create-manage-topics"
44194419
},
44204420
{

pages/queues/api-cli/connect-aws-cli.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,5 +126,5 @@ Now you have installed the AWS-CLI, you need to configure it for use with Scalew
126126
Use the `--profile` option if you want to test it using a different profile.
127127

128128
<Message type="tip">
129-
Check out our dedicated documentation to find more common commands for getting started with the AWS CLI. The [Queues guide](/queues/api-cli/sqs-sns-aws-cli/#getting-started-with-scaleway-queues) walks you through creating and listing queues, sending messages to queues, and more.
129+
Check out our dedicated documentation to find more common commands for getting started with the AWS CLI. The [Queues guide](/queues/api-cli/queues-aws-cli/#getting-started-with-scaleway-queues) walks you through creating and listing queues, sending messages to queues, and more.
130130
</Message>

pages/queues/faq.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Scaleway Queues is a product for creating managed message queues based on AWS's
2424

2525
## Is the Scaleway Queues gateway compatible with my application, framework or tool?
2626

27-
We currently implement the API endpoints listed [here](/queues/reference-content/sqs-support/), which makes Scaleway Queues compatible with the AWS SDK as well as many other tools and frameworks including [KEDA](https://keda.sh/) and [Symfony](https://symfony.com/). Note that you need to specify both Regions and URL to ensure compatibility.
27+
We currently implement the API endpoints listed [here](/queues/reference-content/queues-support/), which makes Scaleway Queues compatible with the AWS SDK as well as many other tools and frameworks including [KEDA](https://keda.sh/) and [Symfony](https://symfony.com/). Note that you need to specify both Regions and URL to ensure compatibility.
2828

2929
## How is Scaleway Queues billed?
3030

pages/queues/quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ You are returned to the **Queues** tab, where your newly-created queue now displ
7979

8080
## How to send and receive messages
8181

82-
All further actions related to sending messages to queues can be done via a supported CLI or SDK. See our documentation on the [SQS CLI and SDKs](/queues/reference-content/sqs-overview#further-actions) for more information. You can also check out [our tutorial](/tutorials/create-serverless-scraping/) on creating a serverless scraping architecture with Scaleway Queues.
82+
All further actions related to sending messages to queues can be done via a supported CLI or SDK. See our documentation on the [SQS CLI and SDKs](/queues/reference-content/queues-overview#further-actions) for more information. You can also check out [our tutorial](/tutorials/create-serverless-scraping/) on creating a serverless scraping architecture with Scaleway Queues.
8383

8484
## How to delete a queue
8585

pages/queues/reference-content/queues-overview.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ You can [create queues](/queues/how-to/create-manage-queues/) via the Scaleway c
4444

4545
## Further actions
4646

47-
All further actions such as sending messages can be done using the AWS CLI or AWS SDKs. Check out our documentation to help you get started with the [AWS CLI](/queues/api-cli/connect-aws-cli/) or [AWS SDKs](/queues/api-cli/python-node-sqs/).
47+
All further actions such as sending messages can be done using the AWS CLI or AWS SDKs. Check out our documentation to help you get started with the [AWS CLI](/queues/api-cli/connect-aws-cli/) or [AWS SDKs](/queues/api-cli/python-node-queues/).
4848

4949
## Queues resources
5050

pages/topics-and-events/api-cli/connect-aws-cli.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ content:
77
paragraph: This page explains how to connect Scaleway Topics and Events to the AWS-CLI
88
tags: messaging sns aws-cli cli aws sdk python boto
99
categories:
10-
- messaging
10+
- serverless
11+
- topics-and-events
1112
dates:
1213
validation: 2025-04-10
1314
posted: 2023-01-04
@@ -124,5 +125,5 @@ Now you have installed the AWS-CLI, you need to configure it for use with Scalew
124125
Use the `--profile` option if you want to test it using a different profile.
125126

126127
<Message type="tip">
127-
Check out our dedicated documentation to find more common commands for getting started with the AWS CLI. The [Topics and EVents guide](/queues/api-cli/topics-events-aws-cli/) walks you through creating and listing topics, sending messages.
128+
Check out our dedicated documentation to find more common commands for getting started with the AWS CLI. The [Topics and Events guide](/topics-and-events/api-cli/topics-events-aws-cli/) walks you through creating and listing topics, sending messages.
128129
</Message>

pages/topics-and-events/api-cli/python-node-topics-events.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ content:
77
paragraph: This page explains how to use Go, Python or Node.js with Topics and Events and provides code samples
88
tags: messaging boto3 python nodejs sns go topics-events
99
categories:
10-
- messaging
10+
- serverless
11+
- topics-and-events
1112
dates:
1213
validation: 2024-10-18
1314
posted: 2023-01-04
@@ -61,7 +62,7 @@ func main() {
6162

6263
</Message>
6364

64-
Once connected, you can use any of the SDK's available functions. Be aware though that some functions are not [supported by Scaleway Topics and Events](/topics-and-events/reference-content/sns-support/), so make sure to check the link for more details on these. See the [official SDK documentation](https://pkg.go.dev/github.com/aws/aws-sdk-go/service/sns) for more information on getting started with the SDK, or keep reading for some code examples.
65+
Once connected, you can use any of the SDK's available functions. Be aware though that some functions are not [supported by Scaleway Topics and Events](/topics-and-events/reference-content/topics-and-events-support/), so make sure to check the link for more details on these. See the [official SDK documentation](https://pkg.go.dev/github.com/aws/aws-sdk-go/service/sns) for more information on getting started with the SDK, or keep reading for some code examples.
6566

6667
### Create a topic (Go)
6768

pages/topics-and-events/api-cli/topics-events-aws-cli.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ content:
77
paragraph: This page explains how to use Scaleway Topics and Events for creating topics and sending and receiving messages with the AWS CLI
88
tags: messaging sns aws-cli cli aws messages subscribe publish topics
99
categories:
10-
- messaging
10+
- serverless
11+
- topics-and-events
1112
dates:
1213
validation: 2025-04-10
1314
posted: 2023-04-04

pages/topics-and-events/concepts.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ content:
66
h1: Topics and Events - Concepts
77
paragraph: Understand the core concepts of Scaleway Topics and Events. Explore fundamental principles for efficient message handling and service optimization.
88
categories:
9-
-
9+
- serverless
10+
- topics-and-events
1011
tags: messaging topics subscriptions events
1112
dates:
1213
validation: 2025-04-10
@@ -19,7 +20,7 @@ Content-based deduplication is a setting available for [FIFO](#fifo) topics. Ena
1920

2021
## Credentials
2122

22-
Credentials give services and platforms access to Topics and Events, enabling them to connect to the host system. Credentials for Scaleway Topics and Events define whether the bearer is allowed to write, and/or read, and/or manage topics and subscriptions. Refer to our [credentials documentation](/topics/how-to/create-credentials/) for more information.
23+
Credentials give services and platforms access to Topics and Events, enabling them to connect to the host system. Credentials for Scaleway Topics and Events define whether the bearer is allowed to write, and/or read, and/or manage topics and subscriptions. Refer to our [credentials documentation](/topics-and-events/how-to/create-credentials/) for more information.
2324

2425
## FIFO
2526

0 commit comments

Comments
 (0)