Struct aws_sdk_glue::types::DirectKinesisSource  
source · #[non_exhaustive]pub struct DirectKinesisSource {
    pub name: String,
    pub window_size: Option<i32>,
    pub detect_schema: Option<bool>,
    pub streaming_options: Option<KinesisStreamingSourceOptions>,
    pub data_preview_options: Option<StreamingDataPreviewOptions>,
}Expand description
Specifies a direct Amazon Kinesis data source.
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.name: StringThe name of the data source.
window_size: Option<i32>The amount of time to spend processing each micro batch.
detect_schema: Option<bool>Whether to automatically determine the schema from the incoming data.
streaming_options: Option<KinesisStreamingSourceOptions>Additional options for the Kinesis streaming data source.
data_preview_options: Option<StreamingDataPreviewOptions>Additional options for data preview.
Implementations§
source§impl DirectKinesisSource
 
impl DirectKinesisSource
sourcepub fn window_size(&self) -> Option<i32>
 
pub fn window_size(&self) -> Option<i32>
The amount of time to spend processing each micro batch.
sourcepub fn detect_schema(&self) -> Option<bool>
 
pub fn detect_schema(&self) -> Option<bool>
Whether to automatically determine the schema from the incoming data.
sourcepub fn streaming_options(&self) -> Option<&KinesisStreamingSourceOptions>
 
pub fn streaming_options(&self) -> Option<&KinesisStreamingSourceOptions>
Additional options for the Kinesis streaming data source.
sourcepub fn data_preview_options(&self) -> Option<&StreamingDataPreviewOptions>
 
pub fn data_preview_options(&self) -> Option<&StreamingDataPreviewOptions>
Additional options for data preview.
source§impl DirectKinesisSource
 
impl DirectKinesisSource
sourcepub fn builder() -> DirectKinesisSourceBuilder
 
pub fn builder() -> DirectKinesisSourceBuilder
Creates a new builder-style object to manufacture DirectKinesisSource.
Trait Implementations§
source§impl Clone for DirectKinesisSource
 
impl Clone for DirectKinesisSource
source§fn clone(&self) -> DirectKinesisSource
 
fn clone(&self) -> DirectKinesisSource
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 DirectKinesisSource
 
impl Debug for DirectKinesisSource
source§impl PartialEq for DirectKinesisSource
 
impl PartialEq for DirectKinesisSource
source§fn eq(&self, other: &DirectKinesisSource) -> bool
 
fn eq(&self, other: &DirectKinesisSource) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DirectKinesisSource
Auto Trait Implementations§
impl RefUnwindSafe for DirectKinesisSource
impl Send for DirectKinesisSource
impl Sync for DirectKinesisSource
impl Unpin for DirectKinesisSource
impl UnwindSafe for DirectKinesisSource
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.