#[non_exhaustive]pub struct CustomLogSourceAttributesBuilder { /* private fields */ }Expand description
A builder for CustomLogSourceAttributes.
Implementations§
source§impl CustomLogSourceAttributesBuilder
impl CustomLogSourceAttributesBuilder
sourcepub fn crawler_arn(self, input: impl Into<String>) -> Self
pub fn crawler_arn(self, input: impl Into<String>) -> Self
The ARN of the Glue crawler.
sourcepub fn set_crawler_arn(self, input: Option<String>) -> Self
pub fn set_crawler_arn(self, input: Option<String>) -> Self
The ARN of the Glue crawler.
sourcepub fn get_crawler_arn(&self) -> &Option<String>
pub fn get_crawler_arn(&self) -> &Option<String>
The ARN of the Glue crawler.
sourcepub fn database_arn(self, input: impl Into<String>) -> Self
pub fn database_arn(self, input: impl Into<String>) -> Self
The ARN of the Glue database where results are written, such as: arn:aws:daylight:us-east-1::database/sometable/*.
sourcepub fn set_database_arn(self, input: Option<String>) -> Self
pub fn set_database_arn(self, input: Option<String>) -> Self
The ARN of the Glue database where results are written, such as: arn:aws:daylight:us-east-1::database/sometable/*.
sourcepub fn get_database_arn(&self) -> &Option<String>
pub fn get_database_arn(&self) -> &Option<String>
The ARN of the Glue database where results are written, such as: arn:aws:daylight:us-east-1::database/sometable/*.
sourcepub fn set_table_arn(self, input: Option<String>) -> Self
pub fn set_table_arn(self, input: Option<String>) -> Self
The ARN of the Glue table.
sourcepub fn get_table_arn(&self) -> &Option<String>
pub fn get_table_arn(&self) -> &Option<String>
The ARN of the Glue table.
sourcepub fn build(self) -> CustomLogSourceAttributes
pub fn build(self) -> CustomLogSourceAttributes
Consumes the builder and constructs a CustomLogSourceAttributes.
Trait Implementations§
source§impl Clone for CustomLogSourceAttributesBuilder
impl Clone for CustomLogSourceAttributesBuilder
source§fn clone(&self) -> CustomLogSourceAttributesBuilder
fn clone(&self) -> CustomLogSourceAttributesBuilder
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 CustomLogSourceAttributesBuilder
impl Default for CustomLogSourceAttributesBuilder
source§fn default() -> CustomLogSourceAttributesBuilder
fn default() -> CustomLogSourceAttributesBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<CustomLogSourceAttributesBuilder> for CustomLogSourceAttributesBuilder
impl PartialEq<CustomLogSourceAttributesBuilder> for CustomLogSourceAttributesBuilder
source§fn eq(&self, other: &CustomLogSourceAttributesBuilder) -> bool
fn eq(&self, other: &CustomLogSourceAttributesBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CustomLogSourceAttributesBuilder
Auto Trait Implementations§
impl RefUnwindSafe for CustomLogSourceAttributesBuilder
impl Send for CustomLogSourceAttributesBuilder
impl Sync for CustomLogSourceAttributesBuilder
impl Unpin for CustomLogSourceAttributesBuilder
impl UnwindSafe for CustomLogSourceAttributesBuilder
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