Struct aws_sdk_glue::operation::batch_get_table_optimizer::builders::BatchGetTableOptimizerOutputBuilder    
source · #[non_exhaustive]pub struct BatchGetTableOptimizerOutputBuilder { /* private fields */ }Expand description
A builder for BatchGetTableOptimizerOutput.
Implementations§
source§impl BatchGetTableOptimizerOutputBuilder
 
impl BatchGetTableOptimizerOutputBuilder
sourcepub fn table_optimizers(self, input: BatchTableOptimizer) -> Self
 
pub fn table_optimizers(self, input: BatchTableOptimizer) -> Self
Appends an item to table_optimizers.
To override the contents of this collection use set_table_optimizers.
A list of BatchTableOptimizer objects.
sourcepub fn set_table_optimizers(
    self,
    input: Option<Vec<BatchTableOptimizer>>,
) -> Self
 
pub fn set_table_optimizers( self, input: Option<Vec<BatchTableOptimizer>>, ) -> Self
A list of BatchTableOptimizer objects.
sourcepub fn get_table_optimizers(&self) -> &Option<Vec<BatchTableOptimizer>>
 
pub fn get_table_optimizers(&self) -> &Option<Vec<BatchTableOptimizer>>
A list of BatchTableOptimizer objects.
sourcepub fn failures(self, input: BatchGetTableOptimizerError) -> Self
 
pub fn failures(self, input: BatchGetTableOptimizerError) -> Self
Appends an item to failures.
To override the contents of this collection use set_failures.
A list of errors from the operation.
sourcepub fn set_failures(
    self,
    input: Option<Vec<BatchGetTableOptimizerError>>,
) -> Self
 
pub fn set_failures( self, input: Option<Vec<BatchGetTableOptimizerError>>, ) -> Self
A list of errors from the operation.
sourcepub fn get_failures(&self) -> &Option<Vec<BatchGetTableOptimizerError>>
 
pub fn get_failures(&self) -> &Option<Vec<BatchGetTableOptimizerError>>
A list of errors from the operation.
sourcepub fn build(self) -> BatchGetTableOptimizerOutput
 
pub fn build(self) -> BatchGetTableOptimizerOutput
Consumes the builder and constructs a BatchGetTableOptimizerOutput.
Trait Implementations§
source§impl Clone for BatchGetTableOptimizerOutputBuilder
 
impl Clone for BatchGetTableOptimizerOutputBuilder
source§fn clone(&self) -> BatchGetTableOptimizerOutputBuilder
 
fn clone(&self) -> BatchGetTableOptimizerOutputBuilder
Returns a copy 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 BatchGetTableOptimizerOutputBuilder
 
impl Default for BatchGetTableOptimizerOutputBuilder
source§fn default() -> BatchGetTableOptimizerOutputBuilder
 
fn default() -> BatchGetTableOptimizerOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for BatchGetTableOptimizerOutputBuilder
 
impl PartialEq for BatchGetTableOptimizerOutputBuilder
source§fn eq(&self, other: &BatchGetTableOptimizerOutputBuilder) -> bool
 
fn eq(&self, other: &BatchGetTableOptimizerOutputBuilder) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BatchGetTableOptimizerOutputBuilder
Auto Trait Implementations§
impl Freeze for BatchGetTableOptimizerOutputBuilder
impl RefUnwindSafe for BatchGetTableOptimizerOutputBuilder
impl Send for BatchGetTableOptimizerOutputBuilder
impl Sync for BatchGetTableOptimizerOutputBuilder
impl Unpin for BatchGetTableOptimizerOutputBuilder
impl UnwindSafe for BatchGetTableOptimizerOutputBuilder
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
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>
Converts 
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>
Converts 
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 moreCreates a shared type from an unshared type.