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.
boto3 documentation
# close method definition
def close(
self,
) -> None:
...
delete_domain#
This operation deletes the specified domain.
Type annotations and code completion for boto3.client("route53domains").delete_domain
method.
boto3 documentation
# delete_domain method definition
def delete_domain(
self,
*,
DomainName: str,
) -> DeleteDomainResponseTypeDef: # (1)
...
# delete_domain method usage example with argument unpacking
kwargs: DeleteDomainRequestRequestTypeDef = { # (1)
"DomainName": ...,
}
parent.delete_domain(**kwargs)
delete_tags_for_domain#
This operation deletes the specified tags for a domain.
Type annotations and code completion for boto3.client("route53domains").delete_tags_for_domain
method.
boto3 documentation
# delete_tags_for_domain method definition
def delete_tags_for_domain(
self,
*,
DomainName: str,
TagsToDelete: Sequence[str],
) -> Dict[str, Any]:
...
# delete_tags_for_domain method usage example with argument unpacking
kwargs: DeleteTagsForDomainRequestRequestTypeDef = { # (1)
"DomainName": ...,
"TagsToDelete": ...,
}
parent.delete_tags_for_domain(**kwargs)
disable_domain_auto_renew#
This operation disables automatic renewal of domain registration for the specified domain.
Type annotations and code completion for boto3.client("route53domains").disable_domain_auto_renew
method.
boto3 documentation
# disable_domain_auto_renew method definition
def disable_domain_auto_renew(
self,
*,
DomainName: str,
) -> Dict[str, Any]:
...
# disable_domain_auto_renew method usage example with argument unpacking
kwargs: DisableDomainAutoRenewRequestRequestTypeDef = { # (1)
"DomainName": ...,
}
parent.disable_domain_auto_renew(**kwargs)
disable_domain_transfer_lock#
This operation removes the transfer lock on the domain (specifically the
clientTransferProhibited
status) to allow domain transfers.
Type annotations and code completion for boto3.client("route53domains").disable_domain_transfer_lock
method.
boto3 documentation
# disable_domain_transfer_lock method definition
def disable_domain_transfer_lock(
self,
*,
DomainName: str,
) -> DisableDomainTransferLockResponseTypeDef: # (1)
...
# disable_domain_transfer_lock method usage example with argument unpacking
kwargs: DisableDomainTransferLockRequestRequestTypeDef = { # (1)
"DomainName": ...,
}
parent.disable_domain_transfer_lock(**kwargs)
disassociate_delegation_signer_from_domain#
Deletes a delegation signer (DS) record in the registry zone for this domain name.
Type annotations and code completion for boto3.client("route53domains").disassociate_delegation_signer_from_domain
method.
boto3 documentation
# disassociate_delegation_signer_from_domain method definition
def disassociate_delegation_signer_from_domain(
self,
*,
DomainName: str,
Id: str,
) -> DisassociateDelegationSignerFromDomainResponseTypeDef: # (1)
...
# disassociate_delegation_signer_from_domain method usage example with argument unpacking
kwargs: DisassociateDelegationSignerFromDomainRequestRequestTypeDef = { # (1)
"DomainName": ...,
"Id": ...,
}
parent.disassociate_delegation_signer_from_domain(**kwargs)
enable_domain_auto_renew#
This operation configures Amazon Route 53 to automatically renew the specified domain before the domain registration expires.
Type annotations and code completion for boto3.client("route53domains").enable_domain_auto_renew
method.
boto3 documentation
# enable_domain_auto_renew method definition
def enable_domain_auto_renew(
self,
*,
DomainName: str,
) -> Dict[str, Any]:
...
# enable_domain_auto_renew method usage example with argument unpacking
kwargs: EnableDomainAutoRenewRequestRequestTypeDef = { # (1)
"DomainName": ...,
}
parent.enable_domain_auto_renew(**kwargs)
enable_domain_transfer_lock#
This operation sets the transfer lock on the domain (specifically the
clientTransferProhibited
status) to prevent domain transfers.
Type annotations and code completion for boto3.client("route53domains").enable_domain_transfer_lock
method.
boto3 documentation
# enable_domain_transfer_lock method definition
def enable_domain_transfer_lock(
self,
*,
DomainName: str,
) -> EnableDomainTransferLockResponseTypeDef: # (1)
...
# enable_domain_transfer_lock method usage example with argument unpacking
kwargs: EnableDomainTransferLockRequestRequestTypeDef = { # (1)
"DomainName": ...,
}
parent.enable_domain_transfer_lock(**kwargs)
generate_presigned_url#
Generate a presigned url given a client, its method, and arguments.
Type annotations and code completion for boto3.client("route53domains").generate_presigned_url
method.
boto3 documentation
# generate_presigned_url method definition
def generate_presigned_url(
self,
ClientMethod: str,
Params: Mapping[str, Any] = ...,
ExpiresIn: int = 3600,
HttpMethod: str = ...,
) -> str:
...
get_contact_reachability_status#
For operations that require confirmation that the email address for the registrant contact is valid, such as registering a new domain, this operation returns information about whether the registrant contact has responded.
Type annotations and code completion for boto3.client("route53domains").get_contact_reachability_status
method.
boto3 documentation
# get_contact_reachability_status method definition
def get_contact_reachability_status(
self,
*,
domainName: str = ...,
) -> GetContactReachabilityStatusResponseTypeDef: # (1)
...
# get_contact_reachability_status method usage example with argument unpacking
kwargs: GetContactReachabilityStatusRequestRequestTypeDef = { # (1)
"domainName": ...,
}
parent.get_contact_reachability_status(**kwargs)
get_domain_detail#
This operation returns detailed information about a specified domain that is associated with the current Amazon Web Services account.
Type annotations and code completion for boto3.client("route53domains").get_domain_detail
method.
boto3 documentation
# get_domain_detail method definition
def get_domain_detail(
self,
*,
DomainName: str,
) -> GetDomainDetailResponseTypeDef: # (1)
...
# get_domain_detail method usage example with argument unpacking
kwargs: GetDomainDetailRequestRequestTypeDef = { # (1)
"DomainName": ...,
}
parent.get_domain_detail(**kwargs)
get_domain_suggestions#
The GetDomainSuggestions operation returns a list of suggested domain names.
Type annotations and code completion for boto3.client("route53domains").get_domain_suggestions
method.
boto3 documentation
# get_domain_suggestions method definition
def get_domain_suggestions(
self,
*,
DomainName: str,
SuggestionCount: int,
OnlyAvailable: bool,
) -> GetDomainSuggestionsResponseTypeDef: # (1)
...
# get_domain_suggestions method usage example with argument unpacking
kwargs: GetDomainSuggestionsRequestRequestTypeDef = { # (1)
"DomainName": ...,
"SuggestionCount": ...,
"OnlyAvailable": ...,
}
parent.get_domain_suggestions(**kwargs)
get_operation_detail#
This operation returns the current status of an operation that is not completed.
Type annotations and code completion for boto3.client("route53domains").get_operation_detail
method.
boto3 documentation
# get_operation_detail method definition
def get_operation_detail(
self,
*,
OperationId: str,
) -> GetOperationDetailResponseTypeDef: # (1)
...
# get_operation_detail method usage example with argument unpacking
kwargs: GetOperationDetailRequestRequestTypeDef = { # (1)
"OperationId": ...,
}
parent.get_operation_detail(**kwargs)
list_domains#
This operation returns all the domain names registered with Amazon Route 53 for the current Amazon Web Services account if no filtering conditions are used.
Type annotations and code completion for boto3.client("route53domains").list_domains
method.
boto3 documentation
# list_domains method definition
def list_domains(
self,
*,
FilterConditions: Sequence[FilterConditionTypeDef] = ..., # (1)
SortCondition: SortConditionTypeDef = ..., # (2)
Marker: str = ...,
MaxItems: int = ...,
) -> ListDomainsResponseTypeDef: # (3)
...
# list_domains method usage example with argument unpacking
kwargs: ListDomainsRequestRequestTypeDef = { # (1)
"FilterConditions": ...,
}
parent.list_domains(**kwargs)
list_operations#
Returns information about all of the operations that return an operation ID and that have ever been performed on domains that were registered by the current account.
Type annotations and code completion for boto3.client("route53domains").list_operations
method.
boto3 documentation
# list_operations method definition
def list_operations(
self,
*,
SubmittedSince: TimestampTypeDef = ...,
Marker: str = ...,
MaxItems: int = ...,
Status: Sequence[OperationStatusType] = ..., # (1)
Type: Sequence[OperationTypeType] = ..., # (2)
SortBy: ListOperationsSortAttributeNameType = ..., # (3)
SortOrder: SortOrderType = ..., # (4)
) -> ListOperationsResponseTypeDef: # (5)
...
- See OperationStatusType
- See OperationTypeType
- See ListOperationsSortAttributeNameType
- See SortOrderType
- See ListOperationsResponseTypeDef
# list_operations method usage example with argument unpacking
kwargs: ListOperationsRequestRequestTypeDef = { # (1)
"SubmittedSince": ...,
}
parent.list_operations(**kwargs)
list_prices#
Lists the following prices for either all the TLDs supported by Route 53, or
the specified TLD: * Registration * Transfer * Owner change * Domain renewal *
Domain restoration See also: AWS API Documentation
<https://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/ListP...
.
Type annotations and code completion for boto3.client("route53domains").list_prices
method.
boto3 documentation
# list_prices method definition
def list_prices(
self,
*,
Tld: str = ...,
Marker: str = ...,
MaxItems: int = ...,
) -> ListPricesResponseTypeDef: # (1)
...
# list_prices method usage example with argument unpacking
kwargs: ListPricesRequestRequestTypeDef = { # (1)
"Tld": ...,
}
parent.list_prices(**kwargs)
list_tags_for_domain#
This operation returns all of the tags that are associated with the specified domain.
Type annotations and code completion for boto3.client("route53domains").list_tags_for_domain
method.
boto3 documentation
# list_tags_for_domain method definition
def list_tags_for_domain(
self,
*,
DomainName: str,
) -> ListTagsForDomainResponseTypeDef: # (1)
...
# list_tags_for_domain method usage example with argument unpacking
kwargs: ListTagsForDomainRequestRequestTypeDef = { # (1)
"DomainName": ...,
}
parent.list_tags_for_domain(**kwargs)
push_domain#
Moves a domain from Amazon Web Services to another registrar.
Type annotations and code completion for boto3.client("route53domains").push_domain
method.
boto3 documentation
# push_domain method definition
def push_domain(
self,
*,
DomainName: str,
Target: str,
) -> EmptyResponseMetadataTypeDef: # (1)
...
# push_domain method usage example with argument unpacking
kwargs: PushDomainRequestRequestTypeDef = { # (1)
"DomainName": ...,
"Target": ...,
}
parent.push_domain(**kwargs)
register_domain#
This operation registers a domain.
Type annotations and code completion for boto3.client("route53domains").register_domain
method.
boto3 documentation
# register_domain method definition
def register_domain(
self,
*,
DomainName: str,
DurationInYears: int,
AdminContact: ContactDetailTypeDef, # (1)
RegistrantContact: ContactDetailTypeDef, # (1)
TechContact: ContactDetailTypeDef, # (1)
IdnLangCode: str = ...,
AutoRenew: bool = ...,
PrivacyProtectAdminContact: bool = ...,
PrivacyProtectRegistrantContact: bool = ...,
PrivacyProtectTechContact: bool = ...,
BillingContact: ContactDetailTypeDef = ..., # (1)
PrivacyProtectBillingContact: bool = ...,
) -> RegisterDomainResponseTypeDef: # (5)
...
- See ContactDetailTypeDef
- See ContactDetailTypeDef
- See ContactDetailTypeDef
- See ContactDetailTypeDef
- See RegisterDomainResponseTypeDef
# register_domain method usage example with argument unpacking
kwargs: RegisterDomainRequestRequestTypeDef = { # (1)
"DomainName": ...,
"DurationInYears": ...,
"AdminContact": ...,
"RegistrantContact": ...,
"TechContact": ...,
}
parent.register_domain(**kwargs)
reject_domain_transfer_from_another_aws_account#
Rejects the transfer of a domain from another Amazon Web Services account to the current Amazon Web Services account.
Type annotations and code completion for boto3.client("route53domains").reject_domain_transfer_from_another_aws_account
method.
boto3 documentation
# reject_domain_transfer_from_another_aws_account method definition
def reject_domain_transfer_from_another_aws_account(
self,
*,
DomainName: str,
) -> RejectDomainTransferFromAnotherAwsAccountResponseTypeDef: # (1)
...
# reject_domain_transfer_from_another_aws_account method usage example with argument unpacking
kwargs: RejectDomainTransferFromAnotherAwsAccountRequestRequestTypeDef = { # (1)
"DomainName": ...,
}
parent.reject_domain_transfer_from_another_aws_account(**kwargs)
renew_domain#
This operation renews a domain for the specified number of years.
Type annotations and code completion for boto3.client("route53domains").renew_domain
method.
boto3 documentation
# renew_domain method definition
def renew_domain(
self,
*,
DomainName: str,
CurrentExpiryYear: int,
DurationInYears: int = ...,
) -> RenewDomainResponseTypeDef: # (1)
...
# renew_domain method usage example with argument unpacking
kwargs: RenewDomainRequestRequestTypeDef = { # (1)
"DomainName": ...,
"CurrentExpiryYear": ...,
}
parent.renew_domain(**kwargs)
resend_contact_reachability_email#
For operations that require confirmation that the email address for the registrant contact is valid, such as registering a new domain, this operation resends the confirmation email to the current email address for the registrant contact.
Type annotations and code completion for boto3.client("route53domains").resend_contact_reachability_email
method.
boto3 documentation
# resend_contact_reachability_email method definition
def resend_contact_reachability_email(
self,
*,
domainName: str = ...,
) -> ResendContactReachabilityEmailResponseTypeDef: # (1)
...
# resend_contact_reachability_email method usage example with argument unpacking
kwargs: ResendContactReachabilityEmailRequestRequestTypeDef = { # (1)
"domainName": ...,
}
parent.resend_contact_reachability_email(**kwargs)
resend_operation_authorization#
Resend the form of authorization email for this operation.
Type annotations and code completion for boto3.client("route53domains").resend_operation_authorization
method.
boto3 documentation
# resend_operation_authorization method definition
def resend_operation_authorization(
self,
*,
OperationId: str,
) -> EmptyResponseMetadataTypeDef: # (1)
...
# resend_operation_authorization method usage example with argument unpacking
kwargs: ResendOperationAuthorizationRequestRequestTypeDef = { # (1)
"OperationId": ...,
}
parent.resend_operation_authorization(**kwargs)
retrieve_domain_auth_code#
This operation returns the authorization code for the domain.
Type annotations and code completion for boto3.client("route53domains").retrieve_domain_auth_code
method.
boto3 documentation
# retrieve_domain_auth_code method definition
def retrieve_domain_auth_code(
self,
*,
DomainName: str,
) -> RetrieveDomainAuthCodeResponseTypeDef: # (1)
...
# retrieve_domain_auth_code method usage example with argument unpacking
kwargs: RetrieveDomainAuthCodeRequestRequestTypeDef = { # (1)
"DomainName": ...,
}
parent.retrieve_domain_auth_code(**kwargs)
transfer_domain#
Transfers a domain from another registrar to Amazon Route 53.
Type annotations and code completion for boto3.client("route53domains").transfer_domain
method.
boto3 documentation
# transfer_domain method definition
def transfer_domain(
self,
*,
DomainName: str,
DurationInYears: int,
AdminContact: ContactDetailTypeDef, # (1)
RegistrantContact: ContactDetailTypeDef, # (1)
TechContact: ContactDetailTypeDef, # (1)
IdnLangCode: str = ...,
Nameservers: Sequence[NameserverUnionTypeDef] = ..., # (4)
AuthCode: str = ...,
AutoRenew: bool = ...,
PrivacyProtectAdminContact: bool = ...,
PrivacyProtectRegistrantContact: bool = ...,
PrivacyProtectTechContact: bool = ...,
BillingContact: ContactDetailTypeDef = ..., # (1)
PrivacyProtectBillingContact: bool = ...,
) -> TransferDomainResponseTypeDef: # (6)
...
- See ContactDetailTypeDef
- See ContactDetailTypeDef
- See ContactDetailTypeDef
- See NameserverTypeDef NameserverOutputTypeDef
- See ContactDetailTypeDef
- See TransferDomainResponseTypeDef
# transfer_domain method usage example with argument unpacking
kwargs: TransferDomainRequestRequestTypeDef = { # (1)
"DomainName": ...,
"DurationInYears": ...,
"AdminContact": ...,
"RegistrantContact": ...,
"TechContact": ...,
}
parent.transfer_domain(**kwargs)
transfer_domain_to_another_aws_account#
Transfers a domain from the current Amazon Web Services account to another Amazon Web Services account.
Type annotations and code completion for boto3.client("route53domains").transfer_domain_to_another_aws_account
method.
boto3 documentation
# transfer_domain_to_another_aws_account method definition
def transfer_domain_to_another_aws_account(
self,
*,
DomainName: str,
AccountId: str,
) -> TransferDomainToAnotherAwsAccountResponseTypeDef: # (1)
...
# transfer_domain_to_another_aws_account method usage example with argument unpacking
kwargs: TransferDomainToAnotherAwsAccountRequestRequestTypeDef = { # (1)
"DomainName": ...,
"AccountId": ...,
}
parent.transfer_domain_to_another_aws_account(**kwargs)
update_domain_contact#
This operation updates the contact information for a particular domain.
Type annotations and code completion for boto3.client("route53domains").update_domain_contact
method.
boto3 documentation
# update_domain_contact method definition
def update_domain_contact(
self,
*,
DomainName: str,
AdminContact: ContactDetailTypeDef = ..., # (1)
RegistrantContact: ContactDetailTypeDef = ..., # (1)
TechContact: ContactDetailTypeDef = ..., # (1)
Consent: ConsentTypeDef = ..., # (4)
BillingContact: ContactDetailTypeDef = ..., # (1)
) -> UpdateDomainContactResponseTypeDef: # (6)
...
- See ContactDetailTypeDef
- See ContactDetailTypeDef
- See ContactDetailTypeDef
- See ConsentTypeDef
- See ContactDetailTypeDef
- See UpdateDomainContactResponseTypeDef
# update_domain_contact method usage example with argument unpacking
kwargs: UpdateDomainContactRequestRequestTypeDef = { # (1)
"DomainName": ...,
}
parent.update_domain_contact(**kwargs)
update_domain_contact_privacy#
This operation updates the specified domain contact's privacy setting.
Type annotations and code completion for boto3.client("route53domains").update_domain_contact_privacy
method.
boto3 documentation
# update_domain_contact_privacy method definition
def update_domain_contact_privacy(
self,
*,
DomainName: str,
AdminPrivacy: bool = ...,
RegistrantPrivacy: bool = ...,
TechPrivacy: bool = ...,
BillingPrivacy: bool = ...,
) -> UpdateDomainContactPrivacyResponseTypeDef: # (1)
...
# update_domain_contact_privacy method usage example with argument unpacking
kwargs: UpdateDomainContactPrivacyRequestRequestTypeDef = { # (1)
"DomainName": ...,
}
parent.update_domain_contact_privacy(**kwargs)
update_domain_nameservers#
This operation replaces the current set of name servers for the domain with the specified set of name servers.
Type annotations and code completion for boto3.client("route53domains").update_domain_nameservers
method.
boto3 documentation
# update_domain_nameservers method definition
def update_domain_nameservers(
self,
*,
DomainName: str,
Nameservers: Sequence[NameserverTypeDef], # (1)
FIAuthKey: str = ...,
) -> UpdateDomainNameserversResponseTypeDef: # (2)
...
# update_domain_nameservers method usage example with argument unpacking
kwargs: UpdateDomainNameserversRequestRequestTypeDef = { # (1)
"DomainName": ...,
"Nameservers": ...,
}
parent.update_domain_nameservers(**kwargs)
update_tags_for_domain#
This operation adds or updates tags for a specified domain.
Type annotations and code completion for boto3.client("route53domains").update_tags_for_domain
method.
boto3 documentation
# update_tags_for_domain method definition
def update_tags_for_domain(
self,
*,
DomainName: str,
TagsToUpdate: Sequence[TagTypeDef] = ..., # (1)
) -> Dict[str, Any]:
...
- See TagTypeDef
# update_tags_for_domain method usage example with argument unpacking
kwargs: UpdateTagsForDomainRequestRequestTypeDef = { # (1)
"DomainName": ...,
}
parent.update_tags_for_domain(**kwargs)
view_billing#
Returns all the domain-related billing records for the current Amazon Web Services account for a specified period See also: AWS API Documentation.
Type annotations and code completion for boto3.client("route53domains").view_billing
method.
boto3 documentation
# view_billing method definition
def view_billing(
self,
*,
Start: TimestampTypeDef = ...,
End: TimestampTypeDef = ...,
Marker: str = ...,
MaxItems: int = ...,
) -> ViewBillingResponseTypeDef: # (1)
...
# view_billing method usage example with argument unpacking
kwargs: ViewBillingRequestRequestTypeDef = { # (1)
"Start": ...,
}
parent.view_billing(**kwargs)
get_paginator#
Type annotations and code completion for boto3.client("route53domains").get_paginator
method with overloads.
client.get_paginator("list_domains")
-> ListDomainsPaginatorclient.get_paginator("list_operations")
-> ListOperationsPaginatorclient.get_paginator("list_prices")
-> ListPricesPaginatorclient.get_paginator("view_billing")
-> ViewBillingPaginator