File tree 1 file changed +8
-2
lines changed
packages/aws-cdk-lib/aws-route53/lib 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -156,7 +156,13 @@ export interface RecordSetOptions {
156
156
readonly zone : IHostedZone ;
157
157
158
158
/**
159
- * The domain name for this record.
159
+ * The subdomain name for this record. This should be relative to the zone root name.
160
+ *
161
+ * For example, if you want to create a record for acme.example.com, specify
162
+ * "acme".
163
+ *
164
+ * You can also specify the fully qualified domain name which terminates with a
165
+ * ".". For example, "acme.example.com.".
160
166
*
161
167
* @default zone root
162
168
*/
@@ -376,7 +382,7 @@ export class AaaaRecord extends RecordSet {
376
382
*/
377
383
export interface CnameRecordProps extends RecordSetOptions {
378
384
/**
379
- * The domain name.
385
+ * The domain name of the target that this record should point to .
380
386
*/
381
387
readonly domainName : string ;
382
388
}
You can’t perform that action at this time.
0 commit comments