Operations (sample payloads)

Main operations
Copy

Raw AWS request
Copy

Make a raw HTTP request to an AWS service. This operation is only functional with AWS Services that use the AWS Signature 4 authentication mechanism.

Sample Input

1
{
2
"method": "GET",
3
"service": "s3",
4
"target_url": "https://s3.amazonaws.com/my-bucket/my-object.txt",
5
"region": "us-east-1",
6
"headers": [
7
{
8
"key": "Content-Type",
9
"value": "application/json"
10
}
11
],
12
"query_parameters": [
13
{
14
"key": "versionId",
15
"value": "abc123"
16
}
17
]
18
}

Sample Output

1
{
2
"response": {
3
"status_code": 200,
4
"headers": "Content-Type: text/plain\nContent-Length: 14\nETag: \"686897696a7c876b7e\"\nServer: AmazonS3",
5
"body": "Hello, World!"
6
}
7
}