Struct aws_sdk_glue::types::builders::EventBatchingConditionBuilder
source · #[non_exhaustive]pub struct EventBatchingConditionBuilder { /* private fields */ }Expand description
A builder for EventBatchingCondition.
Implementations§
source§impl EventBatchingConditionBuilder
impl EventBatchingConditionBuilder
sourcepub fn batch_size(self, input: i32) -> Self
pub fn batch_size(self, input: i32) -> Self
Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.
sourcepub fn set_batch_size(self, input: Option<i32>) -> Self
pub fn set_batch_size(self, input: Option<i32>) -> Self
Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.
sourcepub fn get_batch_size(&self) -> &Option<i32>
pub fn get_batch_size(&self) -> &Option<i32>
Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.
sourcepub fn batch_window(self, input: i32) -> Self
pub fn batch_window(self, input: i32) -> Self
Window of time in seconds after which EventBridge event trigger fires. Window starts when first event is received.
sourcepub fn set_batch_window(self, input: Option<i32>) -> Self
pub fn set_batch_window(self, input: Option<i32>) -> Self
Window of time in seconds after which EventBridge event trigger fires. Window starts when first event is received.
sourcepub fn get_batch_window(&self) -> &Option<i32>
pub fn get_batch_window(&self) -> &Option<i32>
Window of time in seconds after which EventBridge event trigger fires. Window starts when first event is received.
sourcepub fn build(self) -> EventBatchingCondition
pub fn build(self) -> EventBatchingCondition
Consumes the builder and constructs a EventBatchingCondition.
Trait Implementations§
source§impl Clone for EventBatchingConditionBuilder
impl Clone for EventBatchingConditionBuilder
source§fn clone(&self) -> EventBatchingConditionBuilder
fn clone(&self) -> EventBatchingConditionBuilder
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 EventBatchingConditionBuilder
impl Default for EventBatchingConditionBuilder
source§fn default() -> EventBatchingConditionBuilder
fn default() -> EventBatchingConditionBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<EventBatchingConditionBuilder> for EventBatchingConditionBuilder
impl PartialEq<EventBatchingConditionBuilder> for EventBatchingConditionBuilder
source§fn eq(&self, other: &EventBatchingConditionBuilder) -> bool
fn eq(&self, other: &EventBatchingConditionBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for EventBatchingConditionBuilder
Auto Trait Implementations§
impl RefUnwindSafe for EventBatchingConditionBuilder
impl Send for EventBatchingConditionBuilder
impl Sync for EventBatchingConditionBuilder
impl Unpin for EventBatchingConditionBuilder
impl UnwindSafe for EventBatchingConditionBuilder
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