@awboost/cfn-resource-types 0.1.164 → 0.1.165

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;
@@ -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.165",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },