Interface EventBatchingCondition.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EventBatchingCondition.Builder,EventBatchingCondition>,SdkBuilder<EventBatchingCondition.Builder,EventBatchingCondition>,SdkPojo
- Enclosing class:
- EventBatchingCondition
public static interface EventBatchingCondition.Builder extends SdkPojo, CopyableBuilder<EventBatchingCondition.Builder,EventBatchingCondition>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EventBatchingCondition.BuilderbatchSize(Integer batchSize)Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.EventBatchingCondition.BuilderbatchWindow(Integer batchWindow)Window of time in seconds after which EventBridge event trigger fires.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
batchSize
EventBatchingCondition.Builder batchSize(Integer batchSize)
Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.
- Parameters:
batchSize- Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
batchWindow
EventBatchingCondition.Builder batchWindow(Integer batchWindow)
Window of time in seconds after which EventBridge event trigger fires. Window starts when first event is received.
- Parameters:
batchWindow- Window of time in seconds after which EventBridge event trigger fires. Window starts when first event is received.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-