Skip to content

Commit 88f007c

Browse files
ROUTE53: fix parameter type for R53_EVALUATE_TARGET_HEALTH (#2658)
1 parent 5b93f94 commit 88f007c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

commands/types/dnscontrol.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2300,7 +2300,7 @@ declare function R53_ALIAS(name: string, target: string, zone_idModifier: Domain
23002300
*
23012301
* @see https://docs.dnscontrol.org/language-reference/record-modifiers/service-provider-specific/amazon-route-53/r53_evaluate_target_health
23022302
*/
2303-
declare function R53_EVALUATE_TARGET_HEALTH(enabled: bool): RecordModifier;
2303+
declare function R53_EVALUATE_TARGET_HEALTH(enabled: boolean): RecordModifier;
23042304

23052305
/**
23062306
* `R53_ZONE` lets you specify the AWS Zone ID for an entire domain ([`D()`](../global/D.md)) or a specific [`R53_ALIAS()`](../domain/R53_ALIAS.md) record.

documentation/functions/record/R53_EVALUATE_TARGET_HEALTH.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: R53_EVALUATE_TARGET_HEALTH
33
parameters:
44
- enabled
55
parameter_types:
6-
enabled: bool
6+
enabled: boolean
77
ts_return: RecordModifier
88
provider: ROUTE53
99
---

0 commit comments

Comments
 (0)