Class: Aws::Pipes::Types::PipeSourceSqsQueueParameters

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

Overview

The parameters for using a Amazon SQS stream as a source.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#batch_sizeInteger

The maximum number of records to include in each batch.

Returns:

  • (Integer)


2079
2080
2081
2082
2083
2084
# File 'lib/aws-sdk-pipes/types.rb', line 2079

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

#maximum_batching_window_in_secondsInteger

The maximum length of a time to wait for events.

Returns:

  • (Integer)


2079
2080
2081
2082
2083
2084
# File 'lib/aws-sdk-pipes/types.rb', line 2079

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