[][src]Struct rusoto_glue::PartitionInput

pub struct PartitionInput {
    pub last_access_time: Option<f64>,
    pub last_analyzed_time: Option<f64>,
    pub parameters: Option<HashMap<String, String>>,
    pub storage_descriptor: Option<StorageDescriptor>,
    pub values: Option<Vec<String>>,
}

The structure used to create and update a partition.

Fields

last_access_time: Option<f64>

The last time at which the partition was accessed.

last_analyzed_time: Option<f64>

The last time at which column statistics were computed for this partition.

parameters: Option<HashMap<String, String>>

These key-value pairs define partition parameters.

storage_descriptor: Option<StorageDescriptor>

Provides information about the physical location where the partition is stored.

values: Option<Vec<String>>

The values of the partition. Although this parameter is not required by the SDK, you must specify this parameter for a valid input.

The values for the keys for the new partition must be passed as an array of String objects that must be ordered in the same order as the partition keys appearing in the Amazon S3 prefix. Otherwise AWS Glue will add the values to the wrong keys.

Trait Implementations

impl Clone for PartitionInput[src]

impl Debug for PartitionInput[src]

impl Default for PartitionInput[src]

impl PartialEq<PartitionInput> for PartitionInput[src]

impl Serialize for PartitionInput[src]

impl StructuralPartialEq for PartitionInput[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.