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: