@awboost/cfn-resource-types 0.1.165 → 0.1.166
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.
|
@@ -156,6 +156,10 @@ export type LambdaEventSourceMappingProperties = {
|
|
|
156
156
|
* With ``StartingPosition`` set to ``AT_TIMESTAMP``, the time from which to start reading, in Unix time seconds. ``StartingPositionTimestamp`` cannot be in the future.
|
|
157
157
|
*/
|
|
158
158
|
StartingPositionTimestamp?: number;
|
|
159
|
+
/**
|
|
160
|
+
* A list of tags to add to the event source mapping.
|
|
161
|
+
You must have the ``lambda:TagResource``, ``lambda:UntagResource``, and ``lambda:ListTags`` permissions for your [principal](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_terms-and-concepts.html) to manage the CFN stack. If you don't have these permissions, there might be unexpected behavior with stack-level tags propagating to the resource during resource creation and update.
|
|
162
|
+
*/
|
|
159
163
|
Tags?: Tag[];
|
|
160
164
|
/**
|
|
161
165
|
* The name of the Kafka topic.
|
|
@@ -360,17 +364,18 @@ export type SourceAccessConfiguration = {
|
|
|
360
364
|
};
|
|
361
365
|
/**
|
|
362
366
|
* Type definition for `AWS::Lambda::EventSourceMapping.Tag`.
|
|
367
|
+
* A [tag](https://docs.aws.amazon.com/lambda/latest/dg/tagging.html) to apply to the event source mapping.
|
|
363
368
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-eventsourcemapping-tag.html}
|
|
364
369
|
*/
|
|
365
370
|
export type Tag = {
|
|
366
371
|
/**
|
|
367
|
-
* The key
|
|
372
|
+
* The key for this tag.
|
|
368
373
|
* @minLength `1`
|
|
369
374
|
* @maxLength `128`
|
|
370
375
|
*/
|
|
371
376
|
Key: string;
|
|
372
377
|
/**
|
|
373
|
-
* The value for
|
|
378
|
+
* The value for this tag.
|
|
374
379
|
* @minLength `0`
|
|
375
380
|
* @maxLength `256`
|
|
376
381
|
*/
|