Linux worldls-302.fr.planethoster.net 4.18.0-553.8.1.lve.el7h.x86_64 #1 SMP Thu Jul 4 15:19:33 UTC 2024 x86_64
LiteSpeed
Server IP : 10.185.0.203 & Your IP : 216.73.217.14
Domains :
Cant Read [ /etc/named.conf ]
User : gerathty
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
python2.7 /
site-packages /
awscli /
examples /
sqs /
Delete
Unzip
Name
Size
Permission
Date
Action
add-permission.rst
333
B
-rw-r--r--
2017-04-04 16:39
change-message-visibility-batch.rst
793
B
-rw-r--r--
2017-04-04 16:39
change-message-visibility.rst
359
B
-rw-r--r--
2017-04-04 16:39
create-queue.rst
679
B
-rw-r--r--
2017-04-04 16:39
delete-message-batch.rst
594
B
-rw-r--r--
2017-04-04 16:39
delete-message.rst
230
B
-rw-r--r--
2017-04-04 16:39
delete-queue.rst
192
B
-rw-r--r--
2017-04-04 16:39
get-queue-attributes.rst
1.24
KB
-rw-r--r--
2017-04-04 16:39
get-queue-url.rst
211
B
-rw-r--r--
2017-04-04 16:39
list-dead-letter-source-queues.rst
429
B
-rw-r--r--
2017-04-04 16:39
list-queues.rst
789
B
-rw-r--r--
2017-04-04 16:39
purge-queue.rst
204
B
-rw-r--r--
2017-04-04 16:39
receive-message.rst
1.96
KB
-rw-r--r--
2017-04-04 16:39
remove-permission.rst
274
B
-rw-r--r--
2017-04-04 16:39
send-message-batch.rst
2.13
KB
-rw-r--r--
2017-04-04 16:39
send-message.rst
859
B
-rw-r--r--
2017-04-04 16:39
set-queue-attributes.rst
989
B
-rw-r--r--
2017-04-04 16:39
Save
Rename
**To send multiple messages as a batch** This example sends 2 messages with the specified message bodies, delay periods, and message attributes, to the specified queue. Command:: aws sqs send-message-batch --queue-url https://sqs.us-east-1.amazonaws.com/80398EXAMPLE/MyQueue --entries file://send-message-batch.json Input file (send-message-batch.json):: [ { "Id": "FuelReport-0001-2015-09-16T140731Z", "MessageBody": "Fuel report for account 0001 on 2015-09-16 at 02:07:31 PM.", "DelaySeconds": 10, "MessageAttributes": { "SellerName": { "DataType": "String", "StringValue": "Example Store" }, "City": { "DataType": "String", "StringValue": "Any City" }, "Region": { "DataType": "String", "StringValue": "WA" }, "PostalCode": { "DataType": "String", "StringValue": "99065" }, "PricePerGallon": { "DataType": "Number", "StringValue": "1.99" } } }, { "Id": "FuelReport-0002-2015-09-16T140930Z", "MessageBody": "Fuel report for account 0002 on 2015-09-16 at 02:09:30 PM.", "DelaySeconds": 10, "MessageAttributes": { "SellerName": { "DataType": "String", "StringValue": "Example Fuels" }, "City": { "DataType": "String", "StringValue": "North Town" }, "Region": { "DataType": "String", "StringValue": "WA" }, "PostalCode": { "DataType": "String", "StringValue": "99123" }, "PricePerGallon": { "DataType": "Number", "StringValue": "1.87" } } } ] Output:: { "Successful": [ { "MD5OfMessageBody": "203c4a38...7943237e", "MD5OfMessageAttributes": "10809b55...baf283ef", "Id": "FuelReport-0001-2015-09-16T140731Z", "MessageId": "d175070c-d6b8-4101-861d-adeb3EXAMPLE" }, { "MD5OfMessageBody": "2cf0159a...c1980595", "MD5OfMessageAttributes": "55623928...ae354a25", "Id": "FuelReport-0002-2015-09-16T140930Z", "MessageId": "f9b7d55d-0570-413e-b9c5-a9264EXAMPLE" } ] }