GradientEdge CDK Utils
    Preparing search index...
    interface LogGroupNoPolicyProps {
        deadLetterQueue?: IQueue;
        event?: RuleTargetInput;
        maxEventAge?: Duration;
        retryAttempts?: number;
    }

    Hierarchy

    • TargetBaseProps
      • LogGroupNoPolicyProps
    Index

    Properties

    deadLetterQueue?: IQueue

    The SQS queue to be used as deadLetterQueue. Check out the considerations for using a dead-letter queue.

    The events not successfully delivered are automatically retried for a specified period of time, depending on the retry policy of the target. If an event is not delivered before all retry attempts are exhausted, it will be sent to the dead letter queue.

    - no dead-letter queue
    
    event?: RuleTargetInput

    The event to send to the CloudWatch LogGroup

    This will be the event logged into the CloudWatch LogGroup

    - the entire EventBridge event
    
    maxEventAge?: Duration

    The maximum age of a request that Lambda sends to a function for processing.

    Minimum value of 60. Maximum value of 86400.

    Duration.hours(24)
    
    retryAttempts?: number

    The maximum number of times to retry when the function returns an error.

    Minimum value of 0. Maximum value of 185.

    185