Struct aws_sdk_glue::types::EventBatchingCondition
source · #[non_exhaustive]pub struct EventBatchingCondition { /* private fields */ }Expand description
Batch condition that must be met (specified number of events received or batch time window expired) before EventBridge event trigger fires.
Implementations§
source§impl EventBatchingCondition
impl EventBatchingCondition
sourcepub fn batch_size(&self) -> i32
pub fn batch_size(&self) -> i32
Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.
sourcepub fn batch_window(&self) -> Option<i32>
pub fn batch_window(&self) -> Option<i32>
Window of time in seconds after which EventBridge event trigger fires. Window starts when first event is received.
source§impl EventBatchingCondition
impl EventBatchingCondition
sourcepub fn builder() -> EventBatchingConditionBuilder
pub fn builder() -> EventBatchingConditionBuilder
Creates a new builder-style object to manufacture EventBatchingCondition.
Trait Implementations§
source§impl Clone for EventBatchingCondition
impl Clone for EventBatchingCondition
source§fn clone(&self) -> EventBatchingCondition
fn clone(&self) -> EventBatchingCondition
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 EventBatchingCondition
impl Debug for EventBatchingCondition
source§impl PartialEq<EventBatchingCondition> for EventBatchingCondition
impl PartialEq<EventBatchingCondition> for EventBatchingCondition
source§fn eq(&self, other: &EventBatchingCondition) -> bool
fn eq(&self, other: &EventBatchingCondition) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for EventBatchingCondition
Auto Trait Implementations§
impl RefUnwindSafe for EventBatchingCondition
impl Send for EventBatchingCondition
impl Sync for EventBatchingCondition
impl Unpin for EventBatchingCondition
impl UnwindSafe for EventBatchingCondition
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