in src/main/java/com/amazon/neptune/gremlin/driver/sigv4/ChainedSigV4PropertiesProvider.java [82:92]
public SigV4Properties getSigV4PropertiesFromEnv() throws SigV4PropertiesNotFoundException {
final String serviceRegion = StringUtils.trim(System.getenv(SigV4Properties.SERVICE_REGION));
if (StringUtils.isBlank(serviceRegion)) {
final String msg = "SigV4 properties not found as a environment variable";
log.info(msg);
throw new SigV4PropertiesNotFoundException(msg);
}
return new SigV4Properties(serviceRegion);
}