Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

RuleGroupResponse

import type { RuleGroupResponse } from "https://aws-api.deno.dev/v0.4/services/networkfirewall.ts?docs=full";

The high-level properties of a rule group. This, along with the "RuleGroup", define the rule group. You can retrieve all objects for a rule group by calling "DescribeRuleGroup".

interface RuleGroupResponse {
Capacity?: number | null;
ConsumedCapacity?: number | null;
Description?: string | null;
EncryptionConfiguration?: EncryptionConfiguration | null;
LastModifiedTime?: Date | number | null;
NumberOfAssociations?: number | null;
RuleGroupArn: string;
RuleGroupId: string;
RuleGroupName: string;
RuleGroupStatus?: ResourceStatus | null;
SnsTopic?: string | null;
SourceMetadata?: SourceMetadata | null;
Tags?: Tag[] | null;
Type?: RuleGroupType | null;
}

§Properties

§
Capacity?: number | null
[src]

The maximum operating resources that this rule group can use. Rule group capacity is fixed at creation. When you update a rule group, you are limited to this capacity. When you reference a rule group from a firewall policy, Network Firewall reserves this capacity for the rule group.

You can retrieve the capacity that would be required for a rule group before you create the rule group by calling "CreateRuleGroup" with DryRun set to TRUE.

§
ConsumedCapacity?: number | null
[src]

The number of capacity units currently consumed by the rule group rules.

§
Description?: string | null
[src]

A description of the rule group.

§
EncryptionConfiguration?: EncryptionConfiguration | null
[src]

A complex type that contains the Amazon Web Services KMS encryption configuration settings for your rule group.

§
LastModifiedTime?: Date | number | null
[src]

The last time that the rule group was changed.

§
NumberOfAssociations?: number | null
[src]

The number of firewall policies that use this rule group.

§
RuleGroupArn: string
[src]

The Amazon Resource Name (ARN) of the rule group.

Note: If this response is for a create request that had DryRun set to TRUE, then this ARN is a placeholder that isn't attached to a valid resource.

§
RuleGroupId: string
[src]

The unique identifier for the rule group.

§
RuleGroupName: string
[src]

The descriptive name of the rule group. You can't change the name of a rule group after you create it.

§
RuleGroupStatus?: ResourceStatus | null
[src]

Detailed information about the current status of a rule group.

§
SnsTopic?: string | null
[src]

The Amazon resource name (ARN) of the Amazon Simple Notification Service SNS topic that's used to record changes to the managed rule group. You can subscribe to the SNS topic to receive notifications when the managed rule group is modified, such as for new versions and for version expiration. For more information, see the Amazon Simple Notification Service Developer Guide..

§
SourceMetadata?: SourceMetadata | null
[src]

A complex type that contains metadata about the rule group that your own rule group is copied from. You can use the metadata to track the version updates made to the originating rule group.

§
Tags?: Tag[] | null
[src]

The key:value pairs to associate with the resource.

§
Type?: RuleGroupType | null
[src]

Indicates whether the rule group is stateless or stateful. If the rule group is stateless, it contains stateless rules. If it is stateful, it contains stateful rules.