Skip to content

Examples#

Index > LakeFormation > Examples

Auto-generated documentation for LakeFormation type annotations stubs module types-aiobotocore-lakeformation.

Client#

Implicit type annotations#

Can be used with types-aioboto3[lakeformation] package installed.

Write your LakeFormation code as usual, type checking and code completion should work out of the box.

# LakeFormationClient usage example

from aioboto3.session import Session


session = Session()

async with session.client("lakeformation") as client:  # (1)
    result = await client.add_lf_tags_to_resource()  # (2)
  1. client: LakeFormationClient
  2. result: AddLFTagsToResourceResponseTypeDef
# GetWorkUnitsPaginator usage example

from aioboto3.session import Session


session = Session()

async with session.client("lakeformation") as client:  # (1)
    paginator = client.get_paginator("get_work_units")  # (2)
    async for item in paginator.paginate(...):
        print(item)  # (3)
  1. client: LakeFormationClient
  2. paginator: GetWorkUnitsPaginator
  3. item: GetWorkUnitsResponseTypeDef

Explicit type annotations#

With types-aioboto3-lite[lakeformation] or a standalone types_aiobotocore_lakeformation package, you have to explicitly specify client: LakeFormationClient 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.

# LakeFormationClient usage example with type annotations

from aioboto3.session import Session

from types_aiobotocore_lakeformation.client import LakeFormationClient
from types_aiobotocore_lakeformation.type_defs import AddLFTagsToResourceResponseTypeDef
from types_aiobotocore_lakeformation.type_defs import AddLFTagsToResourceRequestRequestTypeDef


session = Session()

client: LakeFormationClient
async with session.client("lakeformation") as client:  # (1)
    kwargs: AddLFTagsToResourceRequestRequestTypeDef = {...}  # (2)
    result: AddLFTagsToResourceResponseTypeDef = await client.add_lf_tags_to_resource(**kwargs)  # (3)
  1. client: LakeFormationClient
  2. kwargs: AddLFTagsToResourceRequestRequestTypeDef
  3. result: AddLFTagsToResourceResponseTypeDef
# GetWorkUnitsPaginator usage example with type annotations

from aioboto3.session import Session

from types_aiobotocore_lakeformation.client import LakeFormationClient
from types_aiobotocore_lakeformation.paginator import GetWorkUnitsPaginator
from types_aiobotocore_lakeformation.type_defs import GetWorkUnitsResponseTypeDef


session = Session()

client: LakeFormationClient
async with session.client("lakeformation") as client:  # (1)
    paginator: GetWorkUnitsPaginator = client.get_paginator("get_work_units")  # (2)
    async for item in paginator.paginate(...):
        item: GetWorkUnitsResponseTypeDef
        print(item)  # (3)
  1. client: LakeFormationClient
  2. paginator: GetWorkUnitsPaginator
  3. item: GetWorkUnitsResponseTypeDef