Class: Aws::Firehose::Types::Processor
- Inherits:
-
Struct
- Object
- Struct
- Aws::Firehose::Types::Processor
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-firehose/types.rb
Overview
Describes a data processor.
<note markdown=“1”> If you want to add a new line delimiter between records in objects that are delivered to Amazon S3, choose ‘AppendDelimiterToRecord` as a processor type. You don’t have to put a processor parameter when you select `AppendDelimiterToRecord`.
</note>
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#parameters ⇒ Array<Types::ProcessorParameter>
The processor parameters.
-
#type ⇒ String
The type of processor.
Instance Attribute Details
#parameters ⇒ Array<Types::ProcessorParameter>
The processor parameters.
3711 3712 3713 3714 3715 3716 |
# File 'lib/aws-sdk-firehose/types.rb', line 3711 class Processor < Struct.new( :type, :parameters) SENSITIVE = [] include Aws::Structure end |