curl --request PUT \
--url https://api.example.com/api/integrations/s3 \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"enabled": true,
"url": "<string>",
"bucket": "<string>",
"region": "<string>",
"prefix": "<string>",
"endpoint_url": "<string>",
"use_path_style": true,
"kms_key_id": "<string>",
"notify_on_complete": true,
"notify_on_failure": true,
"access_key_id": "<string>",
"secret_access_key": "<string>",
"session_token": "<string>",
"clear_credentials": true
}
'