Skip to content

Examples#

Index > PersonalizeRuntime > Examples

Auto-generated documentation for PersonalizeRuntime type annotations stubs module mypy-boto3-personalize-runtime.

Client#

Implicit type annotations#

Can be used with boto3-stubs[personalize-runtime] package installed.

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

# PersonalizeRuntimeClient usage example

from boto3.session import Session


session = Session()

client = session.client("personalize-runtime")  # (1)
result = client.get_action_recommendations()  # (2)
  1. client: PersonalizeRuntimeClient
  2. result: GetActionRecommendationsResponseTypeDef

Explicit type annotations#

With boto3-stubs-lite[personalize-runtime] or a standalone mypy_boto3_personalize_runtime package, you have to explicitly specify client: PersonalizeRuntimeClient 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.

# PersonalizeRuntimeClient usage example with type annotations

from boto3.session import Session

from mypy_boto3_personalize_runtime.client import PersonalizeRuntimeClient
from mypy_boto3_personalize_runtime.type_defs import GetActionRecommendationsResponseTypeDef
from mypy_boto3_personalize_runtime.type_defs import GetActionRecommendationsRequestRequestTypeDef


session = Session()

client: PersonalizeRuntimeClient = session.client("personalize-runtime")

kwargs: GetActionRecommendationsRequestRequestTypeDef = {...}
result: GetActionRecommendationsResponseTypeDef = client.get_action_recommendations(**kwargs)