Struct aws_sdk_databrew::types::builders::InputBuilder
source · #[non_exhaustive]pub struct InputBuilder { /* private fields */ }
Expand description
A builder for Input
.
Implementations§
source§impl InputBuilder
impl InputBuilder
sourcepub fn s3_input_definition(self, input: S3Location) -> Self
pub fn s3_input_definition(self, input: S3Location) -> Self
The Amazon S3 location where the data is stored.
sourcepub fn set_s3_input_definition(self, input: Option<S3Location>) -> Self
pub fn set_s3_input_definition(self, input: Option<S3Location>) -> Self
The Amazon S3 location where the data is stored.
sourcepub fn get_s3_input_definition(&self) -> &Option<S3Location>
pub fn get_s3_input_definition(&self) -> &Option<S3Location>
The Amazon S3 location where the data is stored.
sourcepub fn data_catalog_input_definition(
self,
input: DataCatalogInputDefinition,
) -> Self
pub fn data_catalog_input_definition( self, input: DataCatalogInputDefinition, ) -> Self
The Glue Data Catalog parameters for the data.
sourcepub fn set_data_catalog_input_definition(
self,
input: Option<DataCatalogInputDefinition>,
) -> Self
pub fn set_data_catalog_input_definition( self, input: Option<DataCatalogInputDefinition>, ) -> Self
The Glue Data Catalog parameters for the data.
sourcepub fn get_data_catalog_input_definition(
&self,
) -> &Option<DataCatalogInputDefinition>
pub fn get_data_catalog_input_definition( &self, ) -> &Option<DataCatalogInputDefinition>
The Glue Data Catalog parameters for the data.
sourcepub fn database_input_definition(self, input: DatabaseInputDefinition) -> Self
pub fn database_input_definition(self, input: DatabaseInputDefinition) -> Self
Connection information for dataset input files stored in a database.
sourcepub fn set_database_input_definition(
self,
input: Option<DatabaseInputDefinition>,
) -> Self
pub fn set_database_input_definition( self, input: Option<DatabaseInputDefinition>, ) -> Self
Connection information for dataset input files stored in a database.
sourcepub fn get_database_input_definition(&self) -> &Option<DatabaseInputDefinition>
pub fn get_database_input_definition(&self) -> &Option<DatabaseInputDefinition>
Connection information for dataset input files stored in a database.
sourcepub fn metadata(self, input: Metadata) -> Self
pub fn metadata(self, input: Metadata) -> Self
Contains additional resource information needed for specific datasets.
sourcepub fn set_metadata(self, input: Option<Metadata>) -> Self
pub fn set_metadata(self, input: Option<Metadata>) -> Self
Contains additional resource information needed for specific datasets.
sourcepub fn get_metadata(&self) -> &Option<Metadata>
pub fn get_metadata(&self) -> &Option<Metadata>
Contains additional resource information needed for specific datasets.
Trait Implementations§
source§impl Clone for InputBuilder
impl Clone for InputBuilder
source§fn clone(&self) -> InputBuilder
fn clone(&self) -> InputBuilder
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 Debug for InputBuilder
impl Debug for InputBuilder
source§impl Default for InputBuilder
impl Default for InputBuilder
source§fn default() -> InputBuilder
fn default() -> InputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for InputBuilder
impl PartialEq for InputBuilder
impl StructuralPartialEq for InputBuilder
Auto Trait Implementations§
impl Freeze for InputBuilder
impl RefUnwindSafe for InputBuilder
impl Send for InputBuilder
impl Sync for InputBuilder
impl Unpin for InputBuilder
impl UnwindSafe for InputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
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>
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.