mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-09-14 17:14:47 +08:00
ROUTE53: fix parameter type for R53_EVALUATE_TARGET_HEALTH (#2658)
This commit is contained in:
parent
5b93f94ad6
commit
88f007cd1d
2 changed files with 2 additions and 2 deletions
2
commands/types/dnscontrol.d.ts
vendored
2
commands/types/dnscontrol.d.ts
vendored
|
@ -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.
|
||||
|
|
|
@ -3,7 +3,7 @@ name: R53_EVALUATE_TARGET_HEALTH
|
|||
parameters:
|
||||
- enabled
|
||||
parameter_types:
|
||||
enabled: bool
|
||||
enabled: boolean
|
||||
ts_return: RecordModifier
|
||||
provider: ROUTE53
|
||||
---
|
||||
|
|
Loading…
Add table
Reference in a new issue