You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: packages/@aws-cdk/aws-ecr/README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -57,7 +57,7 @@ const user = new iam.User(this, 'User', { ... });
57
57
ecr.AuthorizationToken.grantRead(user);
58
58
```
59
59
60
-
If you access images in the [Public ECR Gallery](https://gallery.ecr.aws/) as well, it is recommended you authenticate to the regsitry to benefit from
60
+
If you access images in the [Public ECR Gallery](https://gallery.ecr.aws/) as well, it is recommended you authenticate to the registry to benefit from
61
61
higher rate and bandwidth limits.
62
62
63
63
> See `Pricing` in https://aws.amazon.com/blogs/aws/amazon-ecr-public-a-new-public-container-registry/ and [Service quotas](https://docs.aws.amazon.com/AmazonECR/latest/public/public-service-quotas.html).
* Check out the [considerations for using a dead-letter queue](https://docs.aws.amazon.com/eventbridge/latest/userguide/rule-dlq.html#dlq-considerations).
32
+
*
33
+
* The events not successfully delivered are automatically retried for a specified period of time,
34
+
* depending on the retry policy of the target.
35
+
* If an event is not delivered before all retry attempts are exhausted, it will be sent to the dead letter queue.
36
+
*
37
+
* @default - no dead-letter queue
38
+
*/
39
+
readonlydeadLetterQueue?: sqs.IQueue;
27
40
}
28
41
29
42
/**
@@ -39,9 +52,15 @@ export class CodeBuildProject implements events.IRuleTarget {
39
52
* Allows using build projects as event rule targets.
0 commit comments