gcp_bigquery_client/model/encryption_configuration.rs
use serde::{Deserialize, Serialize};
#[derive(Debug, Default, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct EncryptionConfiguration {
/// [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.
#[serde(skip_serializing_if = "Option::is_none")]
pub kms_key_name: Option<String>,
}