Skip to content

Commit 68cf5e3

Browse files
committed
add jsdoc
1 parent 969755d commit 68cf5e3

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

packages/aws-cdk-lib/aws-ec2/lib/prefix-list.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,16 @@ abstract class PrefixListBase extends Resource implements IPrefixList {
7979
*/
8080
public abstract readonly prefixListId: string;
8181

82-
public readonly canInlineRule = false;
82+
/**
83+
* The network connections associated with this resource.
84+
*/
8385
public readonly connections: Connections = new Connections({ peer: this });
8486

87+
/**
88+
* Whether the rule can be inlined into a SecurityGroup or not
89+
*/
90+
public readonly canInlineRule = false;
91+
8592
/**
8693
* A unique identifier for this connection peer
8794
*/

0 commit comments

Comments
 (0)