public static interface CfnDeliveryStream.ProcessingConfigurationProperty
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 java.lang.Object |
getEnabled()
Indicates whether data processing is enabled (true) or disabled (false).
|
default java.lang.Object |
getProcessors()
The data processors.
|
default java.lang.Object getEnabled()
default java.lang.Object getProcessors()
static CfnDeliveryStream.ProcessingConfigurationProperty.Builder builder()