pub struct GetColumnStatisticsForTableRequest {
pub catalog_id: Option<String>,
pub column_names: Vec<String>,
pub database_name: 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_names: Vec<String>
A list of the column names.
database_name: String
The name of the catalog database where the partitions reside.
table_name: String
The name of the partitions' table.
Trait Implementations§
Source§impl Clone for GetColumnStatisticsForTableRequest
impl Clone for GetColumnStatisticsForTableRequest
Source§fn clone(&self) -> GetColumnStatisticsForTableRequest
fn clone(&self) -> GetColumnStatisticsForTableRequest
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 GetColumnStatisticsForTableRequest
impl Default for GetColumnStatisticsForTableRequest
Source§fn default() -> GetColumnStatisticsForTableRequest
fn default() -> GetColumnStatisticsForTableRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetColumnStatisticsForTableRequest
impl PartialEq for GetColumnStatisticsForTableRequest
Source§fn eq(&self, other: &GetColumnStatisticsForTableRequest) -> bool
fn eq(&self, other: &GetColumnStatisticsForTableRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetColumnStatisticsForTableRequest
Auto Trait Implementations§
impl Freeze for GetColumnStatisticsForTableRequest
impl RefUnwindSafe for GetColumnStatisticsForTableRequest
impl Send for GetColumnStatisticsForTableRequest
impl Sync for GetColumnStatisticsForTableRequest
impl Unpin for GetColumnStatisticsForTableRequest
impl UnwindSafe for GetColumnStatisticsForTableRequest
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