Struct aws_sdk_databrew::model::FormatOptions
source · [−]#[non_exhaustive]pub struct FormatOptions {
pub json: Option<JsonOptions>,
pub excel: Option<ExcelOptions>,
pub csv: Option<CsvOptions>,
}
Expand description
Represents a set of options that define the structure of either comma-separated value (CSV), Excel, or JSON input.
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.json: Option<JsonOptions>
Options that define how JSON input is to be interpreted by DataBrew.
excel: Option<ExcelOptions>
Options that define how Excel input is to be interpreted by DataBrew.
csv: Option<CsvOptions>
Options that define how CSV input is to be interpreted by DataBrew.
Implementations
Options that define how JSON input is to be interpreted by DataBrew.
Options that define how Excel input is to be interpreted by DataBrew.
Options that define how CSV input is to be interpreted by DataBrew.
Creates a new builder-style object to manufacture FormatOptions
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for FormatOptions
impl Send for FormatOptions
impl Sync for FormatOptions
impl Unpin for FormatOptions
impl UnwindSafe for FormatOptions
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more