gcp_bigquery_client/model/
encryption_configuration.rs

1use serde::{Deserialize, Serialize};
2
3#[derive(Debug, Default, Clone, Serialize, Deserialize)]
4#[serde(rename_all = "camelCase")]
5pub struct EncryptionConfiguration {
6    /// [Optional] Describes the Cloud KMS encryption key that will be used to protect destination BigQuery table. The BigQuery Service Account associated with your project requires access to this encryption key.
7    #[serde(skip_serializing_if = "Option::is_none")]
8    pub kms_key_name: Option<String>,
9}