@awboost/cfn-resource-types 0.1.396 → 0.1.397

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.
@@ -17,6 +17,10 @@ export type SageMakerClusterProperties = {
17
17
  * @minLength `1`
18
18
  */
19
19
  InstanceGroups?: ClusterInstanceGroup[];
20
+ /**
21
+ * Determines the scaling strategy for the SageMaker HyperPod cluster. When set to 'Continuous', enables continuous scaling which dynamically manages node provisioning. If the parameter is omitted, uses the standard scaling approach in previous release.
22
+ */
23
+ NodeProvisioningMode?: "Continuous";
20
24
  /**
21
25
  * If node auto-recovery is set to true, faulty nodes will be replaced or rebooted when a failure is detected. If set to false, nodes will be labelled when a fault is detected.
22
26
  */
@@ -112,6 +116,13 @@ export type ClusterInstanceGroup = {
112
116
  * @pattern `^arn:aws[a-z\-]*:iam::\d{12}:role/?[a-zA-Z_0-9+=,.@\-_/]+$`
113
117
  */
114
118
  ExecutionRole: string;
119
+ /**
120
+ * AMI Id to be used for launching EC2 instances - HyperPodPublicAmiId or CustomAmiId
121
+ * @minLength `12`
122
+ * @maxLength `21`
123
+ * @pattern `^ami-[0-9a-fA-F]{8,17}|default$`
124
+ */
125
+ ImageId?: string;
115
126
  /**
116
127
  * The number of instances you specified to add to the instance group of a SageMaker HyperPod cluster.
117
128
  * @min `0`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.396",
3
+ "version": "0.1.397",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },