List of usage examples for com.amazonaws.services.ec2.model LaunchPermission getGroup
public String getGroup()
The name of the group.
From source file:org.xmlsh.aws.util.AWSEC2Command.java
License:BSD License
private void writeLaunchPermission(LaunchPermission p) throws XMLStreamException { startElement("launch-permissions"); if (!Util.isBlank(p.getGroup())) attribute("group", p.getGroup()); if (!Util.isBlank(p.getUserId())) attribute("user-id", p.getUserId()); endElement();/* www . j a v a 2 s . c o m*/ }