NonCompliantFileArgs

data class NonCompliantFileArgs(val displayCommand: Output<String>? = null, val path: Output<String>? = null, val reason: Output<String>? = null) : ConvertibleToJava<NonCompliantFileArgs>

Details about files that caused a compliance check to fail.

Constructors

Link copied to clipboard
fun NonCompliantFileArgs(displayCommand: Output<String>? = null, path: Output<String>? = null, reason: Output<String>? = null)

Functions

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

Properties

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

Command to display the non-compliant files.

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

display_command is a single command that can be used to display a list of non compliant files. When there is no such command, we can also iterate a list of non compliant file using 'path'. Empty if display_command is set.

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

Explains why a file is non compliant for a CIS check.