Skip to content

Examples#

Index > WorkSpacesWeb > Examples

Auto-generated documentation for WorkSpacesWeb type annotations stubs module mypy-boto3-workspaces-web.

Client#

Implicit type annotations#

Can be used with boto3-stubs[workspaces-web] package installed.

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

# WorkSpacesWebClient usage example

from boto3.session import Session


session = Session()

client = session.client("workspaces-web")  # (1)
result = client.associate_browser_settings()  # (2)
  1. client: WorkSpacesWebClient
  2. result: AssociateBrowserSettingsResponseTypeDef
# ListDataProtectionSettingsPaginator usage example

from boto3.session import Session


session = Session()
client = session.client("workspaces-web")  # (1)

paginator = client.get_paginator("list_data_protection_settings")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: WorkSpacesWebClient
  2. paginator: ListDataProtectionSettingsPaginator
  3. item: ListDataProtectionSettingsResponseTypeDef

Explicit type annotations#

With boto3-stubs-lite[workspaces-web] or a standalone mypy_boto3_workspaces_web package, you have to explicitly specify client: WorkSpacesWebClient 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.

# WorkSpacesWebClient usage example with type annotations

from boto3.session import Session

from mypy_boto3_workspaces_web.client import WorkSpacesWebClient
from mypy_boto3_workspaces_we