From e0d1047303e8f0f3d9ee20abf98f245b12e53229 Mon Sep 17 00:00:00 2001 From: Julian Minde Date: Wed, 21 Apr 2021 13:22:37 +0200 Subject: [PATCH] docs(aws-route53-targets): Fixed swapped @param variable name and docstring (#14295) fix(aws-route53-targets): Fixed swapped @param variable name and docstring ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* --- .../aws-route53-targets/lib/api-gatewayv2-domain-name.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/@aws-cdk/aws-route53-targets/lib/api-gatewayv2-domain-name.ts b/packages/@aws-cdk/aws-route53-targets/lib/api-gatewayv2-domain-name.ts index dab8032cd3d1b..6aea6f72de59e 100644 --- a/packages/@aws-cdk/aws-route53-targets/lib/api-gatewayv2-domain-name.ts +++ b/packages/@aws-cdk/aws-route53-targets/lib/api-gatewayv2-domain-name.ts @@ -5,8 +5,8 @@ import * as route53 from '@aws-cdk/aws-route53'; */ export class ApiGatewayv2DomainProperties implements route53.IAliasRecordTarget { /** - * @param regionalDomainName the region-specific Amazon Route 53 Hosted Zone ID of the regional endpoint. - * @param regionalHostedZoneId the domain name associated with the regional endpoint for this custom domain name. + * @param regionalDomainName the domain name associated with the regional endpoint for this custom domain name. + * @param regionalHostedZoneId the region-specific Amazon Route 53 Hosted Zone ID of the regional endpoint. */ constructor(private readonly regionalDomainName: string, private readonly regionalHostedZoneId: string) { }