s3.js 301 B

12345678910111213141516171819202122232425262728
  1. module.exports = {
  2. key: 's3',
  3. title: 'Amazon S3',
  4. props: {
  5. accessKeyId: String,
  6. accessSecret: String,
  7. region: String,
  8. bucket: String
  9. },
  10. activate() {
  11. },
  12. deactivate() {
  13. },
  14. created(opts) {
  15. },
  16. updated(opts) {
  17. },
  18. deleted(opts) {
  19. },
  20. renamed(opts) {
  21. }
  22. }