Struct aws_sdk_glue::operation::start_column_statistics_task_run::StartColumnStatisticsTaskRunInput
source · #[non_exhaustive]pub struct StartColumnStatisticsTaskRunInput {
pub database_name: Option<String>,
pub table_name: Option<String>,
pub column_name_list: Option<Vec<String>>,
pub role: Option<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 to generate statistics.
column_name_list: Option<Vec<String>>A list of the column names to generate statistics. If none is supplied, all column names for the table will be used by default.
role: Option<String>The IAM role that the service assumes to generate statistics.
sample_size: Option<f64>The percentage of rows used to generate statistics. If none is supplied, the entire table will be used to generate stats.
catalog_id: Option<String>The ID of the Data Catalog where the table reside. If none is supplied, the Amazon Web Services account ID is used by default.
security_configuration: Option<String>Name of the security configuration that is used to encrypt CloudWatch logs for the column stats task run.
Implementations§
source§impl StartColumnStatisticsTaskRunInput
impl StartColumnStatisticsTaskRunInput
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 to generate statistics.
sourcepub fn column_name_list(&self) -> &[String]
pub fn column_name_list(&self) -> &[String]
A list of the column names to generate statistics. If none is supplied, all column names for the table will be used by default.
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 role(&self) -> Option<&str>
pub fn role(&self) -> Option<&str>
The IAM role that the service assumes to generate statistics.
sourcepub fn sample_size(&self) -> Option<f64>
pub fn sample_size(&self) -> Option<f64>
The percentage of rows used to generate statistics. If none is supplied, the entire table will be used to generate stats.
sourcepub fn catalog_id(&self) -> Option<&str>
pub fn catalog_id(&self) -> Option<&str>
The ID of the Data Catalog where the table reside. If none is supplied, the Amazon Web Services account ID is used by default.
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 for the column stats task run.
source§impl StartColumnStatisticsTaskRunInput
impl StartColumnStatisticsTaskRunInput
sourcepub fn builder() -> StartColumnStatisticsTaskRunInputBuilder
pub fn builder() -> StartColumnStatisticsTaskRunInputBuilder
Creates a new builder-style object to manufacture StartColumnStatisticsTaskRunInput.
Trait Implementations§
source§impl Clone for StartColumnStatisticsTaskRunInput
impl Clone for StartColumnStatisticsTaskRunInput
source§fn clone(&self) -> StartColumnStatisticsTaskRunInput
fn clone(&self) -> StartColumnStatisticsTaskRunInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for StartColumnStatisticsTaskRunInput
impl PartialEq for StartColumnStatisticsTaskRunInput
source§fn eq(&self, other: &StartColumnStatisticsTaskRunInput) -> bool
fn eq(&self, other: &StartColumnStatisticsTaskRunInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for StartColumnStatisticsTaskRunInput
Auto Trait Implementations§
impl Freeze for StartColumnStatisticsTaskRunInput
impl RefUnwindSafe for StartColumnStatisticsTaskRunInput
impl Send for StartColumnStatisticsTaskRunInput
impl Sync for StartColumnStatisticsTaskRunInput
impl Unpin for StartColumnStatisticsTaskRunInput
impl UnwindSafe for StartColumnStatisticsTaskRunInput
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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