UNPKG

@nolanrigo/cloudformation

Version:

TypeScript-based imperative way to define AWS CloudFormation templates

17 lines (16 loc) 604 B
import { ResourceBase } from "../../resource"; import { Value } from "../../data-types"; export interface SecurityGroupEgressProperties { FromPort?: Value<number>; DestinationSecurityGroupId?: Value<string>; DestinationPrefixListId?: Value<string>; GroupId: Value<string>; CidrIpv6?: Value<string>; CidrIp?: Value<string>; ToPort?: Value<number>; Description?: Value<string>; IpProtocol: Value<string>; } export default class Inner_SecurityGroupEgress extends ResourceBase<SecurityGroupEgressProperties> { constructor(properties: SecurityGroupEgressProperties); }