public static boolean isNullOrEmpty()

in aws-synthetics-canary/src/main/java/com/amazon/synthetics/canary/CanaryHelper.java [33:40]


    public static boolean isNullOrEmpty(CanaryRunConfigOutput runConfigOutput) {
        if (runConfigOutput == null) {
            return true;
        }

        return runConfigOutput.timeoutInSeconds() == null
            && runConfigOutput.memoryInMB() == null;
    }