[][src]Struct rusoto_glue::BatchUpdatePartitionRequest

pub struct BatchUpdatePartitionRequest {
    pub catalog_id: Option<String>,
    pub database_name: String,
    pub entries: Vec<BatchUpdatePartitionRequestEntry>,
    pub table_name: String,
}

Fields

catalog_id: Option<String>

The ID of the catalog in which the partition is to be updated. Currently, this should be the AWS account ID.

database_name: String

The name of the metadata database in which the partition is to be updated.

entries: Vec<BatchUpdatePartitionRequestEntry>

A list of up to 100 BatchUpdatePartitionRequestEntry objects to update.

table_name: String

The name of the metadata table in which the partition is to be updated.

Trait Implementations

impl Clone for BatchUpdatePartitionRequest[src]

impl Debug for BatchUpdatePartitionRequest[src]

impl Default for BatchUpdatePartitionRequest[src]

impl PartialEq<BatchUpdatePartitionRequest> for BatchUpdatePartitionRequest[src]

impl Serialize for BatchUpdatePartitionRequest[src]

impl StructuralPartialEq for BatchUpdatePartitionRequest[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> Instrument 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> 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.