Scalr\Service\Aws\Rds\DataType\CreateDBClusterRequestData::setTags PHP Method

setTags() public method

Sets Tags list
public setTags ( Scalr\Service\Aws\Rds\DataType\TagsList | array | string $tags = null ) : Scalr\Service\Aws\Rds\DataType\CreateDBInstanceRequestData
$tags Scalr\Service\Aws\Rds\DataType\TagsList | array | string A list of tags to associate with this DB Cluster.
return Scalr\Service\Aws\Rds\DataType\CreateDBInstanceRequestData
    public function setTags($tags = null)
    {
        if ($tags !== null && !$tags instanceof TagsList) {
            $tags = new TagsList($tags);
        }
        return $this->__call(__FUNCTION__, array($tags));
    }