Documentation Index
Fetch the complete documentation index at: https://developers.telnyx.com/llms.txt
Use this file to discover all available pages before exploring further.
Check out our upcoming events and meetups! View events ā
Learn to retrieve bucket CORS settings in Telnyx Cloud Storage using AWS S3 API with example command output.
Documentation Index
Fetch the complete documentation index at: https://developers.telnyx.com/llms.txt
Use this file to discover all available pages before exploring further.
user@host % aws s3api get-bucket-cors --bucket my_bucket
{
"CORSRules": [
{
"AllowedHeaders": [
"*"
],
"AllowedMethods": [
"PUT",
"DELETE",
"POST"
],
"AllowedOrigins": [
"http://www.example.com"
]
},
{
"AllowedMethods": [
"GET"
],
"AllowedOrigins": [
"*"
]
}
]
}
Was this page helpful?