Skip to content

Examples

Index > FIS > Examples

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

Client

Implicit type annotations

Can be used with types-aioboto3[fis] package installed.

Write your FIS code as usual, type checking and code completion should work out of the box.

Client usage example
from aioboto3.session import Session


session = Session()

async with session.client("fis") as client:  # (1)
    result = await client.create_experiment_template()  # (2)
  1. client: FISClient
  2. result: CreateExperimentTemplateResponseTypeDef

Explicit type annotations

With types-aioboto3-lite[fis] or a standalone types_aiobotocore_fis package, you have to explicitly specify client: FISClient type annotation.

All other type annotations are optional, as types should be discovered automatically. However, these type annotations can be helpful in your functions and methods.

Client usage example
from aioboto3.session import Session

from types_aiobotocore_fis.client import FISClient
from types_aiobotocore_fis.type_defs import CreateExperimentTemplateResponseTypeDef
from types_aiobotocore_fis.type_defs import CreateExperimentTemplateRequestRequestTypeDef


session = Session()

client: FISClient
async with session.client("fis") as client:  # (1)
    kwargs: CreateExperimentTemplateRequestRequestTypeDef = {...}  # (2)
    result: CreateExperimentTemplateResponseTypeDef = await client.create_experiment_template(**kwargs)  # (3)
  1. client: FISClient
  2. kwargs: CreateExperimentTemplateRequestRequestTypeDef
  3. result: CreateExperimentTemplateResponseTypeDef