Class: Aws::Glue::Types::EventBatchingCondition

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-glue/types.rb

Overview

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#batch_sizeInteger

Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.

Returns:

  • (Integer)


8539
8540
8541
8542
8543
8544
# File 'lib/aws-sdk-glue/types.rb', line 8539

class EventBatchingCondition < Struct.new(
  :batch_size,
  :batch_window)
  SENSITIVE = []
  include Aws::Structure
end

#batch_windowInteger

Window of time in seconds after which EventBridge event trigger fires. Window starts when first event is received.

Returns:

  • (Integer)


8539
8540
8541
8542
8543
8544
# File 'lib/aws-sdk-glue/types.rb', line 8539

class EventBatchingCondition < Struct.new(
  :batch_size,
  :batch_window)
  SENSITIVE = []
  include Aws::Structure
end