You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -552,7 +552,7 @@ export class SecurityGroup extends SecurityGroupBase {
552
552
// In the case of "allowAllOutbound", we don't add any more rules. There
553
553
// is only one rule which allows all traffic and that subsumes any other
554
554
// rule.
555
-
if(!remoteRule){// Warn only if addEgressRule() was explicitely called
555
+
if(!remoteRule){// Warn only if addEgressRule() was explicitly called
556
556
Annotations.of(this).addWarningV2('@aws-cdk/aws-ec2:ipv4IgnoreEgressRule','Ignoring Egress rule since \'allowAllOutbound\' is set to true; To add customized rules, set allowAllOutbound=false on the SecurityGroup');
557
557
}
558
558
return;
@@ -567,7 +567,7 @@ export class SecurityGroup extends SecurityGroupBase {
567
567
// In the case of "allowAllIpv6Outbound", we don't add any more rules. There
568
568
// is only one rule which allows all traffic and that subsumes any other
569
569
// rule.
570
-
if(!remoteRule){// Warn only if addEgressRule() was explicitely called
570
+
if(!remoteRule){// Warn only if addEgressRule() was explicitly called
571
571
Annotations.of(this).addWarningV2('@aws-cdk/aws-ec2:ipv6IgnoreEgressRule','Ignoring Egress rule since \'allowAllIpv6Outbound\' is set to true; To add customized rules, set allowAllIpv6Outbound=false on the SecurityGroup');
572
572
}
573
573
return;
@@ -653,7 +653,7 @@ export class SecurityGroup extends SecurityGroupBase {
Copy file name to clipboardexpand all lines: packages/aws-cdk-lib/aws-rds/README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -1215,7 +1215,7 @@ new rds.ServerlessClusterFromSnapshot(this, 'Cluster', {
1215
1215
1216
1216
You can access your Aurora DB cluster using the built-in Data API. The Data API doesn't require a persistent connection to the DB cluster. Instead, it provides a secure HTTP endpoint and integration with AWS SDKs.
1217
1217
1218
-
The following example shows granting Data API access to a Lamba function.
1218
+
The following example shows granting Data API access to a Lambda function.
0 commit comments