AutomationSourceArgs

data class AutomationSourceArgs(val eventSource: Output<Either<String, EventSource>>? = null, val ruleSets: Output<List<AutomationRuleSetArgs>>? = null) : ConvertibleToJava<AutomationSourceArgs>

The source event types which evaluate the security automation set of rules. For example - security alerts and security assessments. To learn more about the supported security events data models schemas - please visit https://aka.ms/ASCAutomationSchemas.

Constructors

Link copied to clipboard
constructor(eventSource: Output<Either<String, EventSource>>? = null, ruleSets: Output<List<AutomationRuleSetArgs>>? = null)

Properties

Link copied to clipboard
val eventSource: Output<Either<String, EventSource>>? = null

A valid event source type.

Link copied to clipboard
val ruleSets: Output<List<AutomationRuleSetArgs>>? = null

A set of rules which evaluate upon event interception. A logical disjunction is applied between defined rule sets (logical 'or').

Functions

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