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

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#batch_sizeInteger

The maximum number of records to include in each batch.

Returns:

  • (Integer)


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

#credentialsTypes::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_secondsInteger

The maximum length of a time to wait for events.

Returns:

  • (Integer)


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_nameString

The name of the destination queue to consume.

Returns:

  • (String)


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_hostString

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

Returns:

  • (String)


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