private static Options setupCliOptions()

in src/main/java/com/amazon/neptune/gremlin/driver/example/NeptuneGremlinSigV4Example.java [125:142]


    private static Options setupCliOptions() {
        final Options options = new Options();

        final Option endpoint = new Option("e", ENDPOINT, true, "The db cluster/instance endpoint");
        endpoint.setRequired(true);
        options.addOption(endpoint);

        final Option port = new Option("p", PORT, true, "The db cluster/instance port");
        port.setRequired(true);
        options.addOption(port);

        final Option ssl = new Option("s", SSL, true, "Whether to enable ssl on the connection");
        ssl.setRequired(false);
        ssl.setType(Boolean.class);
        options.addOption(ssl);

        return options;
    }