Skip to content

Commit

Permalink
chore(route53): raise awareness of sharp edges on CrossAccountZoneDel…
Browse files Browse the repository at this point in the history
…egationRecord (#33247)

### Issue # (if applicable)

N/A.

### Reason for this change

See internal tracking: P193236083

### Description of changes

Doc change only.

### Describe any new or updated permissions being added

None

### Description of how you validated changes

N/A

### 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*
samson-keung authored Jan 31, 2025
1 parent a06f91a commit 7b5f5a5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/aws-cdk-lib/aws-route53/lib/record-set.ts
Original file line number Diff line number Diff line change
@@ -966,7 +966,11 @@ export interface CrossAccountZoneDelegationRecordProps {
}

/**
* A Cross Account Zone Delegation record
* A Cross Account Zone Delegation record. This construct uses custom resource lambda that calls Route53
* ChangeResourceRecordSets API to upsert a NS record into the `parentHostedZone`.
*
* WARNING: The default removal policy of this resource is DESTROY, therefore, if this resource's logical ID changes or
* if this resource is removed from the stack, the existing NS record will be removed.
*/
export class CrossAccountZoneDelegationRecord extends Construct {
constructor(scope: Construct, id: string, props: CrossAccountZoneDelegationRecordProps) {

0 comments on commit 7b5f5a5

Please sign in to comment.