Class: Aws::Pipes::Types::PipeSourceRabbitMQBrokerParameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pipes::Types::PipeSourceRabbitMQBrokerParameters
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pipes/types.rb
Overview
The parameters for using a Rabbit MQ broker as a source.
Constant Summary collapse
- SENSITIVE =
[:queue_name, :virtual_host]
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.
-
#virtual_host ⇒ String
The name of the virtual host associated with the source broker.
Instance Attribute Details
#batch_size ⇒ Integer
The maximum number of records to include in each batch.
1987 1988 1989 1990 1991 1992 1993 1994 1995 |
# File 'lib/aws-sdk-pipes/types.rb', line 1987 class PipeSourceRabbitMQBrokerParameters < Struct.new( :credentials, :queue_name, :virtual_host, :batch_size, :maximum_batching_window_in_seconds) SENSITIVE = [:queue_name, :virtual_host] include Aws::Structure end |
#credentials ⇒ Types::MQBrokerAccessCredentials
The credentials needed to access the resource.
1987 1988 1989 1990 1991 1992 1993 1994 1995 |
# File 'lib/aws-sdk-pipes/types.rb', line 1987 class PipeSourceRabbitMQBrokerParameters < Struct.new( :credentials, :queue_name, :virtual_host, :batch_size, :maximum_batching_window_in_seconds) SENSITIVE = [:queue_name, :virtual_host] include Aws::Structure end |
#maximum_batching_window_in_seconds ⇒ Integer
The maximum length of a time to wait for events.
1987 1988 1989 1990 1991 1992 1993 1994 1995 |
# File 'lib/aws-sdk-pipes/types.rb', line 1987 class PipeSourceRabbitMQBrokerParameters < Struct.new( :credentials, :queue_name, :virtual_host, :batch_size, :maximum_batching_window_in_seconds) SENSITIVE = [:queue_name, :virtual_host] include Aws::Structure end |
#queue_name ⇒ String
The name of the destination queue to consume.
1987 1988 1989 1990 1991 1992 1993 1994 1995 |
# File 'lib/aws-sdk-pipes/types.rb', line 1987 class PipeSourceRabbitMQBrokerParameters < Struct.new( :credentials, :queue_name, :virtual_host, :batch_size, :maximum_batching_window_in_seconds) SENSITIVE = [:queue_name, :virtual_host] include Aws::Structure end |
#virtual_host ⇒ String
The name of the virtual host associated with the source broker.
1987 1988 1989 1990 1991 1992 1993 1994 1995 |
# File 'lib/aws-sdk-pipes/types.rb', line 1987 class PipeSourceRabbitMQBrokerParameters < Struct.new( :credentials, :queue_name, :virtual_host, :batch_size, :maximum_batching_window_in_seconds) SENSITIVE = [:queue_name, :virtual_host] include Aws::Structure end |