#[non_exhaustive]pub struct CreateColumnStatisticsTaskSettingsInput {
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>,
pub tags: Option<HashMap<String, 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.
A map of tags.
Implementations§
Source§impl CreateColumnStatisticsTaskSettingsInput
impl CreateColumnStatisticsTaskSettingsInput
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.
A map of tags.
Source§impl CreateColumnStatisticsTaskSettingsInput
impl CreateColumnStatisticsTaskSettingsInput
Sourcepub fn builder() -> CreateColumnStatisticsTaskSettingsInputBuilder
pub fn builder() -> CreateColumnStatisticsTaskSettingsInputBuilder
Creates a new builder-style object to manufacture CreateColumnStatisticsTaskSettingsInput.
Trait Implementations§
Source§impl Clone for CreateColumnStatisticsTaskSettingsInput
impl Clone for CreateColumnStatisticsTaskSettingsInput
Source§fn clone(&self) -> CreateColumnStatisticsTaskSettingsInput
fn clone(&self) -> CreateColumnStatisticsTaskSettingsInput
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 CreateColumnStatisticsTaskSettingsInput
impl PartialEq for CreateColumnStatisticsTaskSettingsInput
Source§fn eq(&self, other: &CreateColumnStatisticsTaskSettingsInput) -> bool
fn eq(&self, other: &CreateColumnStatisticsTaskSettingsInput) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateColumnStatisticsTaskSettingsInput
Auto Trait Implementations§
impl Freeze for CreateColumnStatisticsTaskSettingsInput
impl RefUnwindSafe for CreateColumnStatisticsTaskSettingsInput
impl Send for CreateColumnStatisticsTaskSettingsInput
impl Sync for CreateColumnStatisticsTaskSettingsInput
impl Unpin for CreateColumnStatisticsTaskSettingsInput
impl UnsafeUnpin for CreateColumnStatisticsTaskSettingsInput
impl UnwindSafe for CreateColumnStatisticsTaskSettingsInput
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