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 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 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 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.
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<InputBuilder> for InputBuilder
impl PartialEq<InputBuilder> for InputBuilder
source§fn eq(&self, other: &InputBuilder) -> bool
fn eq(&self, other: &InputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.