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

DBSecurityGroup

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

Contains the details for an Amazon RDS DB security group.

This data type is used as a response element in the DescribeDBSecurityGroups action.

interface DBSecurityGroup {
DBSecurityGroupArn?: string | null;
DBSecurityGroupDescription?: string | null;
DBSecurityGroupName?: string | null;
EC2SecurityGroups: EC2SecurityGroup[];
IPRanges: IPRange[];
OwnerId?: string | null;
VpcId?: string | null;
}

§Properties

§
DBSecurityGroupArn?: string | null
[src]

The Amazon Resource Name (ARN) for the DB security group.

§
DBSecurityGroupDescription?: string | null
[src]

Provides the description of the DB security group.

§
DBSecurityGroupName?: string | null
[src]

Specifies the name of the DB security group.

§
EC2SecurityGroups: EC2SecurityGroup[]
[src]

Contains a list of EC2SecurityGroup elements.

§
IPRanges: IPRange[]
[src]

Contains a list of IPRange elements.

§
OwnerId?: string | null
[src]

Provides the Amazon Web Services ID of the owner of a specific DB security group.

§
VpcId?: string | null
[src]

Provides the VpcId of the DB security group.