Interface CfnChannelPropsMixin.DestinationTableProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnChannelPropsMixin.DestinationTableProperty.Jsii$Proxy
- Enclosing class:
CfnChannelPropsMixin
@Stability(Stable)
public static interface CfnChannelPropsMixin.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.cfnpropertymixins.services.msk.*;
DestinationTableProperty destinationTableProperty = DestinationTableProperty.builder()
.destinationDatabaseName("destinationDatabaseName")
.destinationTableName("destinationTableName")
.partitionSpec(PartitionSpecProperty.builder()
.partitionStrategy("partitionStrategy")
.sourceList(List.of(PartitionSourceProperty.builder()
.sourceName("sourceName")
.build()))
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnChannelPropsMixin.DestinationTablePropertystatic final classAn implementation forCfnChannelPropsMixin.DestinationTableProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDestinationDatabaseName
The destination database name.- See Also:
-
getDestinationTableName
The destination table name.- See Also:
-
getPartitionSpec
Partition specification.Returns union: either
IResolvableorCfnChannelPropsMixin.PartitionSpecProperty- See Also:
-
builder
-