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

CreateSecurityGroupRequest

import type { CreateSecurityGroupRequest } from "https://aws-api.deno.dev/v0.3/services/ec2.ts?docs=full";
interface CreateSecurityGroupRequest {
Description: string;
DryRun?: boolean | null;
GroupName: string;
TagSpecifications?: TagSpecification[] | null;
VpcId?: string | null;
}

§Properties

§
Description: string
[src]

A description for the security group. This is informational only.

Constraints: Up to 255 characters in length

Constraints for EC2-Classic: ASCII characters

Constraints for EC2-VPC: a-z, A-Z, 0-9, spaces, and ._-:/()#,@[]+=&;{}!$*

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

§
GroupName: string
[src]

The name of the security group.

Constraints: Up to 255 characters in length. Cannot start with sg-.

Constraints for EC2-Classic: ASCII characters

Constraints for EC2-VPC: a-z, A-Z, 0-9, spaces, and ._-:/()#,@[]+=&;{}!$*

§
TagSpecifications?: TagSpecification[] | null
[src]

The tags to assign to the security group.

§
VpcId?: string | null
[src]

[EC2-VPC] The ID of the VPC. Required for EC2-VPC.