Interface CfnChannel.DestinationTableProperty

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

@Stability(Stable) public static interface CfnChannel.DestinationTableProperty extends software.amazon.jsii.JsiiSerializable
Destination table configuration.

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.msk.*;
 DestinationTableProperty destinationTableProperty = DestinationTableProperty.builder()
         .destinationDatabaseName("destinationDatabaseName")
         .destinationTableName("destinationTableName")
         // the properties below are optional
         .partitionSpec(PartitionSpecProperty.builder()
                 .partitionStrategy("partitionStrategy")
                 // the properties below are optional
                 .sourceList(List.of(PartitionSourceProperty.builder()
                         .sourceName("sourceName")
                         .build()))
                 .build())
         .build();
 

See Also: