Route53DomainsClient#
Index > Route53Domains > Route53DomainsClient
Auto-generated documentation for Route53Domains type annotations stubs module mypy-boto3-route53domains.
Route53DomainsClient#
Type annotations and code completion for boto3.client("route53domains")
.
boto3 documentation
# Route53DomainsClient usage example
from boto3.session import Session
from mypy_boto3_route53domains.client import Route53DomainsClient
def get_route53domains_client() -> Route53DomainsClient:
return Session().client("route53domains")
Exceptions#
boto3
client exceptions are generated in runtime.
This class provides code completion for boto3.client("route53domains").exceptions
structure.
# Exceptions.exceptions usage example
client = boto3.client("route53domains")
try:
do_something(client)
except (
client.exceptions.ClientError,
client.exceptions.DnssecLimitExceeded,
client.exceptions.DomainLimitExceeded,
client.exceptions.DuplicateRequest,
client.exceptions.InvalidInput,
client.exceptions.OperationLimitExceeded,
client.exceptions.TLDRulesViolation,
client.exceptions.UnsupportedTLD,
) as e:
print(e)
# Exceptions.exceptions type checking example
from mypy_boto3_route53domains.client import Exceptions
def handle_error(exc: Exceptions.ClientError) -> None:
...
Methods#
accept_domain_transfer_from_another_aws_account#
Accepts the transfer of a domain from another Amazon Web Services account to the currentAmazon Web Services account.
Type annotations and code completion for boto3.client("route53domains").accept_domain_transfer_from_another_aws_account
method.
boto3 documentation
# accept_domain_transfer_from_another_aws_account method definition
def accept_domain_transfer_from_another_aws_account(
self,
*,
DomainName: str,
Password: str,
) -> AcceptDomainTransferFromAnotherAwsAccountResponseTypeDef: # (1)
...
# accept_domain_transfer_from_another_aws_account method usage example with argument unpacking
kwargs: AcceptDomainTransferFromAnotherAwsAccountRequestRequestTypeDef = { # (1)
"DomainName": ...,
"Password": ...,
}
parent.accept_domain_transfer_from_another_aws_account(**kwargs)
associate_delegation_signer_to_domain#
Creates a delegation signer (DS) record in the registry zone for this domain name.
Type annotations and code completion for boto3.client("route53domains").associate_delegation_signer_to_domain
method.
boto3 documentation
# associate_delegation_signer_to_domain method definition
def associate_delegation_signer_to_domain(
self,
*,
DomainName: str,
SigningAttributes: DnssecSigningAttributesTypeDef, # (1)
) -> AssociateDelegationSignerToDomainResponseTypeDef: # (2)
...
# associate_delegation_signer_to_domain method usage example with argument unpacking
kwargs: AssociateDelegationSignerToDomainRequestRequestTypeDef = { # (1)
"DomainName": ...,
"SigningAttributes": ...,
}
parent.associate_delegation_signer_to_domain(**kwargs)
can_paginate#
Check if an operation can be paginated.
Type annotations and code completion for boto3.client("route53domains").can_paginate
method.
boto3 documentation
# can_paginate method definition
def can_paginate(
self,
operation_name: str,
) -> bool:
...
cancel_domain_transfer_to_another_aws_account#
Cancels the transfer of a domain from the current Amazon Web Services account to another Amazon Web Services account.
Type annotations and code completion for boto3.client("route53domains").cancel_domain_transfer_to_another_aws_account
method.
boto3 documentation
# cancel_domain_transfer_to_another_aws_account method definition
def cancel_domain_transfer_to_another_aws_account(
self,
*,
DomainName: str,
) -> CancelDomainTransferToAnotherAwsAccountResponseTypeDef: # (1)
...
# cancel_domain_transfer_to_another_aws_account method usage example with argument unpacking
kwargs: CancelDomainTransferToAnotherAwsAccountRequestRequestTypeDef = { # (1)
"DomainName": ...,
}
parent.cancel_domain_transfer_to_another_aws_account(**kwargs)
check_domain_availability#
This operation checks the availability of one domain name.
Type annotations and code completion for boto3.client("route53domains").check_domain_availability
method.
boto3 documentation
# check_domain_availability method definition
def check_domain_availability(
self,
*,
DomainName: str,
IdnLangCode: str = ...,
) -> CheckDomainAvailabilityResponseTypeDef: # (1)
...
# check_domain_availability method usage example with argument unpacking
kwargs: CheckDomainAvailabilityRequestRequestTypeDef = { # (1)
"DomainName": ...,
}
parent.check_domain_availability(**kwargs)
check_domain_transferability#
Checks whether a domain name can be transferred to Amazon Route 53.
Type annotations and code completion for boto3.client("route53domains").check_domain_transferability
method.
boto3 documentation
# check_domain_transferability method definition
def check_domain_transferability(
self,
*,
DomainName: str,
AuthCode: str = ...,
) -> CheckDomainTransferabilityResponseTypeDef: # (1)
...
# check_domain_transferability method usage example with argument unpacking
kwargs: CheckDomainTransferabilityRequestRequestTypeDef = { # (1)
"DomainName": ...,
}
parent.check_domain_transferability(**kwargs)
close#
Closes underlying endpoint connections.
Type annotations and code completion for boto3.client("route53domains").close
method.