Show / Hide Table of Contents

Interface SecurityGroupImportOptions

Additional options for imported security groups.

stable

Synopsis

Properties

allowAllOutbound

(experimental) Mark the SecurityGroup as having been created allowing all outbound traffic.

mutable

(experimental) If a SecurityGroup is mutable CDK can add rules to existing groups.

Properties

allowAllOutbound

(experimental) Mark the SecurityGroup as having been created allowing all outbound traffic.

Only if this is set to false will egress rules be added to this security group. Be aware, this would undo any potential "all outbound traffic" default.

true

Declaration
readonly allowAllOutbound?: boolean;
Property Value

boolean

mutable

(experimental) If a SecurityGroup is mutable CDK can add rules to existing groups.

Beware that making a SecurityGroup immutable might lead to issue due to missing ingress/egress rules for new resources.

true

Declaration
readonly mutable?: boolean;
Property Value

boolean

Back to top Generated by DocFX