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)


1962
1963
1964
1965
1966
1967
1968
1969
1970
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 1962

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

#credentialsTypes::MQBrokerAccessCredentials

The credentials needed to access the resource.



1962
1963
1964
1965
1966
1967
1968
1969
1970
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 1962

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_secondsInteger

The maximum length of a time to wait for events.

Returns:

  • (Integer)


1962
1963
1964
1965
1966
1967
1968
1969
1970
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 1962

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_nameString

The name of the destination queue to consume.

Returns:

  • (String)


1962
1963
1964
1965
1966
1967
1968
1969
1970
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 1962

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_hostString

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

Returns:

  • (String)


1962
1963
1964
1965
1966
1967
1968
1969
1970
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 1962

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