cdk-lambda-subminute 2.0.270 → 2.0.271

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -59,6 +59,14 @@ declare class Kafka extends Service {
59
59
 
60
60
  */
61
61
  createConfiguration(callback?: (err: AWSError, data: Kafka.Types.CreateConfigurationResponse) => void): Request<Kafka.Types.CreateConfigurationResponse, AWSError>;
62
+ /**
63
+ * Creates the replicator.
64
+ */
65
+ createReplicator(params: Kafka.Types.CreateReplicatorRequest, callback?: (err: AWSError, data: Kafka.Types.CreateReplicatorResponse) => void): Request<Kafka.Types.CreateReplicatorResponse, AWSError>;
66
+ /**
67
+ * Creates the replicator.
68
+ */
69
+ createReplicator(callback?: (err: AWSError, data: Kafka.Types.CreateReplicatorResponse) => void): Request<Kafka.Types.CreateReplicatorResponse, AWSError>;
62
70
  /**
63
71
  *
64
72
  Creates a new MSK VPC connection.
@@ -107,6 +115,14 @@ declare class Kafka extends Service {
107
115
 
108
116
  */
109
117
  deleteConfiguration(callback?: (err: AWSError, data: Kafka.Types.DeleteConfigurationResponse) => void): Request<Kafka.Types.DeleteConfigurationResponse, AWSError>;
118
+ /**
119
+ * Deletes a replicator.
120
+ */
121
+ deleteReplicator(params: Kafka.Types.DeleteReplicatorRequest, callback?: (err: AWSError, data: Kafka.Types.DeleteReplicatorResponse) => void): Request<Kafka.Types.DeleteReplicatorResponse, AWSError>;
122
+ /**
123
+ * Deletes a replicator.
124
+ */
125
+ deleteReplicator(callback?: (err: AWSError, data: Kafka.Types.DeleteReplicatorResponse) => void): Request<Kafka.Types.DeleteReplicatorResponse, AWSError>;
110
126
  /**
111
127
  *
112
128
  Deletes a MSK VPC connection.
@@ -191,6 +207,14 @@ declare class Kafka extends Service {
191
207
 
192
208
  */
193
209
  describeConfigurationRevision(callback?: (err: AWSError, data: Kafka.Types.DescribeConfigurationRevisionResponse) => void): Request<Kafka.Types.DescribeConfigurationRevisionResponse, AWSError>;
210
+ /**
211
+ * Describes a replicator.
212
+ */
213
+ describeReplicator(params: Kafka.Types.DescribeReplicatorRequest, callback?: (err: AWSError, data: Kafka.Types.DescribeReplicatorResponse) => void): Request<Kafka.Types.DescribeReplicatorResponse, AWSError>;
214
+ /**
215
+ * Describes a replicator.
216
+ */
217
+ describeReplicator(callback?: (err: AWSError, data: Kafka.Types.DescribeReplicatorResponse) => void): Request<Kafka.Types.DescribeReplicatorResponse, AWSError>;
194
218
  /**
195
219
  *
196
220
  Returns a description of this MSK VPC connection.
@@ -347,6 +371,14 @@ declare class Kafka extends Service {
347
371
 
348
372
  */
349
373
  listNodes(callback?: (err: AWSError, data: Kafka.Types.ListNodesResponse) => void): Request<Kafka.Types.ListNodesResponse, AWSError>;
374
+ /**
375
+ * Lists the replicators.
376
+ */
377
+ listReplicators(params: Kafka.Types.ListReplicatorsRequest, callback?: (err: AWSError, data: Kafka.Types.ListReplicatorsResponse) => void): Request<Kafka.Types.ListReplicatorsResponse, AWSError>;
378
+ /**
379
+ * Lists the replicators.
380
+ */
381
+ listReplicators(callback?: (err: AWSError, data: Kafka.Types.ListReplicatorsResponse) => void): Request<Kafka.Types.ListReplicatorsResponse, AWSError>;
350
382
  /**
351
383
  *
352
384
  Returns a list of the Scram Secrets associated with an Amazon MSK cluster.
@@ -547,6 +579,14 @@ declare class Kafka extends Service {
547
579
 
548
580
  */
549
581
  updateMonitoring(callback?: (err: AWSError, data: Kafka.Types.UpdateMonitoringResponse) => void): Request<Kafka.Types.UpdateMonitoringResponse, AWSError>;
582
+ /**
583
+ * Updates replication info of a replicator.
584
+ */
585
+ updateReplicationInfo(params: Kafka.Types.UpdateReplicationInfoRequest, callback?: (err: AWSError, data: Kafka.Types.UpdateReplicationInfoResponse) => void): Request<Kafka.Types.UpdateReplicationInfoResponse, AWSError>;
586
+ /**
587
+ * Updates replication info of a replicator.
588
+ */
589
+ updateReplicationInfo(callback?: (err: AWSError, data: Kafka.Types.UpdateReplicationInfoResponse) => void): Request<Kafka.Types.UpdateReplicationInfoResponse, AWSError>;
550
590
  /**
551
591
  *
552
592
  Updates the security settings for the cluster. You can use this operation to specify encryption and authentication on existing clusters.
@@ -569,6 +609,12 @@ declare class Kafka extends Service {
569
609
  updateStorage(callback?: (err: AWSError, data: Kafka.Types.UpdateStorageResponse) => void): Request<Kafka.Types.UpdateStorageResponse, AWSError>;
570
610
  }
571
611
  declare namespace Kafka {
612
+ export interface AmazonMskCluster {
613
+ /**
614
+ * The Amazon Resource Name (ARN) of an Amazon MSK cluster.
615
+ */
616
+ MskClusterArn: __string;
617
+ }
572
618
  export interface BatchAssociateScramSecretRequest {
573
619
  /**
574
620
  *
@@ -1395,6 +1441,42 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
1395
1441
  */
1396
1442
  VpcConnectivity?: VpcConnectivity;
1397
1443
  }
