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

UpdateSecurityGroupRuleDescriptionsIngressRequest

import type { UpdateSecurityGroupRuleDescriptionsIngressRequest } from "https://aws-api.deno.dev/v0.3/services/ec2.ts?docs=full";
interface UpdateSecurityGroupRuleDescriptionsIngressRequest {
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]

[EC2-Classic, 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 IP permissions or a description.

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

[VPC only] The description for the ingress security group rules. You must specify either a description or IP permissions.