3.1 KiB
mc share list
minio
Table of Contents
mc share list
Syntax
The mc share list
command displays any unexpired presigned URLs generated by mc share upload
or mc share download
Applications can perform a PUT
to retrieve the object
from the URL.
For more information on shareable object URLs, see the Amazon S3
documentation on Pre-Signed URLs
<AmazonS3/latest/dev/ShareObjectPreSignedURL.html>
.
EXAMPLE
The following command lists all upload and download presigned URLs
respectively for the mydata
bucket on the
myminio
MinIO deployment:
mc share list upload myminio/mydata
mc share list download myminio/mydata
SYNTAX
The command has the following syntax:
mc [GLOBALFLAGS] share list \
[download | upload] \
ALIAS
Parameters
download
Required Lists all unexpired presigned download
(GET
) URLs.
Mutually exclusive with mc share list upload
upload
Required Lists all unexpired presigned upload
(PUT
) URLs.
Mutually exclusive with mc share list download
ALIAS
Required The alias <alias>
of a MinIO deplyment and the full
path to the object for which to list unexpired presigned URLs.
Global Flags
Examples
List Generated Download and Upload URLs
List Active Download Presigned URLs
Use mc share list download
to generate a URL that
supports POST
requests for uploading a file to a specific
object location on an S3-compatible host:
mc share list download ALIAS
- Replace
ALIAS <mc share list ALIAS>
with thealias <alias>
of the MinIO deployment.
List Active Upload Presigned URLs
Use mc share list upload
to generate a URL that
supports POST
requests for uploading a file to a specific
object location on an S3-compatible host:
mc share list upload ALIAS
- Replace
ALIAS <mc share upload ALIAS>
with thealias <alias>
of the MinIO deployment.