Examples#
Index > ControlTower > Examples
Auto-generated documentation for ControlTower type annotations stubs module mypy-boto3-controltower.
Client#
Implicit type annotations#
Can be used with boto3-stubs[controltower]
package installed.
Write your ControlTower
code as usual,
type checking and code completion should work out of the box.
# ControlTowerClient usage example
from boto3.session import Session
session = Session()
client = session.client("controltower") # (1)
result = client.create_landing_zone() # (2)
- client: ControlTowerClient
- result: CreateLandingZoneOutputTypeDef
# ListBaselinesPaginator usage example
from boto3.session import Session
session = Session()
client = session.client("controltower") # (1)
paginator = client.get_paginator("list_baselines") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: ControlTowerClient
- paginator: ListBaselinesPaginator
- item: ListBaselinesOutputTypeDef
Explicit type annotations#
With boto3-stubs-lite[controltower]
or a standalone mypy_boto3_controltower
package, you have to explicitly specify client: ControlTowerClient
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.
# ControlTowerClient usage example with type annotations
from boto3.session import Session
from mypy_boto3_controltower.client import ControlTowerClient
from mypy_boto3_controltower.type_defs import CreateLandingZoneOutputTypeDef
from mypy_boto3_controltower.type_defs import CreateLandingZoneInputRequestTypeDef
session = Session()
client: ControlTowerClient = session.client("controltower")
kwargs: CreateLandingZoneInputRequestTypeDef = {...}
result: CreateLandingZoneOutputTypeDef = client.create_landing_zone(**kwargs)
# ListBaselinesPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_controltower.client import ControlTowerClient
from mypy_boto3_controltower.paginator import ListBaselinesPaginator
from mypy_boto3_controltower.type_defs import ListBaselinesOutputTypeDef
session = Session()
client: ControlTowerClient = session.client("controltower")
paginator: ListBaselinesPaginator = client.get_paginator("list_baselines")
for item in paginator.paginate(...):
item: ListBaselinesOutputTypeDef
print(item)