@awboost/cfn-resource-types 0.1.164 → 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.
@@ -12,6 +12,7 @@ export type DMSReplicationInstanceProperties = {
12
12
  EngineVersion?: string;
13
13
  KmsKeyId?: string;
14
14
  MultiAZ?: boolean;
15
+ NetworkType?: string;
15
16
  PreferredMaintenanceWindow?: string;
16
17
  PubliclyAccessible?: boolean;
17
18
  ReplicationInstanceClass: string;
@@ -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 name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
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 the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
378
+ * The value for this tag.
374
379
  * @minLength `0`
375
380
  * @maxLength `256`
376
381
  */
@@ -67,11 +67,6 @@ export type SageMakerImageVersionProperties = {
67
67
  * The availability of the image version specified by the maintainer.
68
68
  */
69
69
  VendorGuidance?: VendorGuidance;
70
- /**
71
- * The version number of the image version.
72
- * @min `1`
73
- */
74
- Version?: number;
75
70
  };
76
71
  /**
77
72
  * Attribute type definition for `AWS::SageMaker::ImageVersion`.
@@ -99,6 +94,11 @@ export type SageMakerImageVersionAttributes = {
99
94
  * @pattern `^arn:aws(-[\w]+)*:sagemaker:[a-z0-9\-]*:[0-9]{12}:image-version\/[a-zA-Z0-9]([-.]?[a-zA-Z0-9])*\/[0-9]+$`
100
95
  */
101
96
  ImageVersionArn: string;
97
+ /**
98
+ * The version number of the image version.
99
+ * @min `1`
100
+ */
101
+ Version: number;
102
102
  };
103
103
  /**
104
104
  * Type definition for `AWS::SageMaker::ImageVersion.JobType`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.164",
3
+ "version": "0.1.166",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },