Struct aws_sdk_databrew::model::format_options::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for FormatOptions
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn json(self, input: JsonOptions) -> Self
pub fn json(self, input: JsonOptions) -> Self
Options that define how JSON input is to be interpreted by DataBrew.
sourcepub fn set_json(self, input: Option<JsonOptions>) -> Self
pub fn set_json(self, input: Option<JsonOptions>) -> Self
Options that define how JSON input is to be interpreted by DataBrew.
sourcepub fn excel(self, input: ExcelOptions) -> Self
pub fn excel(self, input: ExcelOptions) -> Self
Options that define how Excel input is to be interpreted by DataBrew.
sourcepub fn set_excel(self, input: Option<ExcelOptions>) -> Self
pub fn set_excel(self, input: Option<ExcelOptions>) -> Self
Options that define how Excel input is to be interpreted by DataBrew.
sourcepub fn csv(self, input: CsvOptions) -> Self
pub fn csv(self, input: CsvOptions) -> Self
Options that define how CSV input is to be interpreted by DataBrew.
sourcepub fn set_csv(self, input: Option<CsvOptions>) -> Self
pub fn set_csv(self, input: Option<CsvOptions>) -> Self
Options that define how CSV input is to be interpreted by DataBrew.
sourcepub fn build(self) -> FormatOptions
pub fn build(self) -> FormatOptions
Consumes the builder and constructs a FormatOptions
.