Skip to content

FMS module

Index > FMS

Auto-generated documentation for FMS type annotations stubs module types-aiobotocore-fms.

How to install

From PyPI with pip

Install types-aioboto3 for FMS service.

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


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


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

How to uninstall

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

Usage

Code samples can be found in Examples.

FMSClient

Type annotations and code completion for session.client("fms") as FMSClient boto3 documentation

Usage example
from aioboto3.session import Session

from types_aiobotocore_fms.client import FMSClient


session = Session()
async with session.client("fms") as client:
    client: FMSClient

Paginators

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

Usage example
from types_aiobotocore_fms.paginator import ListAppsListsPaginator

def get_list_apps_lists_paginator() -> ListAppsListsPaginator:
    return client.get_paginator("list_apps_lists"))

Literals

Type annotations for literals used in methods and schema.

Usage example
from types_aiobotocore_fms.literals import AccountRoleStatusType

def get_value() -> AccountRoleStatusType:
    return "CREATING"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from types_aiobotocore_fms.type_defs import ActionTargetTypeDef

def get_value() -> ActionTargetTypeDef:
    return {
        "ResourceId": ...,
    }