[][src]Struct rusoto_kinesis::UpdateShardCountInput

pub struct UpdateShardCountInput {
    pub scaling_type: String,
    pub stream_name: String,
    pub target_shard_count: i64,
}

Fields

scaling_type: String

The scaling type. Uniform scaling creates shards of equal size.

stream_name: String

The name of the stream.

target_shard_count: i64

The new number of shards. This value has the following default limits. By default, you cannot do the following:

  • Set this value to more than double your current shard count for a stream.

  • Set this value below half your current shard count for a stream.

  • Set this value to more than 500 shards in a stream (the default limit for shard count per stream is 500 per account per region), unless you request a limit increase.

  • Scale a stream with more than 500 shards down unless you set this value to less than 500 shards.

Trait Implementations

impl Clone for UpdateShardCountInput[src]

impl Debug for UpdateShardCountInput[src]

impl Default for UpdateShardCountInput[src]

impl PartialEq<UpdateShardCountInput> for UpdateShardCountInput[src]

impl Serialize for UpdateShardCountInput[src]

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