Interface CfnDeliveryStreamPropsMixin.ProcessorProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDeliveryStreamPropsMixin.ProcessorProperty.Jsii$Proxy
- Enclosing class:
CfnDeliveryStreamPropsMixin
@Stability(Stable)
public static interface CfnDeliveryStreamPropsMixin.ProcessorProperty
extends software.amazon.jsii.JsiiSerializable
The
Processor property specifies 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.cfnpropertymixins.services.kinesisfirehose.*;
ProcessorProperty processorProperty = ProcessorProperty.builder()
.parameters(List.of(ProcessorParameterProperty.builder()
.parameterName("parameterName")
.parameterValue("parameterValue")
.build()))
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDeliveryStreamPropsMixin.ProcessorPropertystatic final classAn implementation forCfnDeliveryStreamPropsMixin.ProcessorProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getParameters
The processor parameters.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnDeliveryStreamPropsMixin.ProcessorParameterProperty>- See Also:
-
getType
The type of processor.Valid values:
Lambda.- See Also:
-
builder
-