diff --git a/packages/aws-cdk-lib/aws-route53/lib/health-check.ts b/packages/aws-cdk-lib/aws-route53/lib/health-check.ts index 6c6caab8d43d8..1bf2acf6c20f4 100644 --- a/packages/aws-cdk-lib/aws-route53/lib/health-check.ts +++ b/packages/aws-cdk-lib/aws-route53/lib/health-check.ts @@ -70,7 +70,7 @@ export enum HealthCheckType { /** * Recovery control health check * - * 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. + * 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. */ RECOVERY_CONTROL = 'RECOVERY_CONTROL', } @@ -122,7 +122,7 @@ export interface HealthCheckProps { * If you specify a value for IPAddress: * * 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. - * 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. + * 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. * * If you don't specify a value for IPAddress: * diff --git a/packages/aws-cdk-lib/aws-route53/lib/util.ts b/packages/aws-cdk-lib/aws-route53/lib/util.ts index a1a29866c2aa8..80412c38a57de 100644 --- a/packages/aws-cdk-lib/aws-route53/lib/util.ts +++ b/packages/aws-cdk-lib/aws-route53/lib/util.ts @@ -4,7 +4,7 @@ import * as iam from '../../aws-iam'; import { Stack } from '../../core'; /** - * Validates a zone name is valid by Route53 specifc naming rules, + * Validates a zone name is valid by Route53 specific naming rules, * and that there is no trailing dot in the name. * * @param zoneName the zone name to be validated.