pub struct ConfluentCloud {
pub bootstrap_server: Option<String>,
pub cluster_id: Option<String>,
pub gcp_service_account: Option<String>,
pub identity_pool_id: Option<String>,
pub state: Option<String>,
pub topic: Option<String>,
}Expand description
Ingestion settings for Confluent Cloud.
This type is not used in any activity, and only used as part of another schema.
Fields§
§bootstrap_server: Option<String>Required. The address of the bootstrap server. The format is url:port.
cluster_id: Option<String>Required. The id of the cluster.
gcp_service_account: Option<String>Required. The GCP service account to be used for Federated Identity authentication with identity_pool_id.
identity_pool_id: Option<String>Required. The id of the identity pool to be used for Federated Identity authentication with Confluent Cloud. See https://docs.confluent.io/cloud/current/security/authenticate/workload-identities/identity-providers/oauth/identity-pools.html#add-oauth-identity-pools.
state: Option<String>Output only. An output-only field that indicates the state of the Confluent Cloud ingestion source.
topic: Option<String>Required. The name of the topic in the Confluent Cloud cluster that Pub/Sub will import from.
Trait Implementations§
Source§impl Clone for ConfluentCloud
impl Clone for ConfluentCloud
Source§fn clone(&self) -> ConfluentCloud
fn clone(&self) -> ConfluentCloud
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more