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

StaleSecurityGroup

import type { StaleSecurityGroup } from "https://aws-api.deno.dev/v0.3/services/ec2.ts?docs=full";

Describes a stale security group (a security group that contains stale rules).

interface StaleSecurityGroup {
Description?: string | null;
GroupId?: string | null;
GroupName?: string | null;
StaleIpPermissions: StaleIpPermission[];
StaleIpPermissionsEgress: StaleIpPermission[];
VpcId?: string | null;
}

§Properties

§
Description?: string | null
[src]

The description of the security group.

§
GroupId?: string | null
[src]

The ID of the security group.

§
GroupName?: string | null
[src]

The name of the security group.

§
StaleIpPermissions: StaleIpPermission[]
[src]

Information about the stale inbound rules in the security group.

§
StaleIpPermissionsEgress: StaleIpPermission[]
[src]

Information about the stale outbound rules in the security group.

§
VpcId?: string | null
[src]

The ID of the VPC for the security group.