All Release Notes

Confluent Cloud added as Subscription destination

7 June 2023
Enhancement
Messages/Subscriptions

We are announcing that Confluent Cloud is now supported as a Subscription destination.

With the introduction of Confluent Cloud support, customers can now natively use Apache Kafka across their preferred cloud platforms, whether it's Google Cloud, Azure, or AWS. This integration not only eliminates the necessity for intermediary gateways to consume messages from Kafka but also reduces the associated resources and costs.

Changes:

  • [API] Added ConfluentCloudDestination to Subscriptions.
  • [GraphQL API] Added the following types to the GraphQL schema: ConfluentCloudDestination, ConfluentCloudDestinationInput
  • [GraphQL API] Changed the DestinationInput type:
    • Input field ConfluentCloud was added to DestinationInput type

The following changes were introduced in terms of GraphQL SDL:

extend input DestinationInput {
ConfluentCloud: ConfluentCloudDestinationInput
}
type ConfluentCloudDestination implements Destination {
bootstrapServer: String!
apiKey: String!
apiSecret: String!
acks: String!
topic: String!
key: String
type: String!
}
input ConfluentCloudDestinationInput {
bootstrapServer: String!
apiKey: String!
apiSecret: String!
acks: String!
topic: String!
key: String
}