Class: Aws::Pipes::Types::PipeSourceRabbitMQBrokerParameters

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-pipes/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

Instance Attribute Details

#batch_sizeInteger

The maximum number of records to include in each batch.

Returns:

  • (Integer)


1865
1866
1867
1868
1869
1870
1871
1872
1873
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 1865

class PipeSourceRabbitMQBrokerParameters < Struct.new(
  :batch_size,
  :credentials,
  :maximum_batching_window_in_seconds,
  :queue_name,
  :virtual_host)
  SENSITIVE = [:queue_name, :virtual_host]
  include Aws::Structure
end

#credentialsTypes::MQBrokerAccessCredentials

The credentials needed to access the resource.



1865
1866
1867
1868
1869
1870
1871
1872
1873
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 1865

class PipeSourceRabbitMQBrokerParameters < Struct.new(
  :batch_size,
  :credentials,
  :maximum_batching_window_in_seconds,
  :queue_name,
  :virtual_host)
  SENSITIVE = [:queue_name, :virtual_host]
  include Aws::Structure
end

#maximum_batching_window_in_secondsInteger

The maximum length of a time to wait for events.

Returns:

  • (Integer)


1865
1866
1867
1868
1869
1870
1871
1872
1873
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 1865

class PipeSourceRabbitMQBrokerParameters < Struct.new(
  :batch_size,
  :credentials,
  :maximum_batching_window_in_seconds,
  :queue_name,
  :virtual_host)
  SENSITIVE = [:queue_name, :virtual_host]
  include Aws::Structure
end

#queue_nameString

The name of the destination queue to consume.

Returns:

  • (String)


1865
1866
1867
1868
1869
1870
1871
1872
1873
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 1865

class PipeSourceRabbitMQBrokerParameters < Struct.new(
  :batch_size,
  :credentials,
  :maximum_batching_window_in_seconds,
  :queue_name,
  :virtual_host)
  SENSITIVE = [:queue_name, :virtual_host]
  include Aws::Structure
end

#virtual_hostString

The name of the virtual host associated with the source broker.

Returns:

  • (String)


1865
1866
1867
1868
1869
1870
1871
1872
1873
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 1865

class PipeSourceRabbitMQBrokerParameters < Struct.new(
  :batch_size,
  :credentials,
  :maximum_batching_window_in_seconds,
  :queue_name,
  :virtual_host)
  SENSITIVE = [:queue_name, :virtual_host]
  include Aws::Structure
end