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

technology.dice.dicewhere.downloader.actions.S3ClientConfig Maven / Gradle / Ivy

There is a newer version: 1.3.12
Show newest version
package technology.dice.dicewhere.downloader.actions;

import java.util.Objects;

public final class S3ClientConfig {
  private final String awsKeyId;
  private final String awsSecretKey;
  private final String awsRegion;

  public S3ClientConfig(String awsKeyId, String awsSecretKey, String awsRegion) {
    Objects.nonNull(awsKeyId);
    Objects.nonNull(awsSecretKey);
    Objects.nonNull(awsRegion);
    this.awsKeyId = awsKeyId;
    this.awsSecretKey = awsSecretKey;
    this.awsRegion = awsRegion;
  }

  public String getAwsKeyId() {
    return awsKeyId;
  }

  public String getAwsSecretKey() {
    return awsSecretKey;
  }

  public String getAwsRegion() {
    return awsRegion;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy