pub struct DestinationTableProperties {
pub description: Option<String>,
pub expiration_time: Option<DateTime<Utc>>,
pub friendly_name: Option<String>,
pub labels: Option<HashMap<String, String>>,
}Expand description
Properties for the destination table.
This type is not used in any activity, and only used as part of another schema.
Fields§
§description: Option<String>Optional. The description for the destination table. This will only be used if the destination table is newly created. If the table already exists and a value different than the current description is provided, the job will fail.
expiration_time: Option<DateTime<Utc>>Internal use only.
friendly_name: Option<String>Optional. Friendly name for the destination table. If the table already exists, it should be same as the existing friendly name.
labels: Option<HashMap<String, String>>Optional. The labels associated with this table. You can use these to organize and group your tables. This will only be used if the destination table is newly created. If the table already exists and labels are different than the current labels are provided, the job will fail.
Trait Implementations§
Source§impl Clone for DestinationTableProperties
impl Clone for DestinationTableProperties
Source§fn clone(&self) -> DestinationTableProperties
fn clone(&self) -> DestinationTableProperties
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more