Skip to content

AppStream module

Index > AppStream

Auto-generated documentation for AppStream type annotations stubs module mypy-boto3-appstream.

How to install

VSCode extension

Add AWS Boto3 extension to your VSCode and run AWS boto3: Quick Start command.

Click Modify and select boto3 common and AppStream.

From PyPI with pip

Install boto3-stubs for AppStream service.

# install with boto3 type annotations
python -m pip install 'boto3-stubs[appstream]'


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


# standalone installation
python -m pip install mypy-boto3-appstream

How to uninstall

python -m pip uninstall -y mypy-boto3-appstream

Usage

Code samples can be found in Examples.

AppStreamClient

Type annotations and code completion for boto3.client("appstream") as AppStreamClient boto3 documentation

Usage example
from boto3.session import Session

from mypy_boto3_appstream.client import AppStreamClient

def get_client() -> AppStreamClient:
    return Session().client("appstream")

Paginators

Type annotations and code completion for paginators from boto3.client("appstream").get_paginator("...").

Usage example
from boto3.session import Session

from mypy_boto3_appstream.paginator import DescribeDirectoryConfigsPaginator

def get_describe_directory_configs_paginator() -> DescribeDirectoryConfigsPaginator:
    return Session().client("appstream").get_paginator("describe_directory_configs"))

Waiters

Type annotations and code completion for waiters from boto3.client("appstream").get_waiter("...").

Usage example
from boto3.session import Session

from mypy_boto3_appstream.waiter import FleetStartedWaiter

def get_fleet_started_waiter() -> FleetStartedWaiter:
    return Session().client("appstream").get_waiter("fleet_started")

Literals

Type annotations for literals used in methods and schemas.

Usage example
from mypy_boto3_appstream.literals import AccessEndpointTypeType

def get_value() -> AccessEndpointTypeType:
    return "STREAMING"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from mypy_boto3_appstream.type_defs import AccessEndpointTypeDef

def get_value() -> AccessEndpointTypeDef:
    return {
        "EndpointType": ...,
    }