AwsInspector\Model\AbstractResource::getTag PHP Method

getTag() public method

public getTag ( string $key ) : sring | null
$key string
return sring | null
    public function getTag($key)
    {
        $tags = $this->getAssocTags();
        return isset($tags[$key]) ? $tags[$key] : null;
    }