Skip to content

Commit 01035e1

Browse files
author
AWS
committed
Managed Streaming for Kafka Update: Added support for specifying the starting position of topic replication in MSK-Replicator.
1 parent a86dfa9 commit 01035e1

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "Managed Streaming for Kafka",
4+
"contributor": "",
5+
"description": "Added support for specifying the starting position of topic replication in MSK-Replicator."
6+
}

services/kafka/src/main/resources/codegen-resources/service-2.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5481,6 +5481,22 @@
54815481
},
54825482
"documentation": "<p>Summarized information of replication between clusters.</p>"
54835483
},
5484+
"ReplicationStartingPosition" : {
5485+
"type" : "structure",
5486+
"members" : {
5487+
"Type" : {
5488+
"shape" : "ReplicationStartingPositionType",
5489+
"locationName" : "type",
5490+
"documentation": "<p>The type of replication starting position.</p>"
5491+
}
5492+
},
5493+
"documentation": "<p>Configuration for specifying the position in the topics to start replicating from.</p>"
5494+
},
5495+
"ReplicationStartingPositionType" : {
5496+
"type" : "string",
5497+
"enum" : [ "LATEST", "EARLIEST" ],
5498+
"documentation": "<p>The type of replication starting position.</p>"
5499+
},
54845500
"ReplicationStateInfo" : {
54855501
"type" : "structure",
54865502
"members" : {
@@ -5692,6 +5708,11 @@
56925708
"locationName": "detectAndCopyNewTopics",
56935709
"documentation": "<p>Whether to periodically check for new topics and partitions.</p>"
56945710
},
5711+
"StartingPosition" : {
5712+
"shape" : "ReplicationStartingPosition",
5713+
"locationName" : "startingPosition",
5714+
"documentation": "<p>Configuration for specifying the position in the topics to start replicating from.</p>"
5715+
},
56955716
"TopicsToExclude": {
56965717
"shape": "__listOf__stringMax249",
56975718
"locationName": "topicsToExclude",

0 commit comments

Comments
 (0)