Interface LambdaActionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
LambdaActionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-10T13:40:00.518Z")
@Stability(Stable)
public interface LambdaActionProps
extends software.amazon.jsii.JsiiSerializable
Properties for Lambda Alarm Action.
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.cloudwatch.actions.*;
LambdaActionProps lambdaActionProps = LambdaActionProps.builder()
.useUniquePermissionId(false)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forLambdaActionPropsstatic final classAn implementation forLambdaActionProps -
Method Summary
Modifier and TypeMethodDescriptionstatic LambdaActionProps.Builderbuilder()default BooleanWhether to generate unique Lambda Permission id.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getUseUniquePermissionId
Whether to generate unique Lambda Permission id.Use this parameter to resolve id collision in case of multiple alarms triggering the same action
Default: - false
- See Also:
-
builder
- Returns:
- a
LambdaActionProps.BuilderofLambdaActionProps
-