@Stability(value=Stable)
public static interface CfnDeliveryStream.ProcessingConfigurationProperty
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.*;
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDeliveryStream.ProcessingConfigurationProperty.Builder
A builder for
CfnDeliveryStream.ProcessingConfigurationProperty |
static class |
CfnDeliveryStream.ProcessingConfigurationProperty.Jsii$Proxy
An implementation for
CfnDeliveryStream.ProcessingConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDeliveryStream.ProcessingConfigurationProperty.Builder |
builder() |
default Object |
getEnabled()
Indicates whether data processing is enabled (true) or disabled (false).
|
default Object |
getProcessors()
The data processors.
|
@Stability(value=Stable) @Nullable default Object getEnabled()
@Stability(value=Stable) @Nullable default Object getProcessors()
@Stability(value=Stable) static CfnDeliveryStream.ProcessingConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.