module Aws::Api::Docs::Crosslink
def self.exclude?(uid)
def self.exclude?(uid) EXCLUDE_UIDS.any? do |service| uid.match(/^#{service}/) end end
def self.tag_string(uid, name)
def self.tag_string(uid, name) path = "#{ENV['BASEURL']}goto/WebAPI/#{uid}/#{name}" "@see #{path} AWS API Documentation" end
def self.taggable?(uid)
def self.taggable?(uid) uid && ENV['BASEURL'] && !exclude?(uid) end