Cannot see deployment in AWS Console

I was able to successfully deploy serverless to AWS. But, I am unable to see anything in the console. I am in the correct region. Nothing shows up in lambdas or api gateway. My serverless.yml is below:

service: lynksin-golf-dev-will

provider:
  name: aws
  runtime: nodejs12.x
  environment: ${file(../config/develop.yml):environment}
  stage: develop
  region: us-west-1
  versionFunctions: false
  # vpc: ${file(../config/production.yml):vpc}
  vpc: ${file(../config/develop.yml):vpc}

plugins:
  - serverless-plugin-typescript
  - serverless-offline
  - serverless-plugin-split-stacks

custom: 
  authorizer: 
    name: authorizer
    resultTtlInSeconds: 0
    identitySource: method.request.header.Authorization
    type: token
  cors: 
    origin: '*'
    headers:
      - Content-Type
      - X-Amz-Date
      - Authorization
      - X-Api-Key
      - X-Amz-Security-Token
      - X-Amz-User-Agent
      - Accept-Encoding
      - Content-Encoding
  splitStacks:
    nestedStackCount: 20 
    perFunction: true
    perType: false
    perGroupFunction: false
    stackConcurrency: 5 
    resourceConcurrency: 10
 
functions:
  authorizer:
    handler: authorizer/handler.authorize
  users: ${file(./routers/users.yml)}
  globals: ${file(./routers/globals.yml)}
  matches: ${file(./routers/matches.yml)}
  clubs: ${file(./routers/clubs.yml)}
  leaderboards: ${file(./routers/leaderboards.

What is your deployment output? Also it looks like your last line is missing a file extension and some necessary syntax.