[−][src]Struct rusoto_glue::StorageDescriptor
Describes the physical storage of table data.
Fields
bucket_columns: Option<Vec<String>>
A list of reducer grouping columns, clustering columns, and bucketing columns in the table.
columns: Option<Vec<Column>>
A list of the Columns
in the table.
compressed: Option<bool>
True if the data in the table is compressed, or False if not.
input_format: Option<String>
The input format: SequenceFileInputFormat
(binary), or TextInputFormat
, or a custom format.
location: Option<String>
The physical location of the table. By default this takes the form of the warehouse location, followed by the database location in the warehouse, followed by the table name.
number_of_buckets: Option<i64>
Must be specified if the table contains any dimension columns.
output_format: Option<String>
The output format: SequenceFileOutputFormat
(binary), or IgnoreKeyTextOutputFormat
, or a custom format.
parameters: Option<HashMap<String, String>>
User-supplied properties in key-value form.
serde_info: Option<SerDeInfo>
Serialization/deserialization (SerDe) information.
skewed_info: Option<SkewedInfo>
Information about values that appear very frequently in a column (skewed values).
sort_columns: Option<Vec<Order>>
A list specifying the sort order of each bucket in the table.
stored_as_sub_directories: Option<bool>
True if the table data is stored in subdirectories, or False if not.
Trait Implementations
impl PartialEq<StorageDescriptor> for StorageDescriptor
[src]
fn eq(&self, other: &StorageDescriptor) -> bool
[src]
fn ne(&self, other: &StorageDescriptor) -> bool
[src]
impl Default for StorageDescriptor
[src]
fn default() -> StorageDescriptor
[src]
impl Clone for StorageDescriptor
[src]
fn clone(&self) -> StorageDescriptor
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for StorageDescriptor
[src]
impl Serialize for StorageDescriptor
[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer,
[src]
__S: Serializer,
impl<'de> Deserialize<'de> for StorageDescriptor
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for StorageDescriptor
impl Sync for StorageDescriptor
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self