1444
+ export interface ConsumerGroupReplication {
1445
+ /**
1446
+ * List of regular expression patterns indicating the consumer groups that should not be replicated.
1447
+ */
1448
+ ConsumerGroupsToExclude?: __listOf__stringMax256;
1449
+ /**
1450
+ * List of regular expression patterns indicating the consumer groups to copy.
1451
+ */
1452
+ ConsumerGroupsToReplicate: __listOf__stringMax256;
1453
+ /**
1454
+ * Enables synchronization of consumer groups to target cluster.
1455
+ */
1456
+ DetectAndCopyNewConsumerGroups?: __boolean;
1457
+ /**
1458
+ * Enables synchronization of consumer group offsets to target cluster. The translated offsets will be written to topic __consumer_offsets.
1459
+ */
1460
+ SynchroniseConsumerGroupOffsets?: __boolean;
1461
+ }
1462
+ export interface ConsumerGroupReplicationUpdate {
1463
+ /**
1464
+ * List of regular expression patterns indicating the consumer groups that should not be replicated.
1465
+ */
1466
+ ConsumerGroupsToExclude: __listOf__stringMax256;
1467
+ /**
1468
+ * List of regular expression patterns indicating the consumer groups to copy.
1469
+ */
1470
+ ConsumerGroupsToReplicate: __listOf__stringMax256;
1471
+ /**
1472
+ * Enables synchronization of consumer groups to target cluster.
1473
+ */
1474
+ DetectAndCopyNewConsumerGroups: __boolean;
1475
+ /**
1476
+ * Enables synchronization of consumer group offsets to target cluster. The translated offsets will be written to topic __consumer_offsets.
1477
+ */
1478
+ SynchroniseConsumerGroupOffsets: __boolean;
1479
+ }
1398
1480
  export interface CreateClusterV2Request {
1399
1481
  /**
1400
1482
  *
@@ -1595,6 +1677,46 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
1595
1677
  */
1596
1678
  State?: ConfigurationState;
1597
1679
  }
