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

RevokeSecurityGroupEgressRequest

import type { RevokeSecurityGroupEgressRequest } from "https://aws-api.deno.dev/v0.3/services/ec2.ts?docs=full";
interface RevokeSecurityGroupEgressRequest {
CidrIp?: string | null;
DryRun?: boolean | null;
FromPort?: number | null;
GroupId: string;
IpPermissions?: IpPermission[] | null;
IpProtocol?: string | null;
SecurityGroupRuleIds?: string[] | null;
SourceSecurityGroupName?: string | null;
SourceSecurityGroupOwnerId?: string | null;
ToPort?: number | null;
}

§Properties

§
CidrIp?: string | null
[src]

Not supported. Use a set of IP permissions to specify the CIDR.

§
DryRun?: boolean | null
[src]

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

§
FromPort?: number | null
[src]

Not supported. Use a set of IP permissions to specify the port.

§
GroupId: string
[src]

The ID of the security group.

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

The sets of IP permissions. You can't specify a destination security group and a CIDR IP address range in the same set of permissions.

§
IpProtocol?: string | null
[src]

Not supported. Use a set of IP permissions to specify the protocol name or number.

§
SecurityGroupRuleIds?: string[] | null
[src]

The IDs of the security group rules.

§
SourceSecurityGroupName?: string | null
[src]

Not supported. Use a set of IP permissions to specify a destination security group.

§
SourceSecurityGroupOwnerId?: string | null
[src]

Not supported. Use a set of IP permissions to specify a destination security group.

§
ToPort?: number | null
[src]

Not supported. Use a set of IP permissions to specify the port.