Skip to content

Commit

Permalink
GITBOOK-703: No subject
Browse files Browse the repository at this point in the history
  • Loading branch information
carlospolop authored and gitbook-bot committed Nov 14, 2024
1 parent fdead96 commit f9dfbb1
Showing 1 changed file with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,30 @@ Two Mechanisms for Handling Failed Events:
1. **Retry Policy** – Defines the number of retry attempts for a failed event and how long to keep it unprocessed before considering it a failure.
2. **Dead-Letter Queue (DLQ)** – A standard Amazon SQS queue where failed events are delivered after retries are exhausted. DLQs help in troubleshooting issues with your schedule or its downstream target.

### Targets

There are 2 types of targets for a scheduler [**templated (docs)**](https://docs.aws.amazon.com/scheduler/latest/UserGuide/managing-targets-templated.html), which are commonly used and AWS made them easier to configure, and [**universal (docs)**](https://docs.aws.amazon.com/scheduler/latest/UserGuide/managing-targets-universal.html), which can be used to call any AWS API.

**Templated targets** support the following services:

* CodeBuild – StartBuild
* CodePipeline – StartPipelineExecution
* Amazon ECS – RunTask
* Parameters: EcsParameters
* EventBridge – PutEvents
* Parameters: EventBridgeParameters
* Amazon Inspector – StartAssessmentRun
* Kinesis – PutRecord
* Parameters: KinesisParameters
* Firehose – PutRecord
* Lambda – Invoke
* SageMaker – StartPipelineExecution
* Parameters: SageMakerPipelineParameters
* Amazon SNS – Publish
* Amazon SQS – SendMessage
* Parameters: SqsParameters
* Step Functions – StartExecution

### Enumeration

```bash
Expand Down

0 comments on commit f9dfbb1

Please sign in to comment.