PolicyArgs

data class PolicyArgs(val level: Output<String>, val stages: Output<List<String>>? = null) : ConvertibleToJava<PolicyArgs>

Policy defines the configuration of how audit events are logged

Constructors

Link copied to clipboard
constructor(level: Output<String>, stages: Output<List<String>>? = null)

Properties

Link copied to clipboard
val level: Output<String>

The Level that all requests are recorded at. available options: None, Metadata, Request, RequestResponse required

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

Stages is a list of stages for which events are created.

Functions

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