diff --git a/commands/types/dnscontrol.d.ts b/commands/types/dnscontrol.d.ts index 58c9d8ad2..8715383cc 100644 --- a/commands/types/dnscontrol.d.ts +++ b/commands/types/dnscontrol.d.ts @@ -2300,7 +2300,7 @@ declare function R53_ALIAS(name: string, target: string, zone_idModifier: Domain * * @see https://docs.dnscontrol.org/language-reference/record-modifiers/service-provider-specific/amazon-route-53/r53_evaluate_target_health */ -declare function R53_EVALUATE_TARGET_HEALTH(enabled: bool): RecordModifier; +declare function R53_EVALUATE_TARGET_HEALTH(enabled: boolean): RecordModifier; /** * `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. diff --git a/documentation/functions/record/R53_EVALUATE_TARGET_HEALTH.md b/documentation/functions/record/R53_EVALUATE_TARGET_HEALTH.md index 7ed12b385..72f3ffedc 100644 --- a/documentation/functions/record/R53_EVALUATE_TARGET_HEALTH.md +++ b/documentation/functions/record/R53_EVALUATE_TARGET_HEALTH.md @@ -3,7 +3,7 @@ name: R53_EVALUATE_TARGET_HEALTH parameters: - enabled parameter_types: - enabled: bool + enabled: boolean ts_return: RecordModifier provider: ROUTE53 ---