Class: Aws::Firehose::Types::Processor

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-firehose/types.rb

Overview

Note:

When making an API call, you may pass Processor data as a hash:

{
  type: "Lambda", # required, accepts Lambda
  parameters: [
    {
      parameter_name: "LambdaArn", # required, accepts LambdaArn, NumberOfRetries, RoleArn, BufferSizeInMBs, BufferIntervalInSeconds
      parameter_value: "ProcessorParameterValue", # required
    },
  ],
}

Describes a data processor.

Instance Attribute Summary collapse

Instance Attribute Details

#parametersArray<Types::ProcessorParameter>

The processor parameters.

Returns:



2588
2589
2590
2591
2592
# File 'lib/aws-sdk-firehose/types.rb', line 2588

class Processor < Struct.new(
  :type,
  :parameters)
  include Aws::Structure
end

#typeString

The type of processor.

Returns:

  • (String)


2588
2589
2590
2591
2592
# File 'lib/aws-sdk-firehose/types.rb', line 2588

class Processor < Struct.new(
  :type,
  :parameters)
  include Aws::Structure
end