Scalr\Service\Aws\Ec2\DataType\SnapshotData::delete PHP Метод

delete() публичный Метод

Deletes a snapshot of an Amazon EBS volume. Note! If you make periodic snapshots of a volume, the snapshots are incremental so that only the blocks on the device that have changed since your last snapshot are incrementally saved in the new snapshot. Even though snapshots are saved incrementally, the snapshot deletion process is designed so that you need to retain only the most recent snapshot in order to restore the volume.
public delete ( ) : boolean
Результат boolean Returns TRUE on success
    public function delete()
    {
        $this->throwExceptionIfNotInitialized();
        return $this->getEc2()->snapshot->delete($this->snapshotId);
    }