
org.kuali.common.deploy.aws.model.EC2Context Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kuali-deploy Show documentation
Show all versions of kuali-deploy Show documentation
Project containing deployment logic for Kuali applications
The newest version!
package org.kuali.common.deploy.aws.model;
import org.kuali.common.util.Assert;
public class EC2Context {
public EC2Context(String ami, String securityGroup, String type) {
Assert.noBlanks(ami, securityGroup, type);
this.ami = ami;
this.securityGroup = securityGroup;
this.type = type;
}
private final String ami;
private final String securityGroup;
private final String type;
public String getAmi() {
return ami;
}
public String getSecurityGroup() {
return securityGroup;
}
public String getType() {
return type;
}
}