package software.amazon.ses.configurationset; import org.json.JSONObject; public class ResourceModelExtensions { public static JSONObject getPrimaryIdentifier(final ResourceModel model) { final JSONObject identifier = new JSONObject(); identifier.append("Name", model.getName()); return identifier; } }