Struct rusoto_kinesisanalytics::InputConfiguration[][src]

pub struct InputConfiguration {
    pub id: String,
    pub input_starting_position_configuration: InputStartingPositionConfiguration,
}

When you start your application, you provide this configuration, which identifies the input source and the point in the input source at which you want the application to start processing records.

Fields

Input source ID. You can get this ID by calling the DescribeApplication operation.

Point at which you want the application to start processing records from the streaming source.

Trait Implementations

impl Default for InputConfiguration
[src]

Returns the "default value" for a type. Read more

impl Debug for InputConfiguration
[src]

Formats the value using the given formatter. Read more

impl Clone for InputConfiguration
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for InputConfiguration
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations