HandlerMappingArgs

data class HandlerMappingArgs(val arguments: Output<String>? = null, val extension: Output<String>? = null, val scriptProcessor: Output<String>? = null) : ConvertibleToJava<HandlerMappingArgs>

The IIS handler mappings used to define which handler processes HTTP requests with certain extension. For example, it is used to configure php-cgi.exe process to handle all HTTP requests with *.php extension.

Constructors

Link copied to clipboard
constructor(arguments: Output<String>? = null, extension: Output<String>? = null, scriptProcessor: Output<String>? = null)

Properties

Link copied to clipboard
val arguments: Output<String>? = null

Command-line arguments to be passed to the script processor.

Link copied to clipboard
val extension: Output<String>? = null

Requests with this extension will be handled using the specified FastCGI application.

Link copied to clipboard
val scriptProcessor: Output<String>? = null

The absolute path to the FastCGI application.

Functions

Link copied to clipboard
open override fun toJava(): HandlerMappingArgs