Interface CfnDeliveryStreamPropsMixin.MSKSourceConfigurationProperty

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

@Stability(Stable) public static interface CfnDeliveryStreamPropsMixin.MSKSourceConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The configuration for the Amazon MSK cluster to be used as the source for a 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.*;
 MSKSourceConfigurationProperty mSKSourceConfigurationProperty = MSKSourceConfigurationProperty.builder()
         .authenticationConfiguration(AuthenticationConfigurationProperty.builder()
                 .connectivity("connectivity")
                 .roleArn("roleArn")
                 .build())
         .mskClusterArn("mskClusterArn")
         .readFromTimestamp("readFromTimestamp")
         .topicName("topicName")
         .build();
 

See Also: