in lambda-bulk-importer/main.py [0:0]
def get_thing(thingName):
try:
response = iot_client.describe_thing(thingName=thingName)
return response.get("thingArn")
except:
print("Thing [" + thingName + "] not found in IoT Core.")
return None