Class: Aws::Firehose::Types::ProcessorParameter
- Inherits:
-
Struct
- Object
- Struct
- Aws::Firehose::Types::ProcessorParameter
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-firehose/types.rb
Overview
Describes the processor parameter.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#parameter_name ⇒ String
The name of the parameter.
-
#parameter_value ⇒ String
The parameter value.
Instance Attribute Details
#parameter_name ⇒ String
The name of the parameter. Currently the following default values are supported: 3 for ‘NumberOfRetries` and 60 for the `BufferIntervalInSeconds`. The `BufferSizeInMBs` ranges between 0.2 MB and up to 3MB. The default buffering hint is 1MB for all destinations, except Splunk. For Splunk, the default buffering hint is 256 KB.
3735 3736 3737 3738 3739 3740 |
# File 'lib/aws-sdk-firehose/types.rb', line 3735 class ProcessorParameter < Struct.new( :parameter_name, :parameter_value) SENSITIVE = [] include Aws::Structure end |
#parameter_value ⇒ String
The parameter value.
3735 3736 3737 3738 3739 3740 |
# File 'lib/aws-sdk-firehose/types.rb', line 3735 class ProcessorParameter < Struct.new( :parameter_name, :parameter_value) SENSITIVE = [] include Aws::Structure end |