Interface CfnDeliveryStreamPropsMixin.ProcessingConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDeliveryStreamPropsMixin.ProcessingConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDeliveryStreamPropsMixin
@Stability(Stable)
public static interface CfnDeliveryStreamPropsMixin.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.cfnpropertymixins.services.kinesisfirehose.*;
ProcessingConfigurationProperty processingConfigurationProperty = ProcessingConfigurationProperty.builder()
.enabled(false)
.processors(List.of(ProcessorProperty.builder()
.parameters(List.of(ProcessorParameterProperty.builder()
.parameterName("parameterName")
.parameterValue("parameterValue")
.build()))
.type("type")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDeliveryStreamPropsMixin.ProcessingConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnabled
Indicates whether data processing is enabled (true) or disabled (false).Returns union: either
BooleanorIResolvable- See Also:
-
getProcessors
The data processors.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnDeliveryStreamPropsMixin.ProcessorProperty>- See Also:
-
builder
@Stability(Stable) static CfnDeliveryStreamPropsMixin.ProcessingConfigurationProperty.Builder builder()
-