1680
+ export interface CreateReplicatorRequest {
1681
+ /**
1682
+ * A summary description of the replicator.
1683
+ */
1684
+ Description?: __stringMax1024;
1685
+ /**
1686
+ * Kafka Clusters to use in setting up sources / targets for replication.
1687
+ */
1688
+ KafkaClusters: __listOfKafkaCluster;
1689
+ /**
1690
+ * A list of replication configurations, where each configuration targets a given source cluster to target cluster replication flow.
1691
+ */
1692
+ ReplicationInfoList: __listOfReplicationInfo;
1693
+ /**
1694
+ * The name of the replicator. Alpha-numeric characters with '-' are allowed.
1695
+ */
1696
+ ReplicatorName: __stringMin1Max128Pattern09AZaZ09AZaZ0;
1697
+ /**
1698
+ * The ARN of the IAM role used by the replicator to access resources in the customer's account (e.g source and target clusters)
1699
+ */
1700
+ ServiceExecutionRoleArn: __string;
1701
+ /**
1702
+ * List of tags to attach to created Replicator.
1703
+ */
1704
+ Tags?: __mapOf__string;
1705
+ }
1706
+ export interface CreateReplicatorResponse {
1707
+ /**
1708
+ * The Amazon Resource Name (ARN) of the replicator.
1709
+ */
1710
+ ReplicatorArn?: __string;
1711
+ /**
1712
+ * Name of the replicator provided by the customer.
1713
+ */
1714
+ ReplicatorName?: __string;
1715
+ /**
1716
+ * State of the replicator.
1717
+ */
1718
+ ReplicatorState?: ReplicatorState;
1719
+ }
1598
1720
  export interface CreateVpcConnectionRequest {
1599
1721
  /**
1600
1722
  *
@@ -1861,6 +1983,26 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
1861
1983
  */
1862
1984
  State?: ConfigurationState;
1863
1985
  }
1986
+ export interface DeleteReplicatorRequest {
1987
+ /**
1988
+ * The current version of the replicator.
1989
+ */
1990
+ CurrentVersion?: __string;
1991
+ /**
1992
+ * The Amazon Resource Name (ARN) of the replicator to be deleted.
1993
+ */
1994
+ ReplicatorArn: __string;
1995
+ }
1996
+ export interface DeleteReplicatorResponse {
1997
+ /**
1998
+ * The Amazon Resource Name (ARN) of the replicator.
1999
+ */
2000
+ ReplicatorArn?: __string;
2001
+ /**
2002
+ * The state of the replicator.
2003
+ */
2004
+ ReplicatorState?: ReplicatorState;
2005
+ }
1864
2006
  export interface DeleteVpcConnectionRequest {
1865
2007
  /**
1866
2008
  *
@@ -2051,6 +2193,66 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
2051
2193
  */
2052
2194
  Arn: __string;
2053
2195
  }
