You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(route53): improve constructs for basic records (#2741)
Constructs for records (CNAME, TXT, etc.) now extend the `RecordSet` construct and
offer better typed properties interfaces.
Add constructs for A, AAAA, CAA, MX and SRV records.
Add support for multiple values in basic records.
Make `recordName` optional with default to zone root.
Add a "security" `CaaAmazonRecord` construct to easily restrict certificate authorities
allowed to issue certificates for a domain to Amazon only.
BREAKING CHANGE: `recordValue: string` prop in `route53.TxtRecord` changed to `values: string[]`
* `recordValue` prop in `route53.CnameRecord` renamed to `domainName`
* `route53.AliasRecord` has been removed, use `route53.ARecord` or `route53.AaaaRecord` with the `target` prop.
0 commit comments