Class: Aws::Glue::Types::StartingEventBatchCondition

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#batch_sizeInteger

Number of events in the batch.

Returns:

  • (Integer)


20345
20346
20347
20348
20349
20350
# File 'lib/aws-sdk-glue/types.rb', line 20345

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

#batch_windowInteger

Duration of the batch window in seconds.

Returns:

  • (Integer)


20345
20346
20347
20348
20349
20350
# File 'lib/aws-sdk-glue/types.rb', line 20345

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