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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnChannel.DestinationTablePropertystatic final classAn implementation forCfnChannel.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
IResolvableorCfnChannel.PartitionSpecProperty- See Also:
-
builder
-