Skip to content

Commit

Permalink
docs(aws-route53-targets): Fixed swapped @param variable name and doc…
Browse files Browse the repository at this point in the history
…string (#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*
  • Loading branch information
mindejulian authored Apr 21, 2021
1 parent a655819 commit e0d1047
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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) { }

Expand Down

0 comments on commit e0d1047

Please sign in to comment.