Examples#
Index > Route53Domains > Examples
Auto-generated documentation for Route53Domains type annotations stubs module types-boto3-route53domains.
Client#
Implicit type annotations#
Can be used with types-boto3[route53domains]
package installed.
Write your Route53Domains
code as usual,
type checking and code completion should work out of the box.
Client method usage example#
# Route53DomainsClient usage example
from boto3.session import Session
session = Session()
client = session.client("route53domains") # (1)
result = client.accept_domain_transfer_from_another_aws_account() # (2)
Paginator usage example#
# ListDomainsPaginator usage example
from boto3.session import Session
session = Session()
client = session.client("route53domains") # (1)
paginator = client.get_paginator("list_domains") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: Route53DomainsClient
- paginator: ListDomainsPaginator
- item: ListDomainsResponseTypeDef
Explicit type annotations#
With types-boto3-lite[route53domains]
or a standalone types_boto3_route53domains
package, you have to explicitly specify client: Route53DomainsClient
type annotation.
All other type annotations are optional, as types should be discovered automatically. However, these type annotations can be helpful in your functions and methods.
Client method usage example#
# Route53DomainsClient usage example with type annotations
from boto3.session import Session
from types_boto3_route53domains.client import Route53DomainsClient
from types_boto3_route53domains.type_defs import AcceptDomainTransferFromAnotherAwsAccountResponseTypeDef
from types_boto3_route53domains.type_defs import AcceptDomainTransferFromAnotherAwsAccountRequestTypeDef
session = Session()
client: Route53DomainsClient = session.client("route53domains")
kwargs: AcceptDomainTransferFromAnotherAwsAccountRequestTypeDef = {...}
result: AcceptDomainTransferFromAnotherAwsAccountResponseTypeDef = client.accept_domain_transfer_from_another_aws_account(**kwargs)
Paginator usage example#
# ListDomainsPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_route53domains.client import Route53DomainsClient
from types_boto3_route53domains.paginator import ListDomainsPaginator
from types_boto3_route53domains.type_defs import ListDomainsResponseTypeDef
session = Session()
client: Route53DomainsClient = session.client("route53domains")
paginator: ListDomainsPaginator = client.get_paginator("list_domains")
for item in paginator.paginate(...):
item: ListDomainsResponseTypeDef
print(item)