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

AuthorizeDBSecurityGroupIngressMessage

import type { AuthorizeDBSecurityGroupIngressMessage } from "https://aws-api.deno.dev/v0.4/services/rds.ts?docs=full";
interface AuthorizeDBSecurityGroupIngressMessage {
CIDRIP?: string | null;
DBSecurityGroupName: string;
EC2SecurityGroupId?: string | null;
EC2SecurityGroupName?: string | null;
EC2SecurityGroupOwnerId?: string | null;
}

§Properties

§
CIDRIP?: string | null
[src]

The IP range to authorize.

§
DBSecurityGroupName: string
[src]

The name of the DB security group to add authorization to.

§
EC2SecurityGroupId?: string | null
[src]

Id of the EC2 security group to authorize. For VPC DB security groups, EC2SecurityGroupId must be provided. Otherwise, EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId must be provided.

§
EC2SecurityGroupName?: string | null
[src]

Name of the EC2 security group to authorize. For VPC DB security groups, EC2SecurityGroupId must be provided. Otherwise, EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId must be provided.

§
EC2SecurityGroupOwnerId?: string | null
[src]

Amazon Web Services account number of the owner of the EC2 security group specified in the EC2SecurityGroupName parameter. The Amazon Web Services access key ID isn't an acceptable value. For VPC DB security groups, EC2SecurityGroupId must be provided. Otherwise, EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId must be provided.