Interface CfnChannelPropsMixin.PartitionSpecProperty

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

@Stability(Stable) public static interface CfnChannelPropsMixin.PartitionSpecProperty extends software.amazon.jsii.JsiiSerializable
Partition specification.

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.msk.*;
 PartitionSpecProperty partitionSpecProperty = PartitionSpecProperty.builder()
         .partitionStrategy("partitionStrategy")
         .sourceList(List.of(PartitionSourceProperty.builder()
                 .sourceName("sourceName")
                 .build()))
         .build();
 

See Also: