Scalr\Service\Aws\Ec2\DataType\InstanceData::getConsoleOutput PHP Method

getConsoleOutput() public method

Retrieves console output for the specified instance. Instance console output is buffered and posted shortly after instance boot, reboot, and termination. Amazon EC2 preserves the most recent 64 KB output which will be available for at least one hour after the most recent post.
public getConsoleOutput ( ) : GetConsoleOutputResponseData
return GetConsoleOutputResponseData Returns object which represents console output.
    public function getConsoleOutput()
    {
        $this->throwExceptionIfNotInitialized();
        return $this->getEc2()->instance->getConsoleOutput($this->instanceId);
    }