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

RevokeDBSecurityGroupIngressMessage

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

§Properties

§
CIDRIP?: string | null
[src]

The IP range to revoke access from. Must be a valid CIDR range. If CIDRIP is specified, EC2SecurityGroupName, EC2SecurityGroupId and EC2SecurityGroupOwnerId can't be provided.

§
DBSecurityGroupName: string
[src]

The name of the DB security group to revoke ingress from.

§
EC2SecurityGroupId?: string | null
[src]

The id of the EC2 security group to revoke access from. For VPC DB security groups, EC2SecurityGroupId must be provided. Otherwise, EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId must be provided.

§
EC2SecurityGroupName?: string | null
[src]

The name of the EC2 security group to revoke access from. For VPC DB security groups, EC2SecurityGroupId must be provided. Otherwise, EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId must be provided.

§
EC2SecurityGroupOwnerId?: string | null
[src]

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