software.amazon.awscdk.services.iotevents.actions.alpha.ResetTimerAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iotevents-actions-alpha Show documentation
Show all versions of iotevents-actions-alpha Show documentation
Receipt Detector Model actions for AWS IoT Events
package software.amazon.awscdk.services.iotevents.actions.alpha;
/**
* (experimental) The action to reset an existing timer.
*
* Example:
*
*
* // The code below shows an example of how to instantiate this type.
* // The values are placeholders you should change.
* import software.amazon.awscdk.services.iotevents.actions.alpha.*;
* ResetTimerAction resetTimerAction = new ResetTimerAction("timerName");
*
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.91.0 (build 1b1f239)", date = "2023-11-16T22:34:13.239Z")
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@software.amazon.jsii.Jsii(module = software.amazon.awscdk.services.iotevents.actions.alpha.$Module.class, fqn = "@aws-cdk/aws-iotevents-actions-alpha.ResetTimerAction")
public class ResetTimerAction extends software.amazon.jsii.JsiiObject implements software.amazon.awscdk.services.iotevents.alpha.IAction {
protected ResetTimerAction(final software.amazon.jsii.JsiiObjectRef objRef) {
super(objRef);
}
protected ResetTimerAction(final software.amazon.jsii.JsiiObject.InitializationMode initializationMode) {
super(initializationMode);
}
/**
* @param timerName the name of the timer. This parameter is required.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public ResetTimerAction(final @org.jetbrains.annotations.NotNull java.lang.String timerName) {
super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
software.amazon.jsii.JsiiEngine.getInstance().createNewObject(this, new Object[] { java.util.Objects.requireNonNull(timerName, "timerName is required") });
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy