GetTriggerResult

data class GetTriggerResult(val actions: List<TriggerAction>? = null, val description: String? = null, val eventBatchingCondition: TriggerEventBatchingCondition? = null, val predicate: TriggerPredicate? = null, val schedule: String? = null, val tags: Any? = null)

Constructors

Link copied to clipboard
constructor(actions: List<TriggerAction>? = null, description: String? = null, eventBatchingCondition: TriggerEventBatchingCondition? = null, predicate: TriggerPredicate? = null, schedule: String? = null, tags: Any? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val actions: List<TriggerAction>? = null

The actions initiated by this trigger.

Link copied to clipboard
val description: String? = null

A description of this trigger.

Link copied to clipboard

Batch condition that must be met (specified number of events received or batch time window expired) before EventBridge event trigger fires.

Link copied to clipboard

The predicate of this trigger, which defines when it will fire.

Link copied to clipboard
val schedule: String? = null

A cron expression used to specify the schedule.

Link copied to clipboard
val tags: Any? = null

The tags to use with this trigger. Search the CloudFormation User Guide for AWS::Glue::Trigger for more information about the expected schema for this property.