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

AwsEc2SecurityGroupDetails

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

Details about an Amazon EC2 security group.

interface AwsEc2SecurityGroupDetails {
GroupId?: string | null;
GroupName?: string | null;
IpPermissions?: AwsEc2SecurityGroupIpPermission[] | null;
IpPermissionsEgress?: AwsEc2SecurityGroupIpPermission[] | null;
OwnerId?: string | null;
VpcId?: string | null;
}

§Properties

§
GroupId?: string | null
[src]

The ID of the security group.

§
GroupName?: string | null
[src]

The name of the security group.

§
IpPermissions?: AwsEc2SecurityGroupIpPermission[] | null
[src]

The inbound rules associated with the security group.

§
IpPermissionsEgress?: AwsEc2SecurityGroupIpPermission[] | null
[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.

§
VpcId?: string | null
[src]

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