Skip to content

FIS module

Index > FIS

Auto-generated documentation for FIS type annotations stubs module types-aiobotocore-fis.

How to install

From PyPI with pip

Install types-aioboto3 for FIS service.

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


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


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

How to uninstall

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

Usage

Code samples can be found in Examples.

FISClient

Type annotations and code completion for session.client("fis") as FISClient boto3 documentation

Usage example
from aioboto3.session import Session

from types_aiobotocore_fis.client import FISClient


session = Session()
async with session.client("fis") as client:
    client: FISClient

Literals

Type annotations for literals used in methods and schema.

Usage example
from types_aiobotocore_fis.literals import ExperimentActionStatusType

def get_value() -> ExperimentActionStatusType:
    return "cancelled"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from types_aiobotocore_fis.type_defs import ActionParameterTypeDef

def get_value() -> ActionParameterTypeDef:
    return {
        "description": ...,
    }