aws-lightsail-bucket/src/main/java/software/amazon/lightsail/bucket/helpers/resource/Bucket.java [142:149]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public boolean isStabilizedUpdate() {
        val awsResponse = ((GetBucketsResponse) this
                .read(GetBucketsRequest.builder().bucketName(resourceModel.getBucketName()).build()));
        val currentState = getCurrentState(awsResponse);
        logger.log(String.format("Checking if Bucket: %s has stabilized. Current state: %s",
                resourceModel.getBucketName(), currentState));
        return ("OK".equalsIgnoreCase(currentState));
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



aws-lightsail-bucket/src/main/java/software/amazon/lightsail/bucket/helpers/resource/Bucket.java [151:158]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public boolean isStabilizedCreate() {
        val awsResponse = ((GetBucketsResponse) this
                .read(GetBucketsRequest.builder().bucketName(resourceModel.getBucketName()).build()));
        val currentState = getCurrentState(awsResponse);
        logger.log(String.format("Checking if Bucket: %s has stabilized. Current state: %s",
                resourceModel.getBucketName(), currentState));
        return ("OK".equalsIgnoreCase(currentState));
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



