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-aiobotocore for GroundStation service.

# install with aiobotocore type annotations
python -m pip install 'types-aiobotocore[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-aiobotocore-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.create_client("groundstation") as GroundStationClient boto3 documentation

# GroundStationClient usage example

from aiobotocore.session import get_session

from types_aiobotocore_groundstation.client import GroundStationClient


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

Paginators#

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

# ListConfigsPaginator usage example

from types_aiobotocore_groundstation.paginator import ListConfigsPaginator

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

Waiters#

Type annotations and code completion for waiters from session.create_client("groundstation").get_waiter("...").

# ContactScheduledWaiter usage example

from types_aiobotocore_groundstation.waiter import ContactScheduledWaiter

def get_contact_scheduled_waiter() -> ContactScheduledWaiter:
    return Session().client("groundstation").get_waiter("contact_scheduled")

Literals#

Type annotations for literals used in methods and schema.

# AgentStatusType usage example

from types_aiobotocore_groundstation.literals import AgentStatusType

def get_value() -> AgentStatusType:
    return "ACTIVE"

Type definitions#

Type annotations for type definitions used in methods and schema.