@Stability(value=Stable)
public static interface CfnDeliveryStream.ProcessorProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
ProcessorProperty processorProperty = ProcessorProperty.builder()
.type("type")
// the properties below are optional
.parameters(List.of(ProcessorParameterProperty.builder()
.parameterName("parameterName")
.parameterValue("parameterValue")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDeliveryStream.ProcessorProperty.Builder
A builder for
CfnDeliveryStream.ProcessorProperty |
static class |
CfnDeliveryStream.ProcessorProperty.Jsii$Proxy
An implementation for
CfnDeliveryStream.ProcessorProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDeliveryStream.ProcessorProperty.Builder |
builder() |
default Object |
getParameters()
The processor parameters.
|
String |
getType()
The type of processor.
|
@Stability(value=Stable) @NotNull String getType()
Valid values: Lambda .
@Stability(value=Stable) @Nullable default Object getParameters()
@Stability(value=Stable) static CfnDeliveryStream.ProcessorProperty.Builder builder()
Copyright © 2022. All rights reserved.