Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
badmintoncryer committed Jan 28, 2024
1 parent 2d0b638 commit e4994a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/aws-cdk-lib/aws-route53/lib/record-set.ts
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ export class RecordSet extends Resource implements IRecordSet {
private readonly weight?: number;
private readonly region?: string;
private cidrLocation?: CfnRecordSet.CidrRoutingConfigProperty;
private _cidrCollection: CfnCidrCollection | undefined;
private _cidrCollection?: CfnCidrCollection;

constructor(scope: Construct, id: string, props: RecordSetProps) {
super(scope, id);
Expand Down

0 comments on commit e4994a7

Please sign in to comment.