Skip to content

Commit

Permalink
deploy: df7c0b0
Browse files Browse the repository at this point in the history
HarshCasper committed Sep 13, 2023
1 parent 5f7fb7f commit b39ad97
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion sitemap.xml

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions user-guide/aws/sqs/index.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!doctype html><html itemscope itemtype=http://schema.org/WebPage lang=en class=no-js><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1,shrink-to-fit=no"><meta name=generator content="Hugo 0.101.0"><meta name=robots content="index, follow"><link rel="shortcut icon" href=/favicons/favicon.ico><link rel=apple-touch-icon href=/favicons/apple-touch-icon-180x180.png sizes=180x180><link rel=icon type=image/png href=/favicons/favicon-16x16.png sizes=16x16><link rel=icon type=image/png href=/favicons/favicon-32x32.png sizes=32x32><link rel=icon type=image/png href=/favicons/android-36x36.png sizes=36x36><link rel=icon type=image/png href=/favicons/android-48x48.png sizes=48x48><link rel=icon type=image/png href=/favicons/android-72x72.png sizes=72x72><link rel=icon type=image/png href=/favicons/android-96x96.png sizes=96x96><link rel=icon type=image/png href=/favicons/android-144x144.png sizes=144x144><link rel=icon type=image/png href=/favicons/android-192x192.png sizes=192x192><title>Simple Queue Service (SQS) | Docs</title><meta name=description content="Get started with Simple Queue Service (SQS) on LocalStack
"><meta property="og:title" content="Simple Queue Service (SQS)"><meta property="og:description" content="Get started with Simple Queue Service (SQS) on LocalStack
"><meta property="og:type" content="article"><meta property="og:url" content="/user-guide/aws/sqs/"><meta property="article:section" content="user-guide"><meta property="article:modified_time" content="2023-09-11T14:00:28+05:30"><meta property="og:site_name" content="Docs"><meta itemprop=name content="Simple Queue Service (SQS)"><meta itemprop=description content="Get started with Simple Queue Service (SQS) on LocalStack
"><meta itemprop=dateModified content="2023-09-11T14:00:28+05:30"><meta itemprop=wordCount content="2002"><meta itemprop=keywords content><meta name=twitter:card content="summary"><meta name=twitter:title content="Simple Queue Service (SQS)"><meta name=twitter:description content="Get started with Simple Queue Service (SQS) on LocalStack
"><meta property="og:type" content="article"><meta property="og:url" content="/user-guide/aws/sqs/"><meta property="article:section" content="user-guide"><meta property="article:modified_time" content="2023-09-13T06:42:57+02:00"><meta property="og:site_name" content="Docs"><meta itemprop=name content="Simple Queue Service (SQS)"><meta itemprop=description content="Get started with Simple Queue Service (SQS) on LocalStack
"><meta itemprop=dateModified content="2023-09-13T06:42:57+02:00"><meta itemprop=wordCount content="2005"><meta itemprop=keywords content><meta name=twitter:card content="summary"><meta name=twitter:title content="Simple Queue Service (SQS)"><meta name=twitter:description content="Get started with Simple Queue Service (SQS) on LocalStack
"><link rel=preload href=/scss/main.min.da1aef37f15e6c619f4ea24392f1c1b6367fbf2acfef7370b7623840ed90d2f9.css as=style><link href=/scss/main.min.da1aef37f15e6c619f4ea24392f1c1b6367fbf2acfef7370b7623840ed90d2f9.css rel=stylesheet integrity><script src=https://code.jquery.com/jquery-3.6.0.min.js integrity=sha384-vtXRMe3mGCbOeY7l30aIg8H9p3GdeSe4IFlP6G8JMa7o7lXvnz3GFKzPxzJdPfGK crossorigin=anonymous></script>
<link rel=stylesheet href=https://cdn.jsdelivr.net/npm/@docsearch/css@3><script type=text/javascript id=hs-script-loader async defer src=//js-eu1.hs-scripts.com/26596507.js></script><script async src="https://www.googletagmanager.com/gtag/js?id=UA-101988473-1"></script>
<script>var doNotTrack=!1;if(!doNotTrack){window.dataLayer=window.dataLayer||[];function gtag(){dataLayer.push(arguments)}gtag("js",new Date),gtag("config","UA-101988473-1")}</script></head><body class=td-page><header><nav class="js-navbar-scroll navbar navbar-expand flex-column flex-md-row td-navbar"><div class=navbar-brand><a class=brand-link href=/><span class=navbar-logo><img src=/images/logo.svg height=40px></span>
@@ -289,15 +289,15 @@
</span></span></code></pre></div><p>You can query queue attributes with the <a href=https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_GetQueueAttributes.html><code>GetQueueAttributes</code></a> API.
You need to pass the <code>queue-url</code> and <code>attribute-names</code> parameters.</p><p>Run the following command to retrieve the queue attributes:</p><div class=highlight><pre tabindex=0 style=background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4><code class=language-text data-lang=text><span style=display:flex><span><span class=command-prefix>$ </span>awslocal sqs get-queue-attributes --queue-url http://localhost:4566/000000000000/localstack-queue --attribute-names All</span></span></code></pre></div><h3 id=sending-and-receiving-messages-from-the-queue>Sending and receiving messages from the queue</h3><p>You can send a message to the SQS queue which will be queued and a consumer can pick it up.
To send a message to a SQS queue, you can use the <a href=https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_SendMessage.html><code>SendMessage</code></a> API.</p><p>Run the following command to send a message to the queue:</p><div class=highlight><pre tabindex=0 style=background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4><code class=language-text data-lang=text><span style=display:flex><span><span class=command-prefix>$ </span>awslocal sqs send-message --queue-url http://localhost:4566/000000000000/localstack-queue --message-body &#34;Hello World&#34;</span></span></code></pre></div><p>It will return the MD5 hash of the Message Body and a Message ID.
You will see the following output:</p><div class=highlight><pre tabindex=0 style=background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4><code class=language-bash data-lang=bash><span style=display:flex><span><span style=color:#ce5c00;font-weight:700>{</span>
You will see output similar to the following:</p><div class=highlight><pre tabindex=0 style=background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4><code class=language-bash data-lang=bash><span style=display:flex><span><span style=color:#ce5c00;font-weight:700>{</span>
</span></span><span style=display:flex><span> <span style=color:#4e9a06>&#34;MD5OfMessageBody&#34;</span>: <span style=color:#4e9a06>&#34;b10a8db164e0754105b7a99be72e3fe5&#34;</span>,
</span></span><span style=display:flex><span> <span style=color:#4e9a06>&#34;MessageId&#34;</span>: <span style=color:#4e9a06>&#34;92612c02-4879-47db-92f6-40bf2b341c07&#34;</span>
</span></span><span style=display:flex><span><span style=color:#ce5c00;font-weight:700>}</span>
</span></span></code></pre></div><p>You can receive messages from the queue using the <a href=https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_ReceiveMessage.html><code>ReceiveMessage</code></a> API.
Run the following command to receive messages from the queue:</p><div class=highlight><pre tabindex=0 style=background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4><code class=language-text data-lang=text><span style=display:flex><span><span class=command-prefix>$ </span>awslocal sqs receive-message --queue-url http://localhost:4566/000000000000/localstack-queue</span></span></code></pre></div><p>You will see the Message ID, MD5 hash of the Message Body, Receipt Handle, and the Message Body in the output.</p><h3 id=delete-a-message-from-the-queue>Delete a message from the queue</h3><p>To delete a message from the queue, you can use the <a href=https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_DeleteMessage.html><code>DeleteMessage</code></a> API.
You need to pass the <code>queue-url</code> and <code>receipt-handle</code> parameters.</p><p>Run the following command to delete a message from the queue:</p><div class=highlight><pre tabindex=0 style=background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4><code class=language-text data-lang=text><span style=display:flex><span><span class=command-prefix>$ </span>awslocal sqs delete-message --queue-url http://localhost:4566/000000000000/localstack-queue --receipt-handle &lt;receipt-handle&gt;</span></span></code></pre></div><p>Replace <code>&lt;receipt-handle></code> with the receipt handle you received in the previous step.
If you have sent multiple messages to the queue, you can purge the queue using the <a href=https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_PurgeQueue.html><code>PurgeQueue</code></a> API.</p><p>Run the following command to purge the queue:</p><div class=highlight><pre tabindex=0 style=background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4><code class=language-text data-lang=text><span style=display:flex><span><span class=command-prefix>$ </span>awslocal sqs purge-queue --queue-url http://localhost:4566/000000000000/localstack-queue</span></span></code></pre></div><h2 id=sqs-query-api>SQS Query API</h2><p>The <a href=https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-making-api-requests.html>SQS Query API</a>, provides SQS Queue URLs as endpoints, enabling direct HTTP requests to the queues.
LocalStack extends support for the Query API.</p><p>With LocalStack, you can conveniently test SQS Query API calls without the need to sign or include <code>AUTHPARAMS</code> in your HTTP requests.</p><p>For instance, you can use a basic <code>cURL</code> command to send a <code>SendMessage</code> command along with a MessageBody attribute:</p><div class=highlight><pre tabindex=0 style=background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4><code class=language-text data-lang=text><span style=display:flex><span><span class=command-prefix>$ </span>curl &#34;http://localhost:4566/000000000000/sample-queue?Action=SendMessage&amp;MessageBody=hello%2Fworld&#34;</span></span></code></pre></div><p>You will see the following output:</p><div class=highlight><pre tabindex=0 style=background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4><code class=language-xml data-lang=xml><span style=display:flex><span><span style=color:#8f5902;font-style:italic>&lt;?xml version=&#39;1.0&#39; encoding=&#39;utf-8&#39;?&gt;</span>
LocalStack extends support for the Query API.</p><p>With LocalStack, you can conveniently test SQS Query API calls without the need to sign or include <code>AUTHPARAMS</code> in your HTTP requests.</p><p>For instance, you can use a basic <code>cURL</code> command to send a <code>SendMessage</code> command along with a MessageBody attribute:</p><div class=highlight><pre tabindex=0 style=background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4><code class=language-text data-lang=text><span style=display:flex><span><span class=command-prefix>$ </span>curl &#34;http://localhost:4566/000000000000/localstack-queue?Action=SendMessage&amp;MessageBody=hello%2Fworld&#34;</span></span></code></pre></div><p>You will see the following output:</p><div class=highlight><pre tabindex=0 style=background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4><code class=language-xml data-lang=xml><span style=display:flex><span><span style=color:#8f5902;font-style:italic>&lt;?xml version=&#39;1.0&#39; encoding=&#39;utf-8&#39;?&gt;</span>
</span></span><span style=display:flex><span><span style=color:#204a87;font-weight:700>&lt;SendMessageResponse</span>
</span></span><span style=display:flex><span> <span style=color:#c4a000>xmlns=</span><span style=color:#4e9a06>&#34;http://queue.amazonaws.com/doc/2012-11-05/&#34;</span><span style=color:#204a87;font-weight:700>&gt;</span>
</span></span><span style=display:flex><span> <span style=color:#204a87;font-weight:700>&lt;SendMessageResult&gt;</span>
@@ -309,7 +309,7 @@
</span></span><span style=display:flex><span> <span style=color:#204a87;font-weight:700>&lt;/ResponseMetadata&gt;</span>
</span></span><span style=display:flex><span><span style=color:#204a87;font-weight:700>&lt;/SendMessageResponse&gt;</span>
</span></span></code></pre></div><p>Adding the <code>Accept: application/json</code> header will make the server return JSON:</p><p>To receive JSON responses from the server, include the <code>Accept: application/json</code> header in your request.
Here&rsquo;s an example using the <code>cURL</code> command:</p><div class=highlight><pre tabindex=0 style=background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4><code class=language-text data-lang=text><span style=display:flex><span>curl -H &#34;Accept: application/json&#34; &#34;http://localhost:4566/000000000000/my-queue?Action=SendMessage&amp;MessageBody=hello%2Fworld&#34;</span></span></code></pre></div><p>The response will be in JSON format:</p><div class=highlight><pre tabindex=0 style=background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4><code class=language-json data-lang=json><span style=display:flex><span><span style=color:#000;font-weight:700>{</span>
Here&rsquo;s an example using the <code>cURL</code> command:</p><div class=highlight><pre tabindex=0 style=background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4><code class=language-text data-lang=text><span style=display:flex><span><span class=command-prefix>$ </span>curl -H &#34;Accept: application/json&#34; &#34;http://localhost:4566/000000000000/localstack-queue?Action=SendMessage&amp;MessageBody=hello%2Fworld&#34;</span></span></code></pre></div><p>The response will be in JSON format:</p><div class=highlight><pre tabindex=0 style=background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4><code class=language-json data-lang=json><span style=display:flex><span><span style=color:#000;font-weight:700>{</span>
</span></span><span style=display:flex><span> <span style=color:#204a87;font-weight:700>&#34;SendMessageResponse&#34;</span><span style=color:#000;font-weight:700>:</span> <span style=color:#000;font-weight:700>{</span>
</span></span><span style=display:flex><span> <span style=color:#204a87;font-weight:700>&#34;SendMessageResult&#34;</span><span style=color:#000;font-weight:700>:</span> <span style=color:#000;font-weight:700>{</span>
</span></span><span style=display:flex><span> <span style=color:#204a87;font-weight:700>&#34;MD5OfMessageBody&#34;</span><span style=color:#000;font-weight:700>:</span> <span style=color:#4e9a06>&#34;c6be4e95a26409675447367b3e79f663&#34;</span><span style=color:#000;font-weight:700>,</span>
@@ -492,7 +492,7 @@
</span></span><span style=display:flex><span> <span style=color:#000;font-weight:700>]</span>
</span></span><span style=display:flex><span><span style=color:#000;font-weight:700>}</span>
</span></span></code></pre></div><h2 id=resource-browser>Resource Browser</h2><p>The LocalStack Web Application provides a Resource Browser for managing SQS queues.
You can access the Resource Browser by opening the LocalStack Web Application in your browser, navigating to the <strong>Resources</strong> section, and then clicking on <strong>SQS</strong> under the <strong>App Integration</strong> section.</p><img src=sqs-resource-browser.png alt="SQS Resource Browser" title="SQS Resource Browser" width=900><p>The Resource Browser allows you to perform the following actions:</p><ul><li><strong>Create Queue</strong>: Create a new SQS queue by specifying a queue name, optional attributes, and tags.</li><li><strong>Send Message</strong>: Send a message to an SQS queue by specifying the queue name, message body, delay seconds, optional message attributes, and more.</li><li><strong>View Details and Messages</strong>: View details and messages of an SQS queue by selecting the queue name and navigating to the <strong>Details</strong> and <strong>Messages</strong> tabs.</li><li><strong>Delete Queue</strong>: Delete an SQS queue by selecting the queue name and clicking the <strong>Action</strong> button, followed by <strong>Remove Selected</strong>.</li></ul><h2 id=examples>Examples</h2><p>The following code snippets and sample applications provide practical examples of how to use SQS in LocalStack for various use cases:</p><ul><li><a href=https://github.com/localstack/microservices-apigateway-lambda-dynamodb-sqs-sample>Serverless microservices with Amazon API Gateway, DynamoDB, SQS, and Lambda</a></li><li><a href=https://github.com/localstack/loan-broker-stepfunctions-lambda-app>Loan Broker application with AWS Step Functions, DynamoDB, Lambda, SQS, and SNS</a></li><li><a href=https://github.com/localstack/sqs-fargate-ddb-cdk-go>Messaging Processing application with SQS, DynamoDB, and Fargate</a></li><li><a href=https://github.com/localstack/sample-transcribe-app>Serverless Transcription application using Transcribe, S3, Lambda, SQS, and SES</a></li></ul><h2 id=limitations>Limitations</h2><p>A message&rsquo;s <code>ApproximateReceiveCount</code> attribute will be reset to 0 when the message moves to a DLQ.</p><br><div class="text-muted mt-5 pt-3 border-top">Last modified September 11, 2023: <a href=https://github.com/localstack/docs/commit/1589fe1a0357615e5d71e3b1277205ab45f22a50>enhance docs for sqs (#709) (1589fe1a0)</a></div></div></main></div></div><footer class="footer-localstack d-print-none"><div class=container-fluid><div class=row><div class=col><div class=mb-3><a href=https://localstack.cloud><img class=footer-logo src=/images/logo.svg></a></div></div><div class=col><div class="text-right link-lists"><ul class="list-inline mb-0"><li class="list-inline-item mx-2 h3" data-toggle=tooltip data-placement=top title=Twitter aria-label=Twitter><a target=_blank rel=noopener href=https://twitter.com/localstack aria-label=Twitter><i class="fab fa-twitter"></i></a></li><li class="list-inline-item mx-2 h3" data-toggle=tooltip data-placement=top title=Discussion aria-label=Discussion><a target=_blank rel=noopener href=https://discuss.localstack.cloud/ aria-label=Discussion><i class="fa fa-comments"></i></a></li><li class="list-inline-item mx-2 h3" data-toggle=tooltip data-placement=top title="Stack Overflow" aria-label="Stack Overflow"><a target=_blank rel=noopener href=https://stackoverflow.com/questions/tagged/localstack aria-label="Stack Overflow"><i class="fab fa-stack-overflow"></i></a></li></ul><ul class="list-inline mb-0"><li class="list-inline-item mx-2 h3" data-toggle=tooltip data-placement=top title=GitHub aria-label=GitHub><a target=_blank rel=noopener href=https://github.com/localstack/ aria-label=GitHub><i class="fab fa-github"></i></a></li><li class="list-inline-item mx-2 h3" data-toggle=tooltip data-placement=top title="Issue tracker" aria-label="Issue tracker"><a target=_blank rel=noopener href=https://github.com/localstack/localstack/issues aria-label="Issue tracker"><i class="fa fa-bug"></i></a></li><li class="list-inline-item mx-2 h3" data-toggle=tooltip data-placement=top title=Slack aria-label=Slack><a target=_blank rel=noopener href=https://localstack-community.slack.com/ aria-label=Slack><i class="fab fa-slack"></i></a></li></ul></div></div></div><div class=row><div class=col><hr><div class=row><div class=col><small>Copyright &copy; 2023 LocalStack All Rights Reserved</small></div><div class="col text-right"><small class=ml-1><a href=https://localstack.cloud/privacy-policy/ target=_blank rel=noopener>Privacy Policy</a></small></div></div></div></div></div></footer></div><script src=/js/main.min.1171c0d4dbac2c311ddef7a93d7145f6a82ce227d12106ba66debb77d44b9eef.js integrity="sha256-EXHA1NusLDEd3vepPXFF9qgs4ifRIQa6Zt67d9RLnu8=" crossorigin=anonymous></script>
You can access the Resource Browser by opening the LocalStack Web Application in your browser, navigating to the <strong>Resources</strong> section, and then clicking on <strong>SQS</strong> under the <strong>App Integration</strong> section.</p><img src=sqs-resource-browser.png alt="SQS Resource Browser" title="SQS Resource Browser" width=900><p>The Resource Browser allows you to perform the following actions:</p><ul><li><strong>Create Queue</strong>: Create a new SQS queue by specifying a queue name, optional attributes, and tags.</li><li><strong>Send Message</strong>: Send a message to an SQS queue by specifying the queue name, message body, delay seconds, optional message attributes, and more.</li><li><strong>View Details and Messages</strong>: View details and messages of an SQS queue by selecting the queue name and navigating to the <strong>Details</strong> and <strong>Messages</strong> tabs.</li><li><strong>Delete Queue</strong>: Delete an SQS queue by selecting the queue name and clicking the <strong>Action</strong> button, followed by <strong>Remove Selected</strong>.</li></ul><h2 id=examples>Examples</h2><p>The following code snippets and sample applications provide practical examples of how to use SQS in LocalStack for various use cases:</p><ul><li><a href=https://github.com/localstack/microservices-apigateway-lambda-dynamodb-sqs-sample>Serverless microservices with Amazon API Gateway, DynamoDB, SQS, and Lambda</a></li><li><a href=https://github.com/localstack/loan-broker-stepfunctions-lambda-app>Loan Broker application with AWS Step Functions, DynamoDB, Lambda, SQS, and SNS</a></li><li><a href=https://github.com/localstack/sqs-fargate-ddb-cdk-go>Messaging Processing application with SQS, DynamoDB, and Fargate</a></li><li><a href=https://github.com/localstack/sample-transcribe-app>Serverless Transcription application using Transcribe, S3, Lambda, SQS, and SES</a></li></ul><h2 id=limitations>Limitations</h2><p>A message&rsquo;s <code>ApproximateReceiveCount</code> attribute will be reset to 0 when the message moves to a DLQ.</p><br><div class="text-muted mt-5 pt-3 border-top">Last modified September 13, 2023: <a href=https://github.com/localstack/docs/commit/df7c0b04867aa1706b57a5133fd887130e8c4a76>fix queue names (#820) (df7c0b048)</a></div></div></main></div></div><footer class="footer-localstack d-print-none"><div class=container-fluid><div class=row><div class=col><div class=mb-3><a href=https://localstack.cloud><img class=footer-logo src=/images/logo.svg></a></div></div><div class=col><div class="text-right link-lists"><ul class="list-inline mb-0"><li class="list-inline-item mx-2 h3" data-toggle=tooltip data-placement=top title=Twitter aria-label=Twitter><a target=_blank rel=noopener href=https://twitter.com/localstack aria-label=Twitter><i class="fab fa-twitter"></i></a></li><li class="list-inline-item mx-2 h3" data-toggle=tooltip data-placement=top title=Discussion aria-label=Discussion><a target=_blank rel=noopener href=https://discuss.localstack.cloud/ aria-label=Discussion><i class="fa fa-comments"></i></a></li><li class="list-inline-item mx-2 h3" data-toggle=tooltip data-placement=top title="Stack Overflow" aria-label="Stack Overflow"><a target=_blank rel=noopener href=https://stackoverflow.com/questions/tagged/localstack aria-label="Stack Overflow"><i class="fab fa-stack-overflow"></i></a></li></ul><ul class="list-inline mb-0"><li class="list-inline-item mx-2 h3" data-toggle=tooltip data-placement=top title=GitHub aria-label=GitHub><a target=_blank rel=noopener href=https://github.com/localstack/ aria-label=GitHub><i class="fab fa-github"></i></a></li><li class="list-inline-item mx-2 h3" data-toggle=tooltip data-placement=top title="Issue tracker" aria-label="Issue tracker"><a target=_blank rel=noopener href=https://github.com/localstack/localstack/issues aria-label="Issue tracker"><i class="fa fa-bug"></i></a></li><li class="list-inline-item mx-2 h3" data-toggle=tooltip data-placement=top title=Slack aria-label=Slack><a target=_blank rel=noopener href=https://localstack-community.slack.com/ aria-label=Slack><i class="fab fa-slack"></i></a></li></ul></div></div></div><div class=row><div class=col><hr><div class=row><div class=col><small>Copyright &copy; 2023 LocalStack All Rights Reserved</small></div><div class="col text-right"><small class=ml-1><a href=https://localstack.cloud/privacy-policy/ target=_blank rel=noopener>Privacy Policy</a></small></div></div></div></div></div></footer></div><script src=/js/main.min.1171c0d4dbac2c311ddef7a93d7145f6a82ce227d12106ba66debb77d44b9eef.js integrity="sha256-EXHA1NusLDEd3vepPXFF9qgs4ifRIQa6Zt67d9RLnu8=" crossorigin=anonymous></script>
<script src=/js/tabpane-persist.js></script>
<script src=https://cdn.jsdelivr.net/npm/@docsearch/js@3></script>
<script type=text/javascript>docsearch({container:"#docsearch",appId:"XBW1JU7CW5",apiKey:"6b0341e2f50196d328d088dbb5cd6166",indexName:"localstack"})</script><script src=/js/global-script.js></script></body></html>

0 comments on commit b39ad97

Please sign in to comment.