@awboost/cfn-resource-types 0.1.356 → 0.1.357
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.
|
@@ -218,7 +218,7 @@ export type AmazonManagedKafkaEventSourceConfig = {
|
|
|
218
218
|
};
|
|
219
219
|
/**
|
|
220
220
|
* Type definition for `AWS::Lambda::EventSourceMapping.DestinationConfig`.
|
|
221
|
-
* A configuration object that specifies the destination of an event after Lambda processes it.
|
|
221
|
+
* A configuration object that specifies the destination of an event after Lambda processes it. For more information, see [Adding a destination](https://docs.aws.amazon.com/lambda/latest/dg/invocation-async-retain-records.html#invocation-async-destinations).
|
|
222
222
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-destinationconfig.html}
|
|
223
223
|
*/
|
|
224
224
|
export type DestinationConfig = {
|
|
@@ -305,7 +305,7 @@ export type MetricsConfig = {
|
|
|
305
305
|
};
|
|
306
306
|
/**
|
|
307
307
|
* Type definition for `AWS::Lambda::EventSourceMapping.OnFailure`.
|
|
308
|
-
* A destination for events that failed processing.
|
|
308
|
+
* A destination for events that failed processing. For more information, see [Adding a destination](https://docs.aws.amazon.com/lambda/latest/dg/invocation-async-retain-records.html#invocation-async-destinations).
|
|
309
309
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-onfailure.html}
|
|
310
310
|
*/
|
|
311
311
|
export type OnFailure = {
|
|
@@ -356,12 +356,8 @@ export type ScalingConfig = {
|
|
|
356
356
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-schemaregistryaccessconfig.html}
|
|
357
357
|
*/
|
|
358
358
|
export type SchemaRegistryAccessConfig = {
|
|
359
|
-
/**
|
|
360
|
-
* The type of authentication Lambda uses to access your schema registry.
|
|
361
|
-
*/
|
|
362
359
|
Type?: "BASIC_AUTH" | "CLIENT_CERTIFICATE_TLS_AUTH" | "SERVER_ROOT_CA_CERTIFICATE";
|
|
363
360
|
/**
|
|
364
|
-
* The URI of the secret (Secrets Manager secret ARN) to authenticate with your schema registry.
|
|
365
361
|
* @minLength `1`
|
|
366
362
|
* @maxLength `10000`
|
|
367
363
|
* @pattern `arn:(aws[a-zA-Z0-9-]*):([a-zA-Z0-9\-])+:([a-z]{2}(-gov)?(-iso([a-z])?)?-[a-z]+-\d{1})?:(\d{12})?:(.*)`
|
|
@@ -374,23 +370,17 @@ export type SchemaRegistryAccessConfig = {
|
|
|
374
370
|
*/
|
|
375
371
|
export type SchemaRegistryConfig = {
|
|
376
372
|
/**
|
|
377
|
-
* An array of access configuration objects that tell Lambda how to authenticate with your schema registry.
|
|
378
373
|
* @maxLength `2`
|
|
379
374
|
*/
|
|
380
375
|
AccessConfigs?: SchemaRegistryAccessConfig[];
|
|
381
|
-
/**
|
|
382
|
-
* The record format that Lambda delivers to your function after schema validation.
|
|
383
|
-
*/
|
|
384
376
|
EventRecordFormat?: "JSON" | "SOURCE";
|
|
385
377
|
/**
|
|
386
|
-
* The URI for your schema registry. The correct URI format depends on the type of schema registry you're using.
|
|
387
378
|
* @minLength `1`
|
|
388
379
|
* @maxLength `10000`
|
|
389
380
|
* @pattern `[a-zA-Z0-9-/*:_+=.@-]*`
|
|
390
381
|
*/
|
|
391
382
|
SchemaRegistryURI?: string;
|
|
392
383
|
/**
|
|
393
|
-
* An array of schema validation configuration objects, which tell Lambda the message attributes you want to validate and filter using your schema registry.
|
|
394
384
|
* @minLength `1`
|
|
395
385
|
* @maxLength `2`
|
|
396
386
|
*/
|
|
@@ -401,9 +391,6 @@ export type SchemaRegistryConfig = {
|
|
|
401
391
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-schemavalidationconfig.html}
|
|
402
392
|
*/
|
|
403
393
|
export type SchemaValidationConfig = {
|
|
404
|
-
/**
|
|
405
|
-
* The attribute you want your schema registry to validate and filter for.
|
|
406
|
-
*/
|
|
407
394
|
Attribute?: "KEY" | "VALUE";
|
|
408
395
|
};
|
|
409
396
|
/**
|