@awboost/cfn-resource-types 0.1.395 → 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.
@@ -186,9 +186,18 @@ export type ProjectSourceVersion = {
186
186
  export type ProjectTriggers = {
187
187
  BuildType?: string;
188
188
  FilterGroups?: FilterGroup[];
189
+ PullRequestBuildPolicy?: PullRequestBuildPolicy;
189
190
  ScopeConfiguration?: ScopeConfiguration;
190
191
  Webhook?: boolean;
191
192
  };
193
+ /**
194
+ * Type definition for `AWS::CodeBuild::Project.PullRequestBuildPolicy`.
195
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-pullrequestbuildpolicy.html}
196
+ */
197
+ export type PullRequestBuildPolicy = {
198
+ ApproverRoles?: string[];
199
+ RequiresCommentApproval: string;
200
+ };
192
201
  /**
193
202
  * Type definition for `AWS::CodeBuild::Project.RegistryCredential`.
194
203
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-registrycredential.html}
@@ -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`
@@ -555,7 +555,7 @@ export type StringFilter = {
555
555
  + ``ResourceType NOT_EQUALS AwsIamPolicy``
556
556
  + ``ResourceType NOT_EQUALS AwsEc2NetworkInterface``
557
557
 
558
- ``CONTAINS`` and ``NOT_CONTAINS`` operators can be used only with automation rules. For more information, see [Automation rules](https://docs.aws.amazon.com/securityhub/latest/userguide/automation-rules.html) in the *User Guide*.
558
+ ``CONTAINS`` and ``NOT_CONTAINS`` operators can be used only with automation rules V1. ``CONTAINS_WORD`` operator is only supported in ``GetFindingsV2``, ``GetFindingStatisticsV2``, ``GetResourcesV2``, and ``GetResourceStatisticsV2`` APIs. For more information, see [Automation rules](https://docs.aws.amazon.com/securityhub/latest/userguide/automation-rules.html) in the *User Guide*.
559
559
  */
560
560
  Comparison: StringFilterComparison;
561
561
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.395",
3
+ "version": "0.1.397",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },