Lifecycle Handler Args
data class LifecycleHandlerArgs(val exec: Output<ExecActionArgs>? = null, val httpGet: Output<HTTPGetActionArgs>? = null, val tcpSocket: Output<TCPSocketActionArgs>? = null) : ConvertibleToJava<LifecycleHandlerArgs>
LifecycleHandler defines a specific action that should be taken in a lifecycle hook. One and only one of the fields, except TCPSocket must be specified.
Constructors
Link copied to clipboard
fun LifecycleHandlerArgs(exec: Output<ExecActionArgs>? = null, httpGet: Output<HTTPGetActionArgs>? = null, tcpSocket: Output<TCPSocketActionArgs>? = null)