Interface CfnDeliveryStream.ProcessorParameterProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDeliveryStream.ProcessorParameterProperty.Jsii$Proxy
- Enclosing class:
CfnDeliveryStream
@Stability(Stable)
public static interface CfnDeliveryStream.ProcessorParameterProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.kinesisfirehose.*; ProcessorParameterProperty processorParameterProperty = ProcessorParameterProperty.builder() .parameterName("parameterName") .parameterValue("parameterValue") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDeliveryStream.ProcessorParameterProperty
static final class
An implementation forCfnDeliveryStream.ProcessorParameterProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getParameterName
The name of the parameter.Currently the following default values are supported: 3 for
NumberOfRetries
and 60 for theBufferIntervalInSeconds
. TheBufferSizeInMBs
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.- See Also:
-
getParameterValue
The parameter value.- See Also:
-
builder
-