Skip to main content

rule_group_summaries

Creates, updates, deletes, gets or lists a rule_group_summaries resource.

Overview

Namerule_group_summaries
TypeResource
Idaws.network_firewall.rule_group_summaries

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
descriptionstringA description of the rule group. (pattern: <code>^.*$</code>)
rule_group_namestringThe descriptive name of the rule group. You can't change the name of a rule group after you create it. (pattern: <code>^[a-zA-Z0-9-]+$</code>)
summaryobjectA complex type that contains rule information based on the rule group's configured summary settings. The content varies depending on the fields that you specified to extract in your SummaryConfiguration. When you haven't configured any summary settings, this returns an empty array. The response might include: Rule identifiers Rule descriptions Any metadata fields that you specified in your SummaryConfiguration

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_rule_group_summaryselectregionReturns detailed information for a stateful rule group. For active threat defense Amazon Web Services managed rule groups, this operation provides insight into the protections enabled by the rule group, based on Suricata rule metadata fields. Summaries are available for rule groups you manage and for active threat defense Amazon Web Services managed rule groups. To modify how threat information appears in summaries, use the SummaryConfiguration parameter in UpdateRuleGroup.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Returns detailed information for a stateful rule group. For active threat defense Amazon Web Services managed rule groups, this operation provides insight into the protections enabled by the rule group, based on Suricata rule metadata fields. Summaries are available for rule groups you manage and for active threat defense Amazon Web Services managed rule groups. To modify how threat information appears in summaries, use the SummaryConfiguration parameter in UpdateRuleGroup.

SELECT
description,
rule_group_name,
summary
FROM aws.network_firewall.rule_group_summaries
WHERE region = '{{ region }}' -- required
;