Class: Aws::Glue::Types::StartingEventBatchCondition
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::StartingEventBatchCondition
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
The batch condition that started the workflow run. Either the number of events in the batch size arrived, in which case the BatchSize member is non-zero, or the batch window expired, in which case the BatchWindow member is non-zero.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#batch_size ⇒ Integer
Number of events in the batch.
-
#batch_window ⇒ Integer
Duration of the batch window in seconds.
Instance Attribute Details
#batch_size ⇒ Integer
Number of events in the batch.
24253 24254 24255 24256 24257 24258 |
# File 'lib/aws-sdk-glue/types.rb', line 24253 class StartingEventBatchCondition < Struct.new( :batch_size, :batch_window) SENSITIVE = [] include Aws::Structure end |
#batch_window ⇒ Integer
Duration of the batch window in seconds.
24253 24254 24255 24256 24257 24258 |
# File 'lib/aws-sdk-glue/types.rb', line 24253 class StartingEventBatchCondition < Struct.new( :batch_size, :batch_window) SENSITIVE = [] include Aws::Structure end |