Skip to content

GroundStation module

Index > GroundStation

Auto-generated documentation for GroundStation type annotations stubs module types-aiobotocore-groundstation.

How to install

From PyPI with pip

Install types-aioboto3 for GroundStation service.

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


# 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[groundstation]'


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

How to uninstall

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

Usage

Code samples can be found in Examples.

GroundStationClient

Type annotations and code completion for session.client("groundstation") as GroundStationClient boto3 documentation

Usage example
from aioboto3.session import Session

from types_aiobotocore_groundstation.client import GroundStationClient


session = Session()
async with session.client("groundstation") as client:
    client: GroundStationClient

Paginators

Type annotations and code completion for paginators from session.client("groundstation").get_paginator("...").

Usage example
from types_aiobotocore_groundstation.paginator import ListConfigsPaginator

def get_list_configs_paginator() -> ListConfigsPaginator:
    return client.get_paginator("list_configs"))

Literals

Type annotations for literals used in methods and schema.

Usage example
from types_aiobotocore_groundstation.literals import AngleUnitsType

def get_value() -> AngleUnitsType:
    return "DEGREE_ANGLE"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from types_aiobotocore_groundstation.type_defs import AntennaDemodDecodeDetailsTypeDef

def get_value() -> AntennaDemodDecodeDetailsTypeDef:
    return {
        "outputNode": ...,
    }