We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 969755d commit 68cf5e3Copy full SHA for 68cf5e3
packages/aws-cdk-lib/aws-ec2/lib/prefix-list.ts
@@ -79,9 +79,16 @@ abstract class PrefixListBase extends Resource implements IPrefixList {
79
*/
80
public abstract readonly prefixListId: string;
81
82
- public readonly canInlineRule = false;
+ /**
83
+ * The network connections associated with this resource.
84
+ */
85
public readonly connections: Connections = new Connections({ peer: this });
86
87
88
+ * Whether the rule can be inlined into a SecurityGroup or not
89
90
+ public readonly canInlineRule = false;
91
+
92
/**
93
* A unique identifier for this connection peer
94
0 commit comments