com.crabshue.commons.aws.AwsCredentials Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-aws Show documentation
Show all versions of commons-aws Show documentation
Library for common Amazon AWS integration.
package com.crabshue.commons.aws;
import lombok.Data;
import lombok.ToString;
/**
* Credentials for AWS services.
*/
@Data
public class AwsCredentials {
private String accessKeyId;
@ToString.Exclude
private String secretKeyId;
}