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

SecurityGroup

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

Describes a security group.

interface SecurityGroup {
Description?: string | null;
GroupId?: string | null;
GroupName?: string | null;
IpPermissions: IpPermission[];
IpPermissionsEgress: IpPermission[];
OwnerId?: string | null;
Tags: Tag[];
VpcId?: string | null;
}

§Properties

§
Description?: string | null
[src]

A 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.

§
IpPermissions: IpPermission[]
[src]

The inbound rules associated with the security group.

§
IpPermissionsEgress: IpPermission[]
[src]

[VPC only] The outbound rules associated with the security group.

§
OwnerId?: string | null
[src]

The Amazon Web Services account ID of the owner of the security group.

§
Tags: Tag[]
[src]

Any tags assigned to the security group.

§
VpcId?: string | null
[src]

[VPC only] The ID of the VPC for the security group.