2196
+ export interface DescribeReplicatorRequest {
2197
+ /**
2198
+ * The Amazon Resource Name (ARN) of the replicator to be described.
2199
+ */
2200
+ ReplicatorArn: __string;
2201
+ }
2202
+ export interface DescribeReplicatorResponse {
2203
+ /**
2204
+ * The time when the replicator was created.
2205
+ */
2206
+ CreationTime?: __timestampIso8601;
2207
+ /**
2208
+ * The current version number of the replicator.
2209
+ */
2210
+ CurrentVersion?: __string;
2211
+ /**
2212
+ * Whether this resource is a replicator reference.
2213
+ */
2214
+ IsReplicatorReference?: __boolean;
2215
+ /**
2216
+ * Kafka Clusters used in setting up sources / targets for replication.
2217
+ */
2218
+ KafkaClusters?: __listOfKafkaClusterDescription;
2219
+ /**
2220
+ * A list of replication configurations, where each configuration targets a given source cluster to target cluster replication flow.
2221
+ */
2222
+ ReplicationInfoList?: __listOfReplicationInfoDescription;
2223
+ /**
2224
+ * The Amazon Resource Name (ARN) of the replicator.
2225
+ */
2226
+ ReplicatorArn?: __string;
2227
+ /**
2228
+ * The description of the replicator.
2229
+ */
2230
+ ReplicatorDescription?: __string;
2231
+ /**
2232
+ * The name of the replicator.
2233
+ */
2234
+ ReplicatorName?: __string;
2235
+ /**
2236
+ * The Amazon Resource Name (ARN) of the replicator resource in the region where the replicator was created.
2237
+ */
2238
+ ReplicatorResourceArn?: __string;
2239
+ /**
2240
+ * State of the replicator.
2241
+ */
2242
+ ReplicatorState?: ReplicatorState;
2243
+ /**
2244
+ * The Amazon Resource Name (ARN) of the IAM role used by the replicator to access resources in the customer's account (e.g source and target clusters)
2245
+ */
2246
+ ServiceExecutionRoleArn?: __string;
2247
+ /**
2248
+ * Details about the state of the replicator.
2249
+ */
2250
+ StateInfo?: ReplicationStateInfo;
2251
+ /**
2252
+ * List of tags attached to the Replicator.
2253
+ */
2254
+ Tags?: __mapOf__string;
2255
+ }
2054
2256
  export interface DescribeVpcConnectionResponse {
2055
2257
  /**
2056
2258
  *
@@ -2320,6 +2522,50 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
2320
2522
  */
2321
2523
  Policy?: __string;
2322
2524
  }
2525
+ export interface KafkaCluster {
2526
+ /**
2527
+ * Details of an Amazon MSK Cluster.
2528
+ */
2529
+ AmazonMskCluster: AmazonMskCluster;
2530
+ /**
2531
+ * Details of an Amazon VPC which has network connectivity to the Apache Kafka cluster.
2532
+ */
2533
+ VpcConfig: KafkaClusterClientVpcConfig;
2534
+ }
2535
+ export interface KafkaClusterClientVpcConfig {
2536
+ /**
2537
+ * The security groups to attach to the ENIs for the broker nodes.
2538
+ */
2539
+ SecurityGroupIds?: __listOf__string;
2540
+ /**
2541
+ * The list of subnets in the client VPC to connect to.
2542
+ */
2543
+ SubnetIds: __listOf__string;
2544
+ }
2545
+ export interface KafkaClusterDescription {
2546
+ /**
2547
+ * Details of an Amazon MSK Cluster.
2548
+ */
2549
+ AmazonMskCluster?: AmazonMskCluster;
2550
+ /**
2551
+ * The alias of the Kafka cluster. Used to prefix names of replicated topics.
2552
+ */
2553
+ KafkaClusterAlias?: __string;
2554
+ /**
2555
+ * Details of an Amazon VPC which has network connectivity to the Apache Kafka cluster.
2556
+ */
2557
+ VpcConfig?: KafkaClusterClientVpcConfig;
2558
+ }
2559
+ export interface KafkaClusterSummary {
2560
+ /**
2561
+ * Details of an Amazon MSK Cluster.
2562
+ */
2563
+ AmazonMskCluster?: AmazonMskCluster;
2564
+ /**
2565
+ * The alias of the Kafka cluster. Used to prefix names of replicated topics.
2566
+ */
2567
+ KafkaClusterAlias?: __string;
2568
+ }
2323
2569
  export interface KafkaVersion {
2324
2570
  Version?: __string;
2325
2571
  Status?: KafkaVersionStatus;
@@ -2581,6 +2827,30 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
2581
2827
  */
2582
2828
  NodeInfoList?: __listOfNodeInfo;
2583
2829
  }
