signaloid-cli buckets update
Update AWS S3 bucket configuration.
Synopsis
signaloid-cli buckets update --bucket-id <id> [options]
Options
| Option | Required | Description |
|---|---|---|
--bucket-id <id> | Yes | Bucket ID |
--name <name> | No | New bucket name |
--mount-path <path> | No | New mount path |
--read | No | Enable/update read access |
--write | No | Enable/update write access |
Description
Updates an existing bucket configuration. You can modify the bucket name, mount path, and access permissions. The bucket ID is required to identify which bucket to update.
Use this command to change settings without needing to delete and recreate the bucket configuration.
Examples
signaloid-cli buckets update \
--bucket-id bucket_abc123 \
--write
Notes
- At least one optional parameter must be provided along with the bucket ID
- Changes to mount paths will affect any running tasks using the bucket
- Access permissions can be updated without affecting existing data
Troubleshooting
Issue: Bucket not found error
- Verify the bucket ID is correct using
signaloid-cli buckets list - Ensure the bucket hasn't been deleted
Issue: Mount path update fails
- Check that the new mount path doesn't conflict with other buckets
- Ensure no active tasks are using the current mount path
See Also
- signaloid-cli buckets - Buckets command overview
- signaloid-cli buckets list - List configured buckets
- signaloid-cli buckets create - Create a new bucket
- signaloid-cli buckets delete - Delete a bucket