Struct google_datastream1::api::DatasetTemplate
source · pub struct DatasetTemplate {
pub dataset_id_prefix: Option<String>,
pub kms_key_name: Option<String>,
pub location: Option<String>,
}
Expand description
Dataset template used for dynamic dataset creation.
This type is not used in any activity, and only used as part of another schema.
Fields§
§dataset_id_prefix: Option<String>
If supplied, every created dataset will have its name prefixed by the provided value. The prefix and name will be separated by an underscore. i.e. _.
kms_key_name: Option<String>
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. i.e. projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{cryptoKey}. See https://cloud.google.com/bigquery/docs/customer-managed-encryption for more information.
location: Option<String>
Required. The geographic location where the dataset should reside. See https://cloud.google.com/bigquery/docs/locations for supported locations.
Trait Implementations§
source§impl Clone for DatasetTemplate
impl Clone for DatasetTemplate
source§fn clone(&self) -> DatasetTemplate
fn clone(&self) -> DatasetTemplate
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more