pub struct UpdateColumnStatisticsForPartitionRequest {
pub catalog_id: Option<String>,
pub column_statistics_list: Vec<ColumnStatistics>,
pub database_name: String,
pub partition_values: Vec<String>,
pub table_name: String,
}
Fields§
§catalog_id: Option<String>
The ID of the Data Catalog where the partitions in question reside. If none is supplied, the AWS account ID is used by default.
column_statistics_list: Vec<ColumnStatistics>
A list of the column statistics.
database_name: String
The name of the catalog database where the partitions reside.
partition_values: Vec<String>
A list of partition values identifying the partition.
table_name: String
The name of the partitions' table.
Trait Implementations§
Source§impl Clone for UpdateColumnStatisticsForPartitionRequest
impl Clone for UpdateColumnStatisticsForPartitionRequest
Source§fn clone(&self) -> UpdateColumnStatisticsForPartitionRequest
fn clone(&self) -> UpdateColumnStatisticsForPartitionRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for UpdateColumnStatisticsForPartitionRequest
impl Default for UpdateColumnStatisticsForPartitionRequest
Source§fn default() -> UpdateColumnStatisticsForPartitionRequest
fn default() -> UpdateColumnStatisticsForPartitionRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateColumnStatisticsForPartitionRequest
impl PartialEq for UpdateColumnStatisticsForPartitionRequest
Source§fn eq(&self, other: &UpdateColumnStatisticsForPartitionRequest) -> bool
fn eq(&self, other: &UpdateColumnStatisticsForPartitionRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateColumnStatisticsForPartitionRequest
Auto Trait Implementations§
impl Freeze for UpdateColumnStatisticsForPartitionRequest
impl RefUnwindSafe for UpdateColumnStatisticsForPartitionRequest
impl Send for UpdateColumnStatisticsForPartitionRequest
impl Sync for UpdateColumnStatisticsForPartitionRequest
impl Unpin for UpdateColumnStatisticsForPartitionRequest
impl UnwindSafe for UpdateColumnStatisticsForPartitionRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more