Okay, installed awscli and now have this issue
aws s3api list-multipart-uploads --bucket bucket_name
Could not connect to the endpoint URL: "https://smtapp.s3.AMS3.amazonaws.com/?uploads"
so tried adding endpoint:
aws s3api list-multipart-uploads aws --endpoint=https://ams3.digitaloceanspaces.com --bucket bucket_name
usage: aws [options] <command> <subcommand> [<subcommand> ...] [parameters]
To see help text, you can run:
aws help
aws <command> help
aws <command> <subcommand> help
Unknown options: aws`
but that did not work yet either. Then I saw the typo duplicate aws so did
aws s3api list-multipart-uploads --endpoint https://ams3.digitaloceanspaces.com --bucket bucket_name
so nothing listed at all. With debug I saw this
aws s3api list-multipart-uploads --debug --endpoint https://ams3.digitaloceanspaces.com --bucket bucket_name
2023-04-15 09:42:06,446 - MainThread - awscli.clidriver - DEBUG - CLI version: aws-cli/2.11.13 Python/3.11.3 Darwin/22.4.0 source/arm64
2023-04-15 09:42:06,446 - MainThread - awscli.clidriver - DEBUG - Arguments entered to CLI: ['s3api', 'list-multipart-uploads', '--debug', '--endpoint', 'https://ams3.digitaloceanspaces.com', '--bucket', 'bucket_name']
...
2023-04-15 09:42:06,527 - MainThread - urllib3.connectionpool - DEBUG - Starting new HTTPS connection (1): ams3.digitaloceanspaces.com:443
2023-04-15 09:42:07,268 - MainThread - urllib3.connectionpool - DEBUG - https://ams3.digitaloceanspaces.com:443 "GET /bucket_name?uploads HTTP/1.1" 200 None
2023-04-15 09:42:07,269 - MainThread - botocore.parsers - DEBUG - Response headers: {'x-amz-request-id': 'tx000000000000005a03780-00643a0eff-3790532c-ams3a', 'content-type': 'application/xml', 'date': 'Sat, 15 Apr 2023 02:42:07 GMT', 'strict-transport-security': 'max-age=15552000; includeSubDomains; preload', 'transfer-encoding': 'chunked’}
...
/bucket_name
uploads=
host:ams3.digitaloceanspaces.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20230415T024206Z
...
And got nothing listed either. Did see uploads mentioned in debug so perhaps I need to add an object ID or something. Not sure yet how.
Do however think it is 190GB of which I only really have 10GB now and some stuff is in the trash. How to empty trash?