[][src]Struct rusoto_kinesisanalytics::InputStartingPositionConfiguration

pub struct InputStartingPositionConfiguration {
    pub input_starting_position: Option<String>,
}

Describes the point at which the application reads from the streaming source.

Fields

input_starting_position: Option<String>

The starting position on the stream.

  • NOW - Start reading just after the most recent record in the stream, start at the request time stamp that the customer issued.

  • TRIMHORIZON - Start reading at the last untrimmed record in the stream, which is the oldest record available in the stream. This option is not available for an Amazon Kinesis Firehose delivery stream.

  • LASTSTOPPED_POINT - Resume reading from where the application last stopped reading.

Trait Implementations

impl Clone for InputStartingPositionConfiguration[src]

impl Debug for InputStartingPositionConfiguration[src]

impl Default for InputStartingPositionConfiguration[src]

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

impl PartialEq<InputStartingPositionConfiguration> for InputStartingPositionConfiguration[src]

impl Serialize for InputStartingPositionConfiguration[src]

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