Skip to content

Commit 429e839

Browse files
committed
revamp mediastore
1 parent 411592c commit 429e839

File tree

1 file changed

+11
-12
lines changed

1 file changed

+11
-12
lines changed

src/content/docs/aws/services/mediastore.md

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
title: Elemental MediaStore
3-
linkTitle: Elemental MediaStore
43
description: Get started with Elemental MediaStore on LocalStack
54
tags: ["Ultimate"]
65
---
@@ -12,7 +11,7 @@ It provides a reliable way to store, manage, and serve media assets, such as aud
1211
MediaStore seamlessly integrates with other AWS services like Elemental MediaConvert, Elemental MediaLive, Elemental MediaPackage, and CloudFront.
1312

1413
LocalStack allows you to use the Elemental MediaStore APIs as a high-performance storage solution for media content in your local environment.
15-
The supported APIs are available on our [API Coverage Page]({{< ref "coverage_mediastore" >}}), which provides information on the extent of Elemental MediaStore integration with LocalStack.
14+
The supported APIs are available on our [API Coverage Page](), which provides information on the extent of Elemental MediaStore integration with LocalStack.
1615

1716
## Getting started
1817

@@ -26,9 +25,9 @@ We will demonstrate how you can create a MediaStore container, upload an asset,
2625
You can create a container using the [`CreateContainer`](https://docs.aws.amazon.com/mediastore/latest/apireference/API_CreateContainer.html) API.
2726
Run the following command to create a container and retrieve the the `Endpoint` value which should be used in subsequent requests:
2827

29-
{{< command >}}
30-
$ awslocal mediastore create-container --container-name mycontainer
31-
{{< / command >}}
28+
```bash
29+
awslocal mediastore create-container --container-name mycontainer
30+
```
3231

3332
You should see the following output:
3433

@@ -50,13 +49,13 @@ This action will transfer the file to the specified path, `/myfolder/myfile.txt`
5049
Provide the `endpoint` obtained in the previous step for the operation to be successful.
5150
Run the following command to upload the file:
5251

53-
{{< command >}}
54-
$ awslocal mediastore-data put-object \
52+
```bash
53+
awslocal mediastore-data put-object \
5554
--endpoint http://mediastore-mycontainer.mediastore.localhost.localstack.cloud:4566 \
5655
--body myfile.txt \
5756
--path /myfolder/myfile.txt \
5857
--content-type binary/octet-stream
59-
{{< / command >}}
58+
```
6059

6160
You should see the following output:
6261

@@ -74,12 +73,12 @@ In this process, you need to specify the endpoint, the path for downloading the
7473
The downloaded file will then be accessible at the specified output path.
7574
Run the following command to download the file:
7675

77-
{{< command >}}
78-
$ awslocal mediastore-data get-object \
76+
```bash
77+
awslocal mediastore-data get-object \
7978
--endpoint http://mediastore-mycontainer.mediastore.localhost.localstack.cloud:4566 \
8079
--path /myfolder/myfile.txt \
8180
/tmp/out.txt
82-
{{< / command >}}
81+
```
8382

8483
You should see the following output:
8584

@@ -96,4 +95,4 @@ You should see the following output:
9695
## Troubleshooting
9796

9897
The Elemental MediaStore service requires the use of a custom HTTP/HTTPS endpoint.
99-
In case you encounter any issues, please consult our [Networking documentation]({{< ref "references/network-troubleshooting" >}}) for assistance.
98+
In case you encounter any issues, please consult our [Networking documentation](/aws/capabilities/networking/) for assistance.

0 commit comments

Comments
 (0)