software.amazon.awscdk.services.iotevents.actions.alpha.ClearTimerAction Maven / Gradle / Ivy
package software.amazon.awscdk.services.iotevents.actions.alpha;
/**
* (experimental) The action to delete 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.*;
* ClearTimerAction clearTimerAction = new ClearTimerAction("timerName");
*
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.68.0 (build b45f2f6)", date = "2022-09-28T18:17:55.557Z")
@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.ClearTimerAction")
public class ClearTimerAction extends software.amazon.jsii.JsiiObject implements software.amazon.awscdk.services.iotevents.alpha.IAction {
protected ClearTimerAction(final software.amazon.jsii.JsiiObjectRef objRef) {
super(objRef);
}
protected ClearTimerAction(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 ClearTimerAction(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