Added prefix, and SSE in S3 (#20678)

This commit is contained in:
aji-aju 2025-04-07 23:28:18 +05:30 committed by GitHub
parent b4c50e0201
commit 880a2cd7a8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -43,6 +43,15 @@ public class S3Configuration {
@JsonProperty("cloudFrontPrivateKeyPath")
private String cloudFrontPrivateKeyPath;
@JsonProperty("prefixPath")
private String prefixPath;
@JsonProperty("sseAlgorithm")
private String sseAlgorithm;
@JsonProperty("kmsKeyId")
private String kmsKeyId;
@AssertTrue(
message = "Either useIamRole must be true or both accessKey and secretKey must be provided")
public boolean isValidCredentials() {