public String getRequiredStringProperty()

in src/main/java/com/amazonaws/secretsmanager/util/Config.java [301:305]


    public String getRequiredStringProperty(String propertyName) {
        throwIfPropertyIsNotSet(propertyName);
        String propertyValue = config.getProperty(propertyName);
        return propertyValue;
    }