Skip to content

Commit d6e3c61

Browse files
authored
docs(route53): fix typos (#33007)
### Issue # (if applicable) None ### Reason for this change Fixed typos in code comments. ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent f58f80f commit d6e3c61

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

packages/aws-cdk-lib/aws-ec2/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ DatabaseSubnet3 |`ISOLATED`|`10.0.6.32/28`|#3|Only routes within the VPC
463463

464464
#### Dual Stack Configurations
465465

466-
Here is a break down of IPv4 and IPv6 specifc `subnetConfiguration` properties in a dual stack VPC:
466+
Here is a break down of IPv4 and IPv6 specific `subnetConfiguration` properties in a dual stack VPC:
467467

468468
```ts
469469
const vpc = new ec2.Vpc(this, 'TheVPC', {

packages/aws-cdk-lib/aws-route53/lib/health-check.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export enum HealthCheckType {
7070
/**
7171
* Recovery control health check
7272
*
73-
* The health check is assocated with a Route53 Application Recovery Controller routing control. If the routing control state is ON, the health check is considered healthy. If the state is OFF, the health check is considered unhealthy.
73+
* The health check is associated with a Route53 Application Recovery Controller routing control. If the routing control state is ON, the health check is considered healthy. If the state is OFF, the health check is considered unhealthy.
7474
*/
7575
RECOVERY_CONTROL = 'RECOVERY_CONTROL',
7676
}
@@ -122,7 +122,7 @@ export interface HealthCheckProps {
122122
* If you specify a value for IPAddress:
123123
*
124124
* Amazon Route 53 sends health check requests to the specified IPv4 or IPv6 address and passes the value of FullyQualifiedDomainName in the Host header for all health checks except TCP health checks. This is typically the fully qualified DNS name of the endpoint on which you want Route 53 to perform health checks.
125-
* Note: If you specify a value for Port property other than 80 or 443, Route 53 will constract the value for Host header as FullyQualifiedDomainName:Port.
125+
* Note: If you specify a value for Port property other than 80 or 443, Route 53 will construct the value for Host header as FullyQualifiedDomainName:Port.
126126
*
127127
* If you don't specify a value for IPAddress:
128128
*

packages/aws-cdk-lib/aws-route53/lib/util.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import * as iam from '../../aws-iam';
44
import { Stack } from '../../core';
55

66
/**
7-
* Validates a zone name is valid by Route53 specifc naming rules,
7+
* Validates a zone name is valid by Route53 specific naming rules,
88
* and that there is no trailing dot in the name.
99
*
1010
* @param zoneName the zone name to be validated.

0 commit comments

Comments
 (0)