win_iis_website- Parameters

How do we know the available parameters in this module , the example given in the doc is as follows, what are the other parameters that we can set?

- name: Acme IIS site
  win_iis_website:
    name: "Acme"
    state: started
    port: 80
    ip: 127.0.0.1
    hostname: acme.local
    application_pool: "acme"
    physical_path: c:\sites\acme
    **parameters: logfile.directory:c:\sites\logs**
  register: website

These are IIS site parameters, so refer to the IIS documentation for those.
For instance https://www.iis.net/configreference/system.applicationhost/sites/sitedefaults

Dick