
com.crabshue.commons.aws.s3.AwsS3Bucket Maven / Gradle / Ivy
package com.crabshue.commons.aws.s3;
import com.amazonaws.regions.Regions;
/**
* Details for an AWS S3 bucket.
*
*/
public class AwsS3Bucket {
private String name;
private Regions region;
public String getName() {
return name;
}
public AwsS3Bucket name(final String name) {
this.name = name;
return this;
}
public Regions getRegion() {
return region;
}
public AwsS3Bucket region(final Regions region) {
this.region = region;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy