#[non_exhaustive]pub struct CustomLogSourceConfigurationBuilder { /* private fields */ }Expand description
A builder for CustomLogSourceConfiguration.
Implementations§
source§impl CustomLogSourceConfigurationBuilder
impl CustomLogSourceConfigurationBuilder
sourcepub fn crawler_configuration(
self,
input: CustomLogSourceCrawlerConfiguration,
) -> Self
pub fn crawler_configuration( self, input: CustomLogSourceCrawlerConfiguration, ) -> Self
The configuration for the Glue Crawler for the third-party custom source.
This field is required.sourcepub fn set_crawler_configuration(
self,
input: Option<CustomLogSourceCrawlerConfiguration>,
) -> Self
pub fn set_crawler_configuration( self, input: Option<CustomLogSourceCrawlerConfiguration>, ) -> Self
The configuration for the Glue Crawler for the third-party custom source.
sourcepub fn get_crawler_configuration(
&self,
) -> &Option<CustomLogSourceCrawlerConfiguration>
pub fn get_crawler_configuration( &self, ) -> &Option<CustomLogSourceCrawlerConfiguration>
The configuration for the Glue Crawler for the third-party custom source.
sourcepub fn provider_identity(self, input: AwsIdentity) -> Self
pub fn provider_identity(self, input: AwsIdentity) -> Self
The identity of the log provider for the third-party custom source.
This field is required.sourcepub fn set_provider_identity(self, input: Option<AwsIdentity>) -> Self
pub fn set_provider_identity(self, input: Option<AwsIdentity>) -> Self
The identity of the log provider for the third-party custom source.
sourcepub fn get_provider_identity(&self) -> &Option<AwsIdentity>
pub fn get_provider_identity(&self) -> &Option<AwsIdentity>
The identity of the log provider for the third-party custom source.
sourcepub fn build(self) -> CustomLogSourceConfiguration
pub fn build(self) -> CustomLogSourceConfiguration
Consumes the builder and constructs a CustomLogSourceConfiguration.
Trait Implementations§
source§impl Clone for CustomLogSourceConfigurationBuilder
impl Clone for CustomLogSourceConfigurationBuilder
source§fn clone(&self) -> CustomLogSourceConfigurationBuilder
fn clone(&self) -> CustomLogSourceConfigurationBuilder
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 Default for CustomLogSourceConfigurationBuilder
impl Default for CustomLogSourceConfigurationBuilder
source§fn default() -> CustomLogSourceConfigurationBuilder
fn default() -> CustomLogSourceConfigurationBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for CustomLogSourceConfigurationBuilder
impl PartialEq for CustomLogSourceConfigurationBuilder
source§fn eq(&self, other: &CustomLogSourceConfigurationBuilder) -> bool
fn eq(&self, other: &CustomLogSourceConfigurationBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CustomLogSourceConfigurationBuilder
Auto Trait Implementations§
impl Freeze for CustomLogSourceConfigurationBuilder
impl RefUnwindSafe for CustomLogSourceConfigurationBuilder
impl Send for CustomLogSourceConfigurationBuilder
impl Sync for CustomLogSourceConfigurationBuilder
impl Unpin for CustomLogSourceConfigurationBuilder
impl UnwindSafe for CustomLogSourceConfigurationBuilder
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> 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)
🔬This is a nightly-only experimental API. (
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.