@awboost/cfn-resource-types 0.1.206 → 0.1.207
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -264,6 +264,7 @@ export type ListenerAttribute = {
|
|
|
264
264
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listener-mutualauthentication.html}
|
|
265
265
|
*/
|
|
266
266
|
export type MutualAuthentication = {
|
|
267
|
+
AdvertiseTrustStoreCaNames?: string;
|
|
267
268
|
/**
|
|
268
269
|
* Indicates whether expired client certificates are ignored.
|
|
269
270
|
*/
|
|
@@ -112,6 +112,9 @@ export type LambdaEventSourceMappingProperties = {
|
|
|
112
112
|
* @max `10000`
|
|
113
113
|
*/
|
|
114
114
|
MaximumRetryAttempts?: number;
|
|
115
|
+
/**
|
|
116
|
+
* The metrics configuration for your event source. For more information, see [Event source mapping metrics](https://docs.aws.amazon.com/lambda/latest/dg/monitoring-metrics-types.html#event-source-mapping-metrics).
|
|
117
|
+
*/
|
|
115
118
|
MetricsConfig?: MetricsConfig;
|
|
116
119
|
/**
|
|
117
120
|
* (Kinesis and DynamoDB Streams only) The number of batches to process concurrently from each shard. The default value is 1.
|
|
@@ -119,6 +122,9 @@ export type LambdaEventSourceMappingProperties = {
|
|
|
119
122
|
* @max `10`
|
|
120
123
|
*/
|
|
121
124
|
ParallelizationFactor?: number;
|
|
125
|
+
/**
|
|
126
|
+
* (Amazon MSK and self-managed Apache Kafka only) The provisioned mode configuration for the event source. For more information, see [provisioned mode](https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventsourcemapping.html#invocation-eventsourcemapping-provisioned-mode).
|
|
127
|
+
*/
|
|
122
128
|
ProvisionedPollerConfig?: ProvisionedPollerConfig;
|
|
123
129
|
/**
|
|
124
130
|
* (Amazon MQ) The name of the Amazon MQ broker destination queue to consume.
|
|
@@ -284,11 +290,12 @@ export type FilterCriteria = {
|
|
|
284
290
|
};
|
|
285
291
|
/**
|
|
286
292
|
* Type definition for `AWS::Lambda::EventSourceMapping.MetricsConfig`.
|
|
293
|
+
* The metrics configuration for your event source. Use this configuration object to define which metrics you want your event source mapping to produce.
|
|
287
294
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-metricsconfig.html}
|
|
288
295
|
*/
|
|
289
296
|
export type MetricsConfig = {
|
|
290
297
|
/**
|
|
291
|
-
*
|
|
298
|
+
* The metrics you want your event source mapping to produce. Include ``EventCount`` to receive event source mapping metrics related to the number of events processed by your event source mapping. For more information about these metrics, see [Event source mapping metrics](https://docs.aws.amazon.com/lambda/latest/dg/monitoring-metrics-types.html#event-source-mapping-metrics).
|
|
292
299
|
* @minLength `0`
|
|
293
300
|
* @maxLength `1`
|
|
294
301
|
*/
|
|
@@ -302,9 +309,8 @@ export type MetricsConfig = {
|
|
|
302
309
|
export type OnFailure = {
|
|
303
310
|
/**
|
|
304
311
|
* The Amazon Resource Name (ARN) of the destination resource.
|
|
305
|
-
To retain records of [asynchronous invocations](https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html#invocation-async-destinations), you can configure an Amazon SNS topic, Amazon SQS queue, Lambda function, or Amazon EventBridge event bus as the destination.
|
|
306
|
-
To retain records of failed invocations from [Kinesis
|
|
307
|
-
To retain records of failed invocations from [self-managed Kafka](https://docs.aws.amazon.com/lambda/latest/dg/with-kafka.html#services-smaa-onfailure-destination) or [Amazon MSK](https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html#services-msk-onfailure-destination), you can configure an Amazon SNS topic, Amazon SQS queue, or Amazon S3 bucket as the destination.
|
|
312
|
+
To retain records of unsuccessful [asynchronous invocations](https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html#invocation-async-destinations), you can configure an Amazon SNS topic, Amazon SQS queue, Amazon S3 bucket, Lambda function, or Amazon EventBridge event bus as the destination.
|
|
313
|
+
To retain records of failed invocations from [Kinesis](https://docs.aws.amazon.com/lambda/latest/dg/with-kinesis.html), [DynamoDB](https://docs.aws.amazon.com/lambda/latest/dg/with-ddb.html), [self-managed Kafka](https://docs.aws.amazon.com/lambda/latest/dg/with-kafka.html#services-smaa-onfailure-destination) or [Amazon MSK](https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html#services-msk-onfailure-destination), you can configure an Amazon SNS topic, Amazon SQS queue, or Amazon S3 bucket as the destination.
|
|
308
314
|
* @minLength `12`
|
|
309
315
|
* @maxLength `1024`
|
|
310
316
|
* @pattern `arn:(aws[a-zA-Z0-9-]*):([a-zA-Z0-9\-])+:([a-z]{2}(-gov)?(-iso([a-z])?)?-[a-z]+-\d{1})?:(\d{12})?:(.*)`
|
|
@@ -313,6 +319,7 @@ export type OnFailure = {
|
|
|
313
319
|
};
|
|
314
320
|
/**
|
|
315
321
|
* Type definition for `AWS::Lambda::EventSourceMapping.ProvisionedPollerConfig`.
|
|
322
|
+
* The [provisioned mode](https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventsourcemapping.html#invocation-eventsourcemapping-provisioned-mode) configuration for the event source. Use provisioned mode to customize the minimum and maximum number of event pollers for your event source.
|
|
316
323
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-provisionedpollerconfig.html}
|
|
317
324
|
*/
|
|
318
325
|
export type ProvisionedPollerConfig = {
|
|
@@ -49,6 +49,10 @@ export type MemoryDBClusterProperties = {
|
|
|
49
49
|
* Specifies the weekly time range during which maintenance on the cluster is performed. It is specified as a range in the format ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance window is a 60 minute period.
|
|
50
50
|
*/
|
|
51
51
|
MaintenanceWindow?: string;
|
|
52
|
+
/**
|
|
53
|
+
* The name of the Global Datastore, it is generated by MemoryDB adding a prefix to MultiRegionClusterNameSuffix.
|
|
54
|
+
*/
|
|
55
|
+
MultiRegionClusterName?: string;
|
|
52
56
|
/**
|
|
53
57
|
* The compute and memory capacity of the nodes in the cluster.
|
|
54
58
|
*/
|