@awboost/cfn-resource-types 0.1.395 → 0.1.396

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