stacktape 3.5.6 → 3.5.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/plain.d.ts +12 -7
package/package.json
CHANGED
package/plain.d.ts
CHANGED
|
@@ -6275,14 +6275,16 @@ export interface ApplicationLoadBalancerProps {
|
|
|
6275
6275
|
*/
|
|
6276
6276
|
interface?: "internal" | "internet";
|
|
6277
6277
|
/**
|
|
6278
|
-
* #### Custom domains.
|
|
6278
|
+
* #### Custom domains.
|
|
6279
6279
|
*
|
|
6280
6280
|
* ---
|
|
6281
6281
|
*
|
|
6282
|
-
*
|
|
6283
|
-
*
|
|
6282
|
+
* By default, Stacktape creates DNS records and TLS certificates for each domain.
|
|
6283
|
+
* If you manage DNS yourself, set `disableDnsRecordCreation` and provide `customCertificateArn`.
|
|
6284
|
+
*
|
|
6285
|
+
* Backward compatible format `string[]` is still supported.
|
|
6284
6286
|
*/
|
|
6285
|
-
customDomains?: string[];
|
|
6287
|
+
customDomains?: string[] | DomainConfiguration[];
|
|
6286
6288
|
/**
|
|
6287
6289
|
* #### Custom listeners (port + protocol). Defaults to HTTPS on 443 + HTTP on 80 (redirecting to HTTPS).
|
|
6288
6290
|
*/
|
|
@@ -6594,13 +6596,16 @@ export interface NetworkLoadBalancerProps {
|
|
|
6594
6596
|
*/
|
|
6595
6597
|
interface?: "internal" | "internet";
|
|
6596
6598
|
/**
|
|
6597
|
-
* #### Custom domains.
|
|
6599
|
+
* #### Custom domains.
|
|
6598
6600
|
*
|
|
6599
6601
|
* ---
|
|
6600
6602
|
*
|
|
6601
|
-
*
|
|
6603
|
+
* By default, Stacktape creates DNS records and TLS certificates for each domain.
|
|
6604
|
+
* If you manage DNS yourself, set `disableDnsRecordCreation` and provide `customCertificateArn`.
|
|
6605
|
+
*
|
|
6606
|
+
* Backward compatible format `string[]` is still supported.
|
|
6602
6607
|
*/
|
|
6603
|
-
customDomains?: string[];
|
|
6608
|
+
customDomains?: string[] | DomainConfiguration[];
|
|
6604
6609
|
/**
|
|
6605
6610
|
* #### Listeners define which ports and protocols (TCP/TLS) this load balancer accepts traffic on.
|
|
6606
6611
|
*/
|