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

UpdateSecurityGroupRuleDescriptionsEgressRequest

import type { UpdateSecurityGroupRuleDescriptionsEgressRequest } from "https://aws-api.deno.dev/v0.3/services/ec2.ts?docs=full";
interface UpdateSecurityGroupRuleDescriptionsEgressRequest {
DryRun?: boolean | null;
GroupId?: string | null;
GroupName?: string | null;
IpPermissions?: IpPermission[] | null;
SecurityGroupRuleDescriptions?: SecurityGroupRuleDescription[] | null;
}

§Properties

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

§
GroupId?: string | null
[src]

The ID of the security group. You must specify either the security group ID or the security group name in the request. For security groups in a nondefault VPC, you must specify the security group ID.

§
GroupName?: string | null
[src]

[Default VPC] The name of the security group. You must specify either the security group ID or the security group name in the request.

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

The IP permissions for the security group rule. You must specify either the IP permissions or the description.

§
SecurityGroupRuleDescriptions?: SecurityGroupRuleDescription[] | null
[src]

The description for the egress security group rules. You must specify either the description or the IP permissions.