Interface CfnPipe.PipeSourceManagedStreamingKafkaParametersProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPipe.PipeSourceManagedStreamingKafkaParametersProperty.Jsii$Proxy
Enclosing class:
CfnPipe

@Stability(Stable) public static interface CfnPipe.PipeSourceManagedStreamingKafkaParametersProperty extends software.amazon.jsii.JsiiSerializable
The parameters for using an MSK stream as a source.

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.pipes.*;
 PipeSourceManagedStreamingKafkaParametersProperty pipeSourceManagedStreamingKafkaParametersProperty = PipeSourceManagedStreamingKafkaParametersProperty.builder()
         .topicName("topicName")
         // the properties below are optional
         .batchSize(123)
         .consumerGroupId("consumerGroupId")
         .credentials(MSKAccessCredentialsProperty.builder()
                 .clientCertificateTlsAuth("clientCertificateTlsAuth")
                 .saslScram512Auth("saslScram512Auth")
                 .build())
         .maximumBatchingWindowInSeconds(123)
         .startingPosition("startingPosition")
         .build();
 

See Also: