Using Console
Using CLI
<domain-name>
with the actual name of the domain for which you want to enable privacy protection.<domain-name>
with the actual name of the domain for which you want to check if privacy protection is enabled.AdminPrivacy
and RegistrantPrivacy
fields set to true
in the output.Using Python
AWS_ACCESS_KEY_ID
and AWS_SECRET_ACCESS_KEY
aws configure
commandboto3
library to enable privacy protection for your Route 53 domains. Here’s an example script:
update_domain_privacy
method of the boto3
Route 53 Domains client to enable privacy protection for each of the specified domain names. The AdminPrivacy
, RegistrantPrivacy
, and TechPrivacy
parameters all need to be set to True
to enable full privacy protection.
enable_privacy_protection.py
with the name of your Python script.