Scalr\Service\Aws\Rds\DataType\DBInstanceData::removeTags PHP Method

removeTags() public method

Removes metadata tags from an Amazon RDS resource.
public removeTags ( array | ListDataType $tagsKeys ) : boolean
$tagsKeys array | Scalr\Service\Aws\DataType\ListDataType Array of tag keys to remove
return boolean
    public function removeTags($tagsKeys)
    {
        $this->throwExceptionIfNotInitialized();
        return $this->getRds()->tag->remove($this->dBInstanceIdentifier, Rds::DB_INSTANCE_RESOURCE_TYPE, $tagsKeys);
    }