Interface CfnDeliveryStream.ProcessingConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDeliveryStream.ProcessingConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnDeliveryStream

@Stability(Stable) public static interface CfnDeliveryStream.ProcessingConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The ProcessingConfiguration property configures data processing 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.*;
 ProcessingConfigurationProperty processingConfigurationProperty = ProcessingConfigurationProperty.builder()
         .enabled(false)
         .processors(List.of(ProcessorProperty.builder()
                 .type("type")
                 // the properties below are optional
                 .parameters(List.of(ProcessorParameterProperty.builder()
                         .parameterName("parameterName")
                         .parameterValue("parameterValue")
                         .build()))
                 .build()))
         .build();
 

See Also: