import { ResourceBase } from '../resource'; import { Value } from '../dataTypes'; export interface SecurityGroupIngressProperties { CidrIp?: Value; CidrIpv6?: Value; Description?: Value; FromPort?: Value; GroupId?: Value; GroupName?: Value; IpProtocol: Value; SourcePrefixListId?: Value; SourceSecurityGroupId?: Value; SourceSecurityGroupName?: Value; SourceSecurityGroupOwnerId?: Value; ToPort?: Value; } export default class SecurityGroupIngress extends ResourceBase { constructor(properties: SecurityGroupIngressProperties); }