Delete
Delete a file from a MinIO bucket.
yaml
type: "io.kestra.plugin.minio.Delete"
Examples
yaml
id: minio_delete
namespace: company.team
tasks:
- id: delete
type: io.kestra.plugin.minio.Delete
accessKeyId: "<access-key>"
secretKeyId: "<secret-key>"
region: "eu-central-1"
bucket: "my-bucket"
key: "path/to/file"
Delete file from an S3-compatible storage — here, Spaces Object Storage from Digital Ocean.
yaml
id: s3_compatible_delete
namespace: company.team
tasks:
- id: delete
type: io.kestra.plugin.minio.Delete
accessKeyId: "<access-key>"
secretKeyId: "<secret-key>"
endpoint: https://<region>.digitaloceanspaces.com
bucket: "kestra-test-bucket"
key: "path/to/file"
Properties
accessKeyId string
Access Key Id for authentication.
bucket string
The bucket name.
bypassGovernanceRetention booleanstring
Indicates whether Object Lock should bypass Governance-mode restrictions to process this operation.
endpoint string
URL to the MinIO endpoint.
key string
The key to delete.
region string
MinIO region with which the SDK should communicate.
secretKeyId string
Secret Key Id for authentication.