Scalr\Service\Aws\Ec2\DataType\VolumeData::delete PHP 메소드

delete() 공개 메소드

Deletes an Amazon EBS volume. The volume must be in the available state (not attached to an instance)
public delete ( ) : boolean
리턴 boolean Returns true on success or throws an exception otherwise
    public function delete()
    {
        $this->throwExceptionIfNotInitialized();
        return $this->getEc2()->volume->delete($this->volumeId);
    }