I want one more option for aws s3bucket so that i can also mount the s3 volume

Thanks
@santoshray02 As far as I know there is no driver for network mount of Amazon S3, so you need to create your own. You need to create a driver class or create a network mount driver that uses FlySystem.
There are similar drivers for Box, Dropbox, GoogleDrive (with FlySystem), OneDrive. Will the source code help you?
Thanks @nao-pon
Let me try it once .
@santoshray02 Please notify here when you got it.
I'm also interested in getting this working. I have tried to add the following to the connector.minimal.php file, but no luck as yet. Not really sure what else needs to be done.
```
//S3 Attempt
array(
'id' => '1',
'driver' => 'S3',
'path' => 's3-eu-west-1.amazonaws.com',
'URL' => 'https://s3-eu-west-1.amazonaws.com/',
"s3" => array(
"key" => "xxxxxxxxx",
"secret" => "xxxxxxxx",
"region" => "eu-west-1"
),
"bucket" => "xxxxxxx",
"acl" => "private"
),
I made a working demo of S3 connector with full code example at this repo: https://github.com/bayucandra/ckeditor-elfinder . Please check README.md for detail how it was built and how to run the repo. Hope it helps someone.
Most helpful comment
I made a working demo of S3 connector with full code example at this repo: https://github.com/bayucandra/ckeditor-elfinder . Please check README.md for detail how it was built and how to run the repo. Hope it helps someone.