com.pulumi.aws.glue.inputs.TriggerEventBatchingConditionArgs Maven / Gradle / Ivy
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.aws.glue.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Integer;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class TriggerEventBatchingConditionArgs extends com.pulumi.resources.ResourceArgs {
public static final TriggerEventBatchingConditionArgs Empty = new TriggerEventBatchingConditionArgs();
/**
* Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.
*
*/
@Import(name="batchSize", required=true)
private Output batchSize;
/**
* @return Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.
*
*/
public Output batchSize() {
return this.batchSize;
}
/**
* Window of time in seconds after which EventBridge event trigger fires. Window starts when first event is received. Default value is `900`.
*
*/
@Import(name="batchWindow")
private @Nullable Output batchWindow;
/**
* @return Window of time in seconds after which EventBridge event trigger fires. Window starts when first event is received. Default value is `900`.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy