Class: Aws::Pipes::Types::PipeSourceActiveMQBrokerParameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pipes::Types::PipeSourceActiveMQBrokerParameters
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pipes/types.rb
Overview
The parameters for using an Active MQ broker as a source.
Constant Summary collapse
- SENSITIVE =
[:queue_name]
Instance Attribute Summary collapse
-
#batch_size ⇒ Integer
The maximum number of records to include in each batch.
-
#credentials ⇒ Types::MQBrokerAccessCredentials
The credentials needed to access the resource.
-
#maximum_batching_window_in_seconds ⇒ Integer
The maximum length of a time to wait for events.
-
#queue_name ⇒ String
The name of the destination queue to consume.
Instance Attribute Details
#batch_size ⇒ Integer
The maximum number of records to include in each batch.
1721 1722 1723 1724 1725 1726 1727 1728 |
# File 'lib/aws-sdk-pipes/types.rb', line 1721 class PipeSourceActiveMQBrokerParameters < Struct.new( :credentials, :queue_name, :batch_size, :maximum_batching_window_in_seconds) SENSITIVE = [:queue_name] include Aws::Structure end |
#credentials ⇒ Types::MQBrokerAccessCredentials
The credentials needed to access the resource.
1721 1722 1723 1724 1725 1726 1727 1728 |
# File 'lib/aws-sdk-pipes/types.rb', line 1721 class PipeSourceActiveMQBrokerParameters < Struct.new( :credentials, :queue_name, :batch_size, :maximum_batching_window_in_seconds) SENSITIVE = [:queue_name] include Aws::Structure end |
#maximum_batching_window_in_seconds ⇒ Integer
The maximum length of a time to wait for events.
1721 1722 1723 1724 1725 1726 1727 1728 |
# File 'lib/aws-sdk-pipes/types.rb', line 1721 class PipeSourceActiveMQBrokerParameters < Struct.new( :credentials, :queue_name, :batch_size, :maximum_batching_window_in_seconds) SENSITIVE = [:queue_name] include Aws::Structure end |
#queue_name ⇒ String
The name of the destination queue to consume.
1721 1722 1723 1724 1725 1726 1727 1728 |
# File 'lib/aws-sdk-pipes/types.rb', line 1721 class PipeSourceActiveMQBrokerParameters < Struct.new( :credentials, :queue_name, :batch_size, :maximum_batching_window_in_seconds) SENSITIVE = [:queue_name] include Aws::Structure end |