2830
+ export interface ListReplicatorsRequest {
2831
+ /**
2832
+ * The maximum number of results to return in the response. If there are more results, the response includes a NextToken parameter.
2833
+ */
2834
+ MaxResults?: MaxResults;
2835
+ /**
2836
+ * If the response of ListReplicators is truncated, it returns a NextToken in the response. This NextToken should be sent in the subsequent request to ListReplicators.
2837
+ */
2838
+ NextToken?: __string;
2839
+ /**
2840
+ * Returns replicators starting with given name.
2841
+ */
2842
+ ReplicatorNameFilter?: __string;
2843
+ }
2844
+ export interface ListReplicatorsResponse {
2845
+ /**
2846
+ * If the response of ListReplicators is truncated, it returns a NextToken in the response. This NextToken should be sent in the subsequent request to ListReplicators.
2847
+ */
2848
+ NextToken?: __string;
2849
+ /**
2850
+ * List containing information of each of the replicators in the account.
2851
+ */
2852
+ Replicators?: __listOfReplicatorSummary;
2853
+ }
2584
2854
  export interface ListScramSecretsRequest {
2585
2855
  /**
2586
2856
  *
@@ -3057,6 +3327,109 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
3057
3327
  ZookeeperNodeInfo?: ZookeeperNodeInfo;
3058
3328
  }
3059
3329
  export type NodeType = "BROKER"|string;
3330
+ export interface ReplicationInfo {
3331
+ /**
3332
+ * Configuration relating to consumer group replication.
3333
+ */
3334
+ ConsumerGroupReplication: ConsumerGroupReplication;
3335
+ /**
3336
+ * The ARN of the source Kafka cluster.
3337
+ */
3338
+ SourceKafkaClusterArn: __string;
3339
+ /**
3340
+ * The compression type to use when producing records to target cluster.
3341
+ */
3342
+ TargetCompressionType: TargetCompressionType;
3343
+ /**
3344
+ * The ARN of the target Kafka cluster.
3345
+ */
3346
+ TargetKafkaClusterArn: __string;
3347
+ /**
3348
+ * Configuration relating to topic replication.
3349
+ */
3350
+ TopicReplication: TopicReplication;
3351
+ }
3352
+ export interface ReplicationInfoDescription {
3353
+ /**
3354
+ * Configuration relating to consumer group replication.
3355
+ */
3356
+ ConsumerGroupReplication?: ConsumerGroupReplication;
3357
+ /**
3358
+ * The alias of the source Kafka cluster.
3359
+ */
3360
+ SourceKafkaClusterAlias?: __string;
3361
+ /**
3362
+ * The compression type to use when producing records to target cluster.
3363
+ */
3364
+ TargetCompressionType?: TargetCompressionType;
3365
+ /**
3366
+ * The alias of the target Kafka cluster.
3367
+ */
3368
+ TargetKafkaClusterAlias?: __string;
3369
+ /**
3370
+ * Configuration relating to topic replication.
3371
+ */
3372
+ TopicReplication?: TopicReplication;
3373
+ }
3374
+ export interface ReplicationInfoSummary {
3375
+ /**
3376
+ * The alias of the source Kafka cluster.
3377
+ */
3378
+ SourceKafkaClusterAlias?: __string;
3379
+ /**
3380
+ * The alias of the target Kafka cluster.
3381
+ */
3382
+ TargetKafkaClusterAlias?: __string;
3383
+ }
3384
+ export interface ReplicationStateInfo {
3385
+ /**
3386
+ * Code that describes the current state of the replicator.
3387
+ */
3388
+ Code?: __string;
3389
+ /**
3390
+ * Message that describes the state of the replicator.
3391
+ */
3392
+ Message?: __string;
3393
+ }
3394
+ export type ReplicatorState = "RUNNING"|"CREATING"|"UPDATING"|"DELETING"|"FAILED"|string;
3395
+ export interface ReplicatorSummary {
3396
+ /**
3397
+ * The time the replicator was created.
3398
+ */
3399
+ CreationTime?: __timestampIso8601;
3400
+ /**
3401
+ * The current version of the replicator.
3402
+ */
3403
+ CurrentVersion?: __string;
3404
+ /**
3405
+ * Whether this resource is a replicator reference.
3406
+ */
3407
+ IsReplicatorReference?: __boolean;
3408
+ /**
3409
+ * Kafka Clusters used in setting up sources / targets for replication.
3410
+ */
3411
+ KafkaClustersSummary?: __listOfKafkaClusterSummary;
3412
+ /**
3413
+ * A list of summarized information of replications between clusters.
3414
+ */
3415
+ ReplicationInfoSummaryList?: __listOfReplicationInfoSummary;
3416
+ /**
3417
+ * The Amazon Resource Name (ARN) of the replicator.
3418
+ */
3419
+ ReplicatorArn?: __string;
3420
+ /**
3421
+ * The name of the replicator.
3422
+ */
3423
+ ReplicatorName?: __string;
3424
+ /**
3425
+ * The Amazon Resource Name (ARN) of the replicator resource in the region where the replicator was created.
3426
+ */
3427
+ ReplicatorResourceArn?: __string;
3428
+ /**
3429
+ * State of the replicator.
3430
+ */
3431
+ ReplicatorState?: ReplicatorState;
3432
+ }
3060
3433
  export interface StateInfo {
3061
3434
  Code?: __string;
3062
3435
  Message?: __string;
@@ -3084,6 +3457,7 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
3084
3457
  */
3085
3458
  Tags: __mapOf__string;
3086
3459
  }
