aws-lightsail-loadbalancer/src/main/java/software/amazon/lightsail/loadbalancer/helpers/resource/Instance.java [47:53]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public boolean isStabilized(String instanceName) {
        val awsResponse = ((GetInstanceResponse) this.read(instanceName));
        val currentState = getCurrentState(awsResponse);
        logger.log(String.format("Checking if Instance: %s has stabilized. Current state: %s",
                instanceName, currentState));
        return "running".equalsIgnoreCase(currentState);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



aws-lightsail-bucket/src/main/java/software/amazon/lightsail/bucket/helpers/resource/Instance.java [47:53]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public boolean isStabilized(String instanceName) {
        val awsResponse = ((GetInstanceResponse) this.read(instanceName));
        val currentState = getCurrentState(awsResponse);
        logger.log(String.format("Checking if Instance: %s has stabilized. Current state: %s",
                instanceName, currentState));
        return "running".equalsIgnoreCase(currentState);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



