HTTPGetActionArgs

data class HTTPGetActionArgs(val path: Output<String>? = null, val scheme: Output<Either<String, HTTPSchemeType>>? = null, val type: Output<String>) : ConvertibleToJava<HTTPGetActionArgs>

HTTPGetAction describes an action based on HTTP Get requests.

Constructors

Link copied to clipboard
constructor(path: Output<String>? = null, scheme: Output<Either<String, HTTPSchemeType>>? = null, type: Output<String>)

Properties

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

Path to access on the HTTP server.

Link copied to clipboard
val scheme: Output<Either<String, HTTPSchemeType>>? = null

Scheme to use for connecting to the host. Defaults to HTTP. Possible enum values:

Link copied to clipboard
val type: Output<String>

The type of the action to take to perform the health check. Expected value is 'HTTPGetAction'.

Functions

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