3460
+ export type TargetCompressionType = "NONE"|"GZIP"|"SNAPPY"|"LZ4"|"ZSTD"|string;
3087
3461
  export interface Tls {
3088
3462
  /**
3089
3463
  *
@@ -3106,6 +3480,50 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
3106
3480
  */
3107
3481
  Enabled?: __boolean;
3108
3482
  }
3483
+ export interface TopicReplication {
3484
+ /**
3485
+ * Whether to periodically configure remote topic ACLs to match their corresponding upstream topics.
3486
+ */
3487
+ CopyAccessControlListsForTopics?: __boolean;
3488
+ /**
3489
+ * Whether to periodically configure remote topics to match their corresponding upstream topics.
3490
+ */
3491
+ CopyTopicConfigurations?: __boolean;
3492
+ /**
3493
+ * Whether to periodically check for new topics and partitions.
3494
+ */
3495
+ DetectAndCopyNewTopics?: __boolean;
3496
+ /**
3497
+ * List of regular expression patterns indicating the topics that should not be replicated.
3498
+ */
3499
+ TopicsToExclude?: __listOf__stringMax249;
3500
+ /**
3501
+ * List of regular expression patterns indicating the topics to copy.
3502
+ */
3503
+ TopicsToReplicate: __listOf__stringMax249;
3504
+ }
3505
+ export interface TopicReplicationUpdate {
3506
+ /**
3507
+ * Whether to periodically configure remote topic ACLs to match their corresponding upstream topics.
3508
+ */
3509
+ CopyAccessControlListsForTopics: __boolean;
3510
+ /**
3511
+ * Whether to periodically configure remote topics to match their corresponding upstream topics.
3512
+ */
3513
+ CopyTopicConfigurations: __boolean;
3514
+ /**
3515
+ * Whether to periodically check for new topics and partitions.
3516
+ */
3517
+ DetectAndCopyNewTopics: __boolean;
3518
+ /**
3519
+ * List of regular expression patterns indicating the topics that should not be replicated.
3520
+ */
3521
+ TopicsToExclude: __listOf__stringMax249;
3522
+ /**
3523
+ * List of regular expression patterns indicating the topics to copy.
3524
+ */
3525
+ TopicsToReplicate: __listOf__stringMax249;
3526
+ }
3109
3527
  export interface Unauthenticated {
3110
3528
  /**
3111
3529
  *
@@ -3384,6 +3802,42 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
3384
3802
  */
3385
3803
  ClusterOperationArn?: __string;
3386
3804
  }
