Create Resources
S3 Bucket API
This endpoint creates a new AWS S3 Bucket and an API to communicate with it
GET
/
create
/
service
/
db
/
s3
/
{YOUR_BUCKET_NAME}
Path
curl --request GET \
--url https://vdrdfvu2b3.execute-api.us-east-2.amazonaws.com/v3/create/service/db/s3/{YOUR_BUCKET_NAME}
{
"statusCode": 200,
"body" {
...
compelete: true,
}
}
Path
YOUR_BUCKET_NAME
string
requiredThe name that you want to use to reference the S3 bucket you are creating. Must only be alpha numeric with only lower case letters and no special characters except hyphens.
Response
statusCode
number
Based off of standard HTTP request guidelines
body
object
Information concerning your newly created s3 bucket
curl --request GET \
--url https://vdrdfvu2b3.execute-api.us-east-2.amazonaws.com/v3/create/service/db/s3/{YOUR_BUCKET_NAME}
{
"statusCode": 200,
"body" {
...
compelete: true,
}
}