Class: Aws::Glue::Types::EventBatchingCondition
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::EventBatchingCondition
- 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
-
#batch_size ⇒ Integer
Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.
-
#batch_window ⇒ Integer
Window of time in seconds after which EventBridge event trigger fires.
Instance Attribute Details
#batch_size ⇒ Integer
Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.
9107 9108 9109 9110 9111 9112 |
# File 'lib/aws-sdk-glue/types.rb', line 9107 class EventBatchingCondition < Struct.new( :batch_size, :batch_window) SENSITIVE = [] include Aws::Structure end |
#batch_window ⇒ Integer
Window of time in seconds after which EventBridge event trigger fires. Window starts when first event is received.
9107 9108 9109 9110 9111 9112 |
# File 'lib/aws-sdk-glue/types.rb', line 9107 class EventBatchingCondition < Struct.new( :batch_size, :batch_window) SENSITIVE = [] include Aws::Structure end |