#[non_exhaustive]pub struct FileFormatConfiguration {
pub json_configuration: Option<JsonConfiguration>,
pub parquet_configuration: Option<ParquetConfiguration>,
}
Expand description
Contains the configuration information of file formats. IoT Analytics data stores support JSON and Parquet.
The default file format is JSON. You can specify only one format.
You can't change the file format after you create the data store.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.json_configuration: Option<JsonConfiguration>
Contains the configuration information of the JSON format.
parquet_configuration: Option<ParquetConfiguration>
Contains the configuration information of the Parquet format.
Implementations§
source§impl FileFormatConfiguration
impl FileFormatConfiguration
sourcepub fn json_configuration(&self) -> Option<&JsonConfiguration>
pub fn json_configuration(&self) -> Option<&JsonConfiguration>
Contains the configuration information of the JSON format.
sourcepub fn parquet_configuration(&self) -> Option<&ParquetConfiguration>
pub fn parquet_configuration(&self) -> Option<&ParquetConfiguration>
Contains the configuration information of the Parquet format.
source§impl FileFormatConfiguration
impl FileFormatConfiguration
sourcepub fn builder() -> FileFormatConfigurationBuilder
pub fn builder() -> FileFormatConfigurationBuilder
Creates a new builder-style object to manufacture FileFormatConfiguration
.
Trait Implementations§
source§impl Clone for FileFormatConfiguration
impl Clone for FileFormatConfiguration
source§fn clone(&self) -> FileFormatConfiguration
fn clone(&self) -> FileFormatConfiguration
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 FileFormatConfiguration
impl Debug for FileFormatConfiguration
source§impl PartialEq for FileFormatConfiguration
impl PartialEq for FileFormatConfiguration
source§fn eq(&self, other: &FileFormatConfiguration) -> bool
fn eq(&self, other: &FileFormatConfiguration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for FileFormatConfiguration
Auto Trait Implementations§
impl RefUnwindSafe for FileFormatConfiguration
impl Send for FileFormatConfiguration
impl Sync for FileFormatConfiguration
impl Unpin for FileFormatConfiguration
impl UnwindSafe for FileFormatConfiguration
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>
Creates a shared type from an unshared type.