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

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

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

import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.experimental.SuperBuilder;

@SuperBuilder
@Getter
@NoArgsConstructor
public abstract class ObjectOutput {
    @Schema(
        title = "An ETag is an opaque identifier assigned by a web server to a specific version of a resource found at a URL."
    )
    private String eTag;

    @Schema(
        title = "The version of the object."
    )
    private String versionId;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy