handsome-rocket-92204
05/21/2019, 7:48 PMapigwclient = boto3.client('apigateway')
existingapigws = apigwclient.get_rest_apis().get('items')
for gw in existingapigws:
  name = gw.get('name')
  if name in names:
    names.remove(name)
So I'm just removing gateways that already exist from my list of ones to create before the main loop