Struct aws_sdk_glue::types::DirectKafkaSource  
source · #[non_exhaustive]pub struct DirectKafkaSource {
    pub name: String,
    pub streaming_options: Option<KafkaStreamingSourceOptions>,
    pub window_size: Option<i32>,
    pub detect_schema: Option<bool>,
    pub data_preview_options: Option<StreamingDataPreviewOptions>,
}Expand description
Specifies an Apache Kafka data store.
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 store.
streaming_options: Option<KafkaStreamingSourceOptions>Specifies the streaming options.
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.
data_preview_options: Option<StreamingDataPreviewOptions>Specifies options related to data preview for viewing a sample of your data.
Implementations§
source§impl DirectKafkaSource
 
impl DirectKafkaSource
sourcepub fn streaming_options(&self) -> Option<&KafkaStreamingSourceOptions>
 
pub fn streaming_options(&self) -> Option<&KafkaStreamingSourceOptions>
Specifies the streaming options.
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 data_preview_options(&self) -> Option<&StreamingDataPreviewOptions>
 
pub fn data_preview_options(&self) -> Option<&StreamingDataPreviewOptions>
Specifies options related to data preview for viewing a sample of your data.
source§impl DirectKafkaSource
 
impl DirectKafkaSource
sourcepub fn builder() -> DirectKafkaSourceBuilder
 
pub fn builder() -> DirectKafkaSourceBuilder
Creates a new builder-style object to manufacture DirectKafkaSource.
Trait Implementations§
source§impl Clone for DirectKafkaSource
 
impl Clone for DirectKafkaSource
source§fn clone(&self) -> DirectKafkaSource
 
fn clone(&self) -> DirectKafkaSource
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 DirectKafkaSource
 
impl Debug for DirectKafkaSource
source§impl PartialEq for DirectKafkaSource
 
impl PartialEq for DirectKafkaSource
source§fn eq(&self, other: &DirectKafkaSource) -> bool
 
fn eq(&self, other: &DirectKafkaSource) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DirectKafkaSource
Auto Trait Implementations§
impl RefUnwindSafe for DirectKafkaSource
impl Send for DirectKafkaSource
impl Sync for DirectKafkaSource
impl Unpin for DirectKafkaSource
impl UnwindSafe for DirectKafkaSource
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.