All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.kestra.plugin.aws.s3.AbstractS3ObjectInterface Maven / Gradle / Ivy

The newest version!
package io.kestra.plugin.aws.s3;

import io.kestra.core.models.annotations.PluginProperty;
import io.swagger.v3.oas.annotations.media.Schema;
import jakarta.validation.constraints.NotNull;

public interface AbstractS3ObjectInterface extends AbstractS3 {
    @Schema(
        title = "The S3 bucket name."
    )
    @PluginProperty(dynamic = true)
    @NotNull
    String getBucket();

    @Schema(
        title = "Sets the value of the RequestPayer property for this object."
    )
    @PluginProperty(dynamic = true)
    String getRequestPayer();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy