#[non_exhaustive]pub struct UpdateColumnStatisticsTaskSettingsInput {
pub database_name: Option<String>,
pub table_name: Option<String>,
pub role: Option<String>,
pub schedule: Option<String>,
pub column_name_list: Option<Vec<String>>,
pub sample_size: Option<f64>,
pub catalog_id: Option<String>,
pub security_configuration: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.database_name: Option<String>The name of the database where the table resides.
table_name: Option<String>The name of the table for which to generate column statistics.
role: Option<String>The role used for running the column statistics.
schedule: Option<String>A schedule for running the column statistics, specified in CRON syntax.
column_name_list: Option<Vec<String>>A list of column names for which to run statistics.
sample_size: Option<f64>The percentage of data to sample.
catalog_id: Option<String>The ID of the Data Catalog in which the database resides.
security_configuration: Option<String>Name of the security configuration that is used to encrypt CloudWatch logs.
Implementations§
Source§impl UpdateColumnStatisticsTaskSettingsInput
impl UpdateColumnStatisticsTaskSettingsInput
Sourcepub fn database_name(&self) -> Option<&str>
pub fn database_name(&self) -> Option<&str>
The name of the database where the table resides.
Sourcepub fn table_name(&self) -> Option<&str>
pub fn table_name(&self) -> Option<&str>
The name of the table for which to generate column statistics.
Sourcepub fn schedule(&self) -> Option<&str>
pub fn schedule(&self) -> Option<&str>
A schedule for running the column statistics, specified in CRON syntax.
Sourcepub fn column_name_list(&self) -> &[String]
pub fn column_name_list(&self) -> &[String]
A list of column names for which to run statistics.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .column_name_list.is_none().
Sourcepub fn sample_size(&self) -> Option<f64>
pub fn sample_size(&self) -> Option<f64>
The percentage of data to sample.
Sourcepub fn catalog_id(&self) -> Option<&str>
pub fn catalog_id(&self) -> Option<&str>
The ID of the Data Catalog in which the database resides.
Sourcepub fn security_configuration(&self) -> Option<&str>
pub fn security_configuration(&self) -> Option<&str>
Name of the security configuration that is used to encrypt CloudWatch logs.
Source§impl UpdateColumnStatisticsTaskSettingsInput
impl UpdateColumnStatisticsTaskSettingsInput
Sourcepub fn builder() -> UpdateColumnStatisticsTaskSettingsInputBuilder
pub fn builder() -> UpdateColumnStatisticsTaskSettingsInputBuilder
Creates a new builder-style object to manufacture UpdateColumnStatisticsTaskSettingsInput.
Trait Implementations§
Source§impl Clone for UpdateColumnStatisticsTaskSettingsInput
impl Clone for UpdateColumnStatisticsTaskSettingsInput
Source§fn clone(&self) -> UpdateColumnStatisticsTaskSettingsInput
fn clone(&self) -> UpdateColumnStatisticsTaskSettingsInput
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl PartialEq for UpdateColumnStatisticsTaskSettingsInput
impl PartialEq for UpdateColumnStatisticsTaskSettingsInput
Source§fn eq(&self, other: &UpdateColumnStatisticsTaskSettingsInput) -> bool
fn eq(&self, other: &UpdateColumnStatisticsTaskSettingsInput) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateColumnStatisticsTaskSettingsInput
Auto Trait Implementations§
impl Freeze for UpdateColumnStatisticsTaskSettingsInput
impl RefUnwindSafe for UpdateColumnStatisticsTaskSettingsInput
impl Send for UpdateColumnStatisticsTaskSettingsInput
impl Sync for UpdateColumnStatisticsTaskSettingsInput
impl Unpin for UpdateColumnStatisticsTaskSettingsInput
impl UnsafeUnpin for UpdateColumnStatisticsTaskSettingsInput
impl UnwindSafe for UpdateColumnStatisticsTaskSettingsInput
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more