[][src]Struct rusoto_glue::PartitionIndexDescriptor

pub struct PartitionIndexDescriptor {
    pub backfill_errors: Option<Vec<BackfillError>>,
    pub index_name: String,
    pub index_status: String,
    pub keys: Vec<KeySchemaElement>,
}

A descriptor for a partition index in a table.

Fields

backfill_errors: Option<Vec<BackfillError>>

A list of errors that can occur when registering partition indexes for an existing table.

index_name: String

The name of the partition index.

index_status: String

The status of the partition index.

The possible statuses are:

  • CREATING: The index is being created. When an index is in a CREATING state, the index or its table cannot be deleted.

  • ACTIVE: The index creation succeeds.

  • FAILED: The index creation fails.

  • DELETING: The index is deleted from the list of indexes.

keys: Vec<KeySchemaElement>

A list of one or more keys, as KeySchemaElement structures, for the partition index.

Trait Implementations

impl Clone for PartitionIndexDescriptor[src]

impl Debug for PartitionIndexDescriptor[src]

impl Default for PartitionIndexDescriptor[src]

impl<'de> Deserialize<'de> for PartitionIndexDescriptor[src]

impl PartialEq<PartitionIndexDescriptor> for PartitionIndexDescriptor[src]

impl StructuralPartialEq for PartitionIndexDescriptor[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.