Skip to content

Firehose module

Index > Firehose

Auto-generated documentation for Firehose type annotations stubs module types-aiobotocore-firehose.

How to install

From PyPI with pip

Install types-aioboto3 for Firehose service.

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


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


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

How to uninstall

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

Usage

Code samples can be found in Examples.

FirehoseClient

Type annotations and code completion for session.client("firehose") as FirehoseClient boto3 documentation

Usage example
from aioboto3.session import Session

from types_aiobotocore_firehose.client import FirehoseClient


session = Session()
async with session.client("firehose") as client:
    client: FirehoseClient

Literals

Type annotations for literals used in methods and schema.

Usage example
from types_aiobotocore_firehose.literals import AmazonopensearchserviceIndexRotationPeriodType

def get_value() -> AmazonopensearchserviceIndexRotationPeriodType:
    return "NoRotation"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from types_aiobotocore_firehose.type_defs import AmazonopensearchserviceBufferingHintsTypeDef

def get_value() -> AmazonopensearchserviceBufferingHintsTypeDef:
    return {
        "IntervalInSeconds": ...,
    }