aws-cdk-lib
Version:
Version 2 of the AWS Cloud Development Kit library
16 lines (15 loc) • 439 B
TypeScript
/**
* Properties of a discovered SecurityGroup.
*/
export interface SecurityGroupContextResponse {
/**
* The security group's id.
*/
readonly securityGroupId: string;
/**
* Whether the security group allows all outbound traffic. This will be true
* when the security group has all-protocol egress permissions to access both
* `0.0.0.0/0` and `::/0`.
*/
readonly allowAllOutbound: boolean;
}