1 Respuesta
- Más nuevo
- Más votos
- Más comentarios
2
You can use the Route53 Domains API (and CLI command). See the CLI docs, or you can run aws route53domains help at your prompt.
To list your domains and when they're due for renewal, you could use something like:
aws route53domains list-domains --query "Domains[].[DomainName,Expiry]" --output text
and to change the autorenew flag, use
aws route53domains enable-domain-auto-renew --domain-name example.com
(or disable-domain-auto-renew). You can use the route53domains client in the SDKs similarly (for example, in boto3).
Contenido relevante
- preguntada hace un año
- preguntada hace 5 meses
- preguntada hace 7 meses
- preguntada hace 7 meses

Thanks James, perfect!