Show / Hide Table of Contents

Class LambdaActionProps

Properties for Lambda Alarm Action.

Inheritance
object
LambdaActionProps
Implements
ILambdaActionProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.CloudWatch.Actions
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class LambdaActionProps : ILambdaActionProps
Syntax (vb)
Public Class LambdaActionProps Implements ILambdaActionProps
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.AWS.CloudWatch.Actions;

            var lambdaActionProps = new LambdaActionProps {
                UseUniquePermissionId = false
            };

Synopsis

Constructors

LambdaActionProps()

Properties for Lambda Alarm Action.

Properties

UseUniquePermissionId

Whether to generate unique Lambda Permission id.

Constructors

LambdaActionProps()

Properties for Lambda Alarm Action.

public LambdaActionProps()
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.AWS.CloudWatch.Actions;

            var lambdaActionProps = new LambdaActionProps {
                UseUniquePermissionId = false
            };

Properties

UseUniquePermissionId

Whether to generate unique Lambda Permission id.

public bool? UseUniquePermissionId { get; set; }
Property Value

bool?

Remarks

Use this parameter to resolve id collision in case of multiple alarms triggering the same action

Default: - false

See: https://github.com/aws/aws-cdk/issues/33958

Implements

ILambdaActionProps
Back to top Generated by DocFX