Scalr\Service\Aws\Rds\DataType\DBInstanceData::removeTags PHP Méthode

removeTags() public méthode

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
Résultat boolean
    public function removeTags($tagsKeys)
    {
        $this->throwExceptionIfNotInitialized();
        return $this->getRds()->tag->remove($this->dBInstanceIdentifier, Rds::DB_INSTANCE_RESOURCE_TYPE, $tagsKeys);
    }