AwsSecurityGroupPlainArgs
interface AwsSecurityGroupPlainArgs extends AwsSecurityGroupCompositeBaseArgs {
allowAllEgress?: boolean;
egressRules?: Record<string, AwsSecurityGroupEgressRuleArgs>;
ingressRules: Record<string, AwsSecurityGroupPlainIngressRuleArgs>;
mode: 'plain';
name: string;
securityGroup: AwsSecurityGroupSecurityGroupArgs;
}Hierarchy
AwsSecurityGroupCompositeBaseArgsAwsSecurityGroupPlainArgs
Properties
allowAllEgress: boolean
Inherited from allowAllEgress
egressRules: Record<string, AwsSecurityGroupEgressRuleArgs>
Inherited from egressRules
ingressRules: Record<string, AwsSecurityGroupPlainIngressRuleArgs>
mode: 'plain'
name: string
securityGroup: AwsSecurityGroupSecurityGroupArgs
Inherited from securityGroup