Struct aws_sdk_glue::model::EventBatchingCondition
source ·
[−]#[non_exhaustive]pub struct EventBatchingCondition {
pub batch_size: i32,
pub batch_window: Option<i32>,
}
Expand description
Batch condition that must be met (specified number of events received or batch time window expired) before EventBridge event trigger fires.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.batch_size: i32
Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.
batch_window: Option<i32>
Window of time in seconds after which EventBridge event trigger fires. Window starts when first event is received.
Implementations
Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.
Window of time in seconds after which EventBridge event trigger fires. Window starts when first event is received.
Creates a new builder-style object to manufacture EventBatchingCondition
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more