How to use DisableExecuteApiEndpoint at provider in serverless.yml

Hello,

I want to use DisableExecuteApiEndpoint at provider in serverless.yml

that like,

provider:
  name: aws
  httpApi:
    disableExecuteApiEndpoint: false

Please advise,

Hunt

For anyone else who comes across this in future this is possible for both http and rest APIs

provider:
  apiGateway:
    disableDefaultEndpoint: true

or

provider:
  httpApi:
    disableDefaultEndpoint: true