interface ProcessorParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.KinesisFirehose.CfnDeliveryStream.ProcessorParameterProperty |
Java | software.amazon.awscdk.services.kinesisfirehose.CfnDeliveryStream.ProcessorParameterProperty |
Python | aws_cdk.aws_kinesisfirehose.CfnDeliveryStream.ProcessorParameterProperty |
TypeScript | @aws-cdk/aws-kinesisfirehose » CfnDeliveryStream » ProcessorParameterProperty |
The ProcessorParameter property specifies a processor parameter in a data processor for an Amazon Kinesis Data Firehose delivery stream.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as kinesisfirehose from '@aws-cdk/aws-kinesisfirehose';
const processorParameterProperty: kinesisfirehose.CfnDeliveryStream.ProcessorParameterProperty = {
parameterName: 'parameterName',
parameterValue: 'parameterValue',
};
Properties
| Name | Type | Description |
|---|---|---|
| parameter | string | The name of the parameter. |
| parameter | string | The parameter value. |
parameterName
Type:
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.
parameterValue
Type:
string
The parameter value.

.NET
Java
Python
TypeScript