[][src]Struct rusoto_dynamodb::GlobalSecondaryIndexUpdate

pub struct GlobalSecondaryIndexUpdate {
    pub create: Option<CreateGlobalSecondaryIndexAction>,
    pub delete: Option<DeleteGlobalSecondaryIndexAction>,
    pub update: Option<UpdateGlobalSecondaryIndexAction>,
}

Represents one of the following:

  • A new global secondary index to be added to an existing table.

  • New provisioned throughput parameters for an existing global secondary index.

  • An existing global secondary index to be removed from an existing table.

Fields

create: Option<CreateGlobalSecondaryIndexAction>

The parameters required for creating a global secondary index on an existing table:

  • IndexName

  • KeySchema

  • AttributeDefinitions

  • Projection

  • ProvisionedThroughput

delete: Option<DeleteGlobalSecondaryIndexAction>

The name of an existing global secondary index to be removed.

update: Option<UpdateGlobalSecondaryIndexAction>

The name of an existing global secondary index, along with new provisioned throughput settings to be applied to that index.

Trait Implementations

impl Clone for GlobalSecondaryIndexUpdate[src]

impl Default for GlobalSecondaryIndexUpdate[src]

impl PartialEq<GlobalSecondaryIndexUpdate> for GlobalSecondaryIndexUpdate[src]

impl Debug for GlobalSecondaryIndexUpdate[src]

impl StructuralPartialEq for GlobalSecondaryIndexUpdate[src]

impl Serialize for GlobalSecondaryIndexUpdate[src]

Auto Trait Implementations

Blanket Implementations

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

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

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.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self