/* eslint-disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * Resource Type definition for AWS::EC2::SecurityGroup */ export interface AwsEc2Securitygroup { GroupDescription: string; GroupName?: string; VpcId?: string; Id?: string; SecurityGroupIngress?: Ingress[]; SecurityGroupEgress?: Egress[]; Tags?: Tag[]; GroupId?: string; } export interface Ingress { CidrIp?: string; CidrIpv6?: string; Description?: string; FromPort?: number; SourceSecurityGroupName?: string; ToPort?: number; SourceSecurityGroupOwnerId?: string; IpProtocol: string; SourceSecurityGroupId?: string; SourcePrefixListId?: string; } export interface Egress { CidrIp?: string; CidrIpv6?: string; Description?: string; FromPort?: number; ToPort?: number; IpProtocol: string; DestinationSecurityGroupId?: string; DestinationPrefixListId?: string; } export interface Tag { Value: string; Key: string; }