Skip to content

WorkLink module

Index > WorkLink

Auto-generated documentation for WorkLink type annotations stubs module types-aiobotocore-worklink.

How to install

From PyPI with pip

Install types-aioboto3 for WorkLink service.

# install with aioboto3 type annotations
python -m pip install 'types-aioboto3[worklink]'


# Lite version does not provide session.client/resource overloads
# it is more RAM-friendly, but requires explicit type annotations
python -m pip install 'types-aioboto3-lite[worklink]'


# standalone installation
python -m pip install types-aiobotocore-worklink

How to uninstall

python -m pip uninstall -y types-aiobotocore-worklink

Usage

Code samples can be found in Examples.

WorkLinkClient

Type annotations and code completion for session.client("worklink") as WorkLinkClient boto3 documentation

Usage example
from aioboto3.session import Session

from types_aiobotocore_worklink.client import WorkLinkClient


session = Session()
async with session.client("worklink") as client:
    client: WorkLinkClient

Literals

Type annotations for literals used in methods and schema.

Usage example
from types_aiobotocore_worklink.literals import AuthorizationProviderTypeType

def get_value() -> AuthorizationProviderTypeType:
    return "SAML"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from types_aiobotocore_worklink.type_defs import AssociateDomainRequestRequestTypeDef

def get_value() -> AssociateDomainRequestRequestTypeDef:
    return {
        "FleetArn": ...,
        "DomainName": ...,
        "AcmCertificateArn": ...,
    }