#[non_exhaustive]pub struct SqlRunConfiguration {
pub input_id: String,
pub input_starting_position_configuration: Option<InputStartingPositionConfiguration>,
}Expand description
Describes the starting parameters for a SQL-based Kinesis Data Analytics application.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.input_id: StringThe input source ID. You can get this ID by calling the DescribeApplication operation.
input_starting_position_configuration: Option<InputStartingPositionConfiguration>The point at which you want the application to start processing records from the streaming source.
Implementations§
source§impl SqlRunConfiguration
impl SqlRunConfiguration
sourcepub fn input_id(&self) -> &str
pub fn input_id(&self) -> &str
The input source ID. You can get this ID by calling the DescribeApplication operation.
sourcepub fn input_starting_position_configuration(
&self
) -> Option<&InputStartingPositionConfiguration>
pub fn input_starting_position_configuration( &self ) -> Option<&InputStartingPositionConfiguration>
The point at which you want the application to start processing records from the streaming source.
source§impl SqlRunConfiguration
impl SqlRunConfiguration
sourcepub fn builder() -> SqlRunConfigurationBuilder
pub fn builder() -> SqlRunConfigurationBuilder
Creates a new builder-style object to manufacture SqlRunConfiguration.
Trait Implementations§
source§impl Clone for SqlRunConfiguration
impl Clone for SqlRunConfiguration
source§fn clone(&self) -> SqlRunConfiguration
fn clone(&self) -> SqlRunConfiguration
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for SqlRunConfiguration
impl Debug for SqlRunConfiguration
source§impl PartialEq for SqlRunConfiguration
impl PartialEq for SqlRunConfiguration
source§fn eq(&self, other: &SqlRunConfiguration) -> bool
fn eq(&self, other: &SqlRunConfiguration) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for SqlRunConfiguration
Auto Trait Implementations§
impl RefUnwindSafe for SqlRunConfiguration
impl Send for SqlRunConfiguration
impl Sync for SqlRunConfiguration
impl Unpin for SqlRunConfiguration
impl UnwindSafe for SqlRunConfiguration
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.