Examples#
Index > KendraRanking > Examples
Auto-generated documentation for KendraRanking type annotations stubs module types-boto3-kendra-ranking.
Client#
Implicit type annotations#
Can be used with types-boto3[kendra-ranking]
package installed.
Write your KendraRanking
code as usual,
type checking and code completion should work out of the box.
# KendraRankingClient usage example
from boto3.session import Session
session = Session()
client = session.client("kendra-ranking") # (1)
result = client.create_rescore_execution_plan() # (2)
- client: KendraRankingClient
- result: CreateRescoreExecutionPlanResponseTypeDef
Explicit type annotations#
With types-boto3-lite[kendra-ranking]
or a standalone types_boto3_kendra_ranking
package, you have to explicitly specify client: KendraRankingClient
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.
# KendraRankingClient usage example with type annotations
from boto3.session import Session
from types_boto3_kendra_ranking.client import KendraRankingClient
from types_boto3_kendra_ranking.type_defs import CreateRescoreExecutionPlanResponseTypeDef
from types_boto3_kendra_ranking.type_defs import CreateRescoreExecutionPlanRequestRequestTypeDef
session = Session()
client: KendraRankingClient = session.client("kendra-ranking")
kwargs: CreateRescoreExecutionPlanRequestRequestTypeDef = {...}
result: CreateRescoreExecutionPlanResponseTypeDef = client.create_rescore_execution_plan(**kwargs)