Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions packages/aws-cdk-lib/aws-elasticloadbalancingv2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ const lb = new elbv2.ApplicationLoadBalancer(this, 'LB', {
// The idle timeout value, in seconds
idleTimeout: Duration.seconds(1000),

// Whether HTTP headers with header fields thatare not valid
// Whether HTTP headers with header fields that are not valid
// are removed by the load balancer (true), or routed to targets
dropInvalidHeaderFields: true,

Expand Down Expand Up @@ -578,7 +578,7 @@ You can set cross-zone load balancing setting at the target group level by setti

If not specified, it will use the load balancer's configuration.

For more infomation, see [How Elastic Load Balancing works](https://docs.aws.amazon.com/elasticloadbalancing/latest/userguide/how-elastic-load-balancing-works.html).
For more information, see [How Elastic Load Balancing works](https://docs.aws.amazon.com/elasticloadbalancing/latest/userguide/how-elastic-load-balancing-works.html).

```ts
declare const vpc: ec2.Vpc;
Expand Down Expand Up @@ -809,7 +809,7 @@ Node.of(resource).addDependency(targetGroup.loadBalancerAttached);
You may look up load balancers and load balancer listeners by using one of the
following lookup methods:

- `ApplicationLoadBalancer.fromlookup(options)` - Look up an application load
- `ApplicationLoadBalancer.fromLookup(options)` - Look up an application load
balancer.
- `ApplicationListener.fromLookup(options)` - Look up an application load
balancer listener.
Expand Down
Loading