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.
| 24351 24352 24353 24354 24355 24356 | # File 'lib/aws-sdk-glue/types.rb', line 24351 class StartingEventBatchCondition < Struct.new( :batch_size, :batch_window) SENSITIVE = [] include Aws::Structure end | 
#batch_window ⇒ Integer
Duration of the batch window in seconds.
| 24351 24352 24353 24354 24355 24356 | # File 'lib/aws-sdk-glue/types.rb', line 24351 class StartingEventBatchCondition < Struct.new( :batch_size, :batch_window) SENSITIVE = [] include Aws::Structure end |