@aws-sdk/client-network-firewall 3.896.0 → 3.897.0

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.
package/dist-cjs/index.js CHANGED
@@ -539,8 +539,10 @@ var ResourceStatus = {
539
539
  ERROR: "ERROR"
540
540
  };
541
541
  var GeneratedRulesType = {
542
+ ALERTLIST: "ALERTLIST",
542
543
  ALLOWLIST: "ALLOWLIST",
543
- DENYLIST: "DENYLIST"
544
+ DENYLIST: "DENYLIST",
545
+ REJECTLIST: "REJECTLIST"
544
546
  };
545
547
  var TargetType = {
546
548
  HTTP_HOST: "HTTP_HOST",
@@ -185,8 +185,10 @@ export const ResourceStatus = {
185
185
  ERROR: "ERROR",
186
186
  };
187
187
  export const GeneratedRulesType = {
188
+ ALERTLIST: "ALERTLIST",
188
189
  ALLOWLIST: "ALLOWLIST",
189
190
  DENYLIST: "DENYLIST",
191
+ REJECTLIST: "REJECTLIST",
190
192
  };
191
193
  export const TargetType = {
192
194
  HTTP_HOST: "HTTP_HOST",
@@ -74,7 +74,7 @@ declare const CreateRuleGroupCommand_base: {
74
74
  * TargetTypes: [ // TargetTypes // required
75
75
  * "TLS_SNI" || "HTTP_HOST",
76
76
  * ],
77
- * GeneratedRulesType: "ALLOWLIST" || "DENYLIST", // required
77
+ * GeneratedRulesType: "ALLOWLIST" || "DENYLIST" || "REJECTLIST" || "ALERTLIST", // required
78
78
  * },
79
79
  * StatefulRules: [ // StatefulRules
80
80
  * { // StatefulRule
@@ -79,7 +79,7 @@ declare const DescribeRuleGroupCommand_base: {
79
79
  * // TargetTypes: [ // TargetTypes // required
80
80
  * // "TLS_SNI" || "HTTP_HOST",
81
81
  * // ],
82
- * // GeneratedRulesType: "ALLOWLIST" || "DENYLIST", // required
82
+ * // GeneratedRulesType: "ALLOWLIST" || "DENYLIST" || "REJECTLIST" || "ALERTLIST", // required
83
83
  * // },
84
84
  * // StatefulRules: [ // StatefulRules
85
85
  * // { // StatefulRule
@@ -78,7 +78,7 @@ declare const UpdateRuleGroupCommand_base: {
78
78
  * TargetTypes: [ // TargetTypes // required
79
79
  * "TLS_SNI" || "HTTP_HOST",
80
80
  * ],
81
- * GeneratedRulesType: "ALLOWLIST" || "DENYLIST", // required
81
+ * GeneratedRulesType: "ALLOWLIST" || "DENYLIST" || "REJECTLIST" || "ALERTLIST", // required
82
82
  * },
83
83
  * StatefulRules: [ // StatefulRules
84
84
  * { // StatefulRule
@@ -1871,8 +1871,10 @@ export interface ReferenceSets {
1871
1871
  * @enum
1872
1872
  */
1873
1873
  export declare const GeneratedRulesType: {
1874
+ readonly ALERTLIST: "ALERTLIST";
1874
1875
  readonly ALLOWLIST: "ALLOWLIST";
1875
1876
  readonly DENYLIST: "DENYLIST";
1877
+ readonly REJECTLIST: "REJECTLIST";
1876
1878
  };
1877
1879
  /**
1878
1880
  * @public
@@ -1917,7 +1919,11 @@ export interface RulesSourceList {
1917
1919
  */
1918
1920
  TargetTypes: TargetType[] | undefined;
1919
1921
  /**
1920
- * <p>Whether you want to allow or deny access to the domains in your target list.</p>
1922
+ * <p>Whether you want to apply allow, reject, alert, or drop behavior to the domains in your target list.</p>
1923
+ * <note>
1924
+ * <p>When logging is enabled and you choose Alert, traffic that matches the domain specifications
1925
+ * generates an alert in the firewall's logs. Then, traffic either passes, is rejected, or drops based on other rules in the firewall policy.</p>
1926
+ * </note>
1921
1927
  * @public
1922
1928
  */
1923
1929
  GeneratedRulesType: GeneratedRulesType | undefined;
@@ -428,8 +428,10 @@ export interface ReferenceSets {
428
428
  IPSetReferences?: Record<string, IPSetReference> | undefined;
429
429
  }
430
430
  export declare const GeneratedRulesType: {
431
+ readonly ALERTLIST: "ALERTLIST";
431
432
  readonly ALLOWLIST: "ALLOWLIST";
432
433
  readonly DENYLIST: "DENYLIST";
434
+ readonly REJECTLIST: "REJECTLIST";
433
435
  };
434
436
  export type GeneratedRulesType =
435
437
  (typeof GeneratedRulesType)[keyof typeof GeneratedRulesType];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-network-firewall",
3
3
  "description": "AWS SDK for JavaScript Network Firewall Client for Node.js, Browser and React Native",
4
- "version": "3.896.0",
4
+ "version": "3.897.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-network-firewall",