3805
+ export interface UpdateReplicationInfoRequest {
3806
+ /**
3807
+ * Updated consumer group replication information.
3808
+ */
3809
+ ConsumerGroupReplication?: ConsumerGroupReplicationUpdate;
3810
+ /**
3811
+ * Current replicator version.
3812
+ */
3813
+ CurrentVersion: __string;
3814
+ /**
3815
+ * The Amazon Resource Name (ARN) of the replicator to be updated.
3816
+ */
3817
+ ReplicatorArn: __string;
3818
+ /**
3819
+ * The ARN of the source Kafka cluster.
3820
+ */
3821
+ SourceKafkaClusterArn: __string;
3822
+ /**
3823
+ * The ARN of the target Kafka cluster.
3824
+ */
3825
+ TargetKafkaClusterArn: __string;
3826
+ /**
3827
+ * Updated topic replication information.
3828
+ */
3829
+ TopicReplication?: TopicReplicationUpdate;
3830
+ }
3831
+ export interface UpdateReplicationInfoResponse {
3832
+ /**
3833
+ * The Amazon Resource Name (ARN) of the replicator.
3834
+ */
3835
+ ReplicatorArn?: __string;
3836
+ /**
3837
+ * State of the replicator.
3838
+ */
3839
+ ReplicatorState?: ReplicatorState;
3840
+ }
3387
3841
  export interface UpdateSecurityRequest {
3388
3842
  /**
3389
3843
  *
@@ -3660,17 +4114,30 @@ kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.
3660
4114
  export type __listOfConfiguration = Configuration[];
3661
4115
  export type __listOfConfigurationRevision = ConfigurationRevision[];
3662
4116
  export type __listOfKafkaVersion = KafkaVersion[];
4117
+ export type __listOfKafkaCluster = KafkaCluster[];
4118
+ export type __listOfKafkaClusterDescription = KafkaClusterDescription[];
4119
+ export type __listOfKafkaClusterSummary = KafkaClusterSummary[];
3663
4120
  export type __listOfNodeInfo = NodeInfo[];
3664
4121
  export type __listOfClientVpcConnection = ClientVpcConnection[];
4122
+ export type __listOfReplicationInfo = ReplicationInfo[];
4123
+ export type __listOfReplicationInfoDescription = ReplicationInfoDescription[];
4124
+ export type __listOfReplicationInfoSummary = ReplicationInfoSummary[];
4125
+ export type __listOfReplicatorSummary = ReplicatorSummary[];
3665
4126
  export type __listOfVpcConnection = VpcConnection[];
3666
4127
  export type __listOfUnprocessedScramSecret = UnprocessedScramSecret[];
3667
4128
  export type __listOf__string = __string[];
3668
4129
  export type __long = number;
3669
4130
  export type __mapOf__string = {[key: string]: __string};
4131
+ export type __listOf__stringMax249 = __stringMax249[];
4132
+ export type __listOf__stringMax256 = __stringMax256[];
3670
4133
  export type __string = string;
4134
+ export type __stringMax1024 = string;
4135
+ export type __stringMax249 = string;
4136
+ export type __stringMax256 = string;
3671
4137
  export type __stringMin1Max128 = string;
3672
4138
  export type __stringMin1Max64 = string;
3673
4139
  export type __stringMin5Max32 = string;
4140
+ export type __stringMin1Max128Pattern09AZaZ09AZaZ0 = string;
3674
4141
  export type __timestampIso8601 = Date;
3675
4142
  /**
3676
4143
  * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.