File tree 1 file changed +33
-0
lines changed
packages/aws-cdk-lib/aws-route53/lib
1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change @@ -65,6 +65,15 @@ export enum RecordType {
65
65
*/
66
66
DS = 'DS' ,
67
67
68
+ /**
69
+ * An HTTPS resource record is a form of the Service Binding (SVCB) DNS record that provides extended configuration information,
70
+ * enabling a client to easily and securely connect to a service with an HTTP protocol.
71
+ * The configuration information is provided in parameters that allow the connection in one DNS query, rather than necessitating multiple DNS queries.
72
+ *
73
+ * @see https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/ResourceRecordTypes.html#HTTPSFormat
74
+ */
75
+ HTTPS = 'HTTPS' ,
76
+
68
77
/**
69
78
* An MX record specifies the names of your mail servers and, if you have two or more mail servers,
70
79
* the priority order.
@@ -120,6 +129,30 @@ export enum RecordType {
120
129
*/
121
130
SRV = 'SRV' ,
122
131
132
+ /**
133
+ * A Secure Shell fingerprint record (SSHFP) identifies SSH keys associated with the domain name.
134
+ * SSHFP records must be secured with DNSSEC for a chain of trust to be established.
135
+ *
136
+ * @see https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/ResourceRecordTypes.html#SSHFPFormat
137
+ */
138
+ SSHFP = 'SSHFP' ,
139
+
140
+ /**
141
+ * You use an SVCB record to deliver configuration information for accessing service endpoints.
142
+ * The SVCB is a generic DNS record and can be used to negotiate parameters for a variety of application protocols.
143
+ *
144
+ * @see https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/ResourceRecordTypes.html#SVCBFormat
145
+ */
146
+ SVCB = 'SVCB' ,
147
+
148
+ /**
149
+ * You use a TLSA record to use DNS-Based Authentication of Named Entities (DANE).
150
+ * A TLSA record associates a certificate/public key with a Transport Layer Security (TLS) endpoint, and clients can validate the certificate/public key using a TLSA record signed with DNSSEC.
151
+ *
152
+ * @see https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/ResourceRecordTypes.html#TLSAFormat
153
+ */
154
+ TLSA = 'TLSA' ,
155
+
123
156
/**
124
157
* A TXT record contains one or more strings that are enclosed in double quotation marks (").
125
158
*
You can’t perform that action at this time.
0 commit comments