options.add_option("","i","file-info","A JSON file (generated by the SEGYScan tool) containing information about the input SEG-Y file.",cxxopts::value<std::string>(fileInfoFileName),"<file>");
options.add_option("","b","brick-size","The brick size for the volume data store.",cxxopts::value<int>(brickSize)->default_value("64"),"<value>");
options.add_option("","f","force","Continue on upload error.",cxxopts::value<bool>(force),"");
options.add_option("","","bucket","Bucket to upload to.",cxxopts::value<std::string>(bucket),"<string>");
options.add_option("","","region","Region of bucket to upload to.",cxxopts::value<std::string>(region),"<string>");
options.add_option("","","prefix","Top-level prefix to prepend to all object-keys.",cxxopts::value<std::string>(prefix),"<string>");