Struct aws_sdk_glue::types::builders::DirectKafkaSourceBuilder
source · #[non_exhaustive]pub struct DirectKafkaSourceBuilder { /* private fields */ }Expand description
A builder for DirectKafkaSource.
Implementations§
source§impl DirectKafkaSourceBuilder
impl DirectKafkaSourceBuilder
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name of the data store.
This field is required.sourcepub fn streaming_options(self, input: KafkaStreamingSourceOptions) -> Self
pub fn streaming_options(self, input: KafkaStreamingSourceOptions) -> Self
Specifies the streaming options.
sourcepub fn set_streaming_options(
self,
input: Option<KafkaStreamingSourceOptions>,
) -> Self
pub fn set_streaming_options( self, input: Option<KafkaStreamingSourceOptions>, ) -> Self
Specifies the streaming options.
sourcepub fn get_streaming_options(&self) -> &Option<KafkaStreamingSourceOptions>
pub fn get_streaming_options(&self) -> &Option<KafkaStreamingSourceOptions>
Specifies the streaming options.
sourcepub fn window_size(self, input: i32) -> Self
pub fn window_size(self, input: i32) -> Self
The amount of time to spend processing each micro batch.
sourcepub fn set_window_size(self, input: Option<i32>) -> Self
pub fn set_window_size(self, input: Option<i32>) -> Self
The amount of time to spend processing each micro batch.
sourcepub fn get_window_size(&self) -> &Option<i32>
pub fn get_window_size(&self) -> &Option<i32>
The amount of time to spend processing each micro batch.
sourcepub fn detect_schema(self, input: bool) -> Self
pub fn detect_schema(self, input: bool) -> Self
Whether to automatically determine the schema from the incoming data.
sourcepub fn set_detect_schema(self, input: Option<bool>) -> Self
pub fn set_detect_schema(self, input: Option<bool>) -> Self
Whether to automatically determine the schema from the incoming data.
sourcepub fn get_detect_schema(&self) -> &Option<bool>
pub fn get_detect_schema(&self) -> &Option<bool>
Whether to automatically determine the schema from the incoming data.
sourcepub fn data_preview_options(self, input: StreamingDataPreviewOptions) -> Self
pub fn data_preview_options(self, input: StreamingDataPreviewOptions) -> Self
Specifies options related to data preview for viewing a sample of your data.
sourcepub fn set_data_preview_options(
self,
input: Option<StreamingDataPreviewOptions>,
) -> Self
pub fn set_data_preview_options( self, input: Option<StreamingDataPreviewOptions>, ) -> Self
Specifies options related to data preview for viewing a sample of your data.
sourcepub fn get_data_preview_options(&self) -> &Option<StreamingDataPreviewOptions>
pub fn get_data_preview_options(&self) -> &Option<StreamingDataPreviewOptions>
Specifies options related to data preview for viewing a sample of your data.
sourcepub fn build(self) -> Result<DirectKafkaSource, BuildError>
pub fn build(self) -> Result<DirectKafkaSource, BuildError>
Consumes the builder and constructs a DirectKafkaSource.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for DirectKafkaSourceBuilder
impl Clone for DirectKafkaSourceBuilder
source§fn clone(&self) -> DirectKafkaSourceBuilder
fn clone(&self) -> DirectKafkaSourceBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DirectKafkaSourceBuilder
impl Debug for DirectKafkaSourceBuilder
source§impl Default for DirectKafkaSourceBuilder
impl Default for DirectKafkaSourceBuilder
source§fn default() -> DirectKafkaSourceBuilder
fn default() -> DirectKafkaSourceBuilder
source§impl PartialEq for DirectKafkaSourceBuilder
impl PartialEq for DirectKafkaSourceBuilder
impl StructuralPartialEq for DirectKafkaSourceBuilder
Auto Trait Implementations§
impl Freeze for DirectKafkaSourceBuilder
impl RefUnwindSafe for DirectKafkaSourceBuilder
impl Send for DirectKafkaSourceBuilder
impl Sync for DirectKafkaSourceBuilder
impl Unpin for DirectKafkaSourceBuilder
impl UnwindSafe for DirectKafkaSourceBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more