Download Download

yaml
type: "io.kestra.plugin.minio.Download"

Download a file from a bucket.

Examples

yaml
id: "download"
type: "io.kestra.plugin.minio.Download"
accessKeyId: "<access-key>"
secretKeyId: "<secret-key>"
region: "eu-central-1"
bucket: "my-bucket"
key: "path/to/file"

Properties

accessKeyId

  • Type: string
  • Dynamic: ✔️
  • Required:

Access Key Id for authentication.

bucket

  • Type: string
  • Dynamic: ✔️
  • Required:

The bucket name.

endpoint

  • Type: string
  • Dynamic: ✔️
  • Required:

URL to the MinIO endpoint.

key

  • Type: string
  • Dynamic: ✔️
  • Required:

The key of a file to download.

region

  • Type: string
  • Dynamic: ✔️
  • Required:

MinIO region with which the SDK should communicate.

secretKeyId

  • Type: string
  • Dynamic: ✔️
  • Required:

Secret Key Id for authentication.

versionId

  • Type: string
  • Dynamic: ✔️
  • Required:

The specific version of the object.

Outputs

contentLength

  • Type: integer
  • Dynamic:
  • Required:

The size of the body in bytes.

uri

  • Type: string
  • Dynamic:
  • Required:
  • Format: uri

Definitions

Was this page helpful?