pub struct FileFormatConfiguration {
pub json_configuration: Option<JsonConfiguration>,
pub parquet_configuration: Option<ParquetConfiguration>,
}
Expand description
Contains the configuration information of file formats. AWS 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§
§json_configuration: Option<JsonConfiguration>
Contains the configuration information of the JSON format.
parquet_configuration: Option<ParquetConfiguration>
Contains the configuration information of the Parquet format.
Trait Implementations§
Source§impl Clone for FileFormatConfiguration
impl Clone for FileFormatConfiguration
Source§fn clone(&self) -> FileFormatConfiguration
fn clone(&self) -> FileFormatConfiguration
Returns a duplicate 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 Default for FileFormatConfiguration
impl Default for FileFormatConfiguration
Source§fn default() -> FileFormatConfiguration
fn default() -> FileFormatConfiguration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FileFormatConfiguration
impl<'de> Deserialize<'de> for FileFormatConfiguration
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for FileFormatConfiguration
impl PartialEq for FileFormatConfiguration
Source§impl Serialize for FileFormatConfiguration
impl Serialize for FileFormatConfiguration
impl StructuralPartialEq for FileFormatConfiguration
Auto Trait Implementations§
impl Freeze for FileFormatConfiguration
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