Skip to content

Examples#

Index > FIS > Examples

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

Client#

Implicit type annotations#

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

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

# FISClient usage example

from boto3.session import Session


session = Session()

client = session.client("fis")  # (1)
result = client.create_experiment_template()  # (2)
  1. client: FISClient
  2. result: CreateExperimentTemplateResponseTypeDef
# ListActionsPaginator usage example

from boto3.session import Session


session = Session()
client = session.client("fis")  # (1)

paginator = client.get_paginator("list_actions")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: FISClient
  2. paginator: ListActionsPaginator
  3. item: ListActionsResponseTypeDef

Explicit type annotations#

With types-boto3-lite[fis] or a standalone types_boto3_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.

# FISClient usage example with type annotations

from boto3.session import Session

from types_boto3_fis.client import FISClient
from types_boto3_fis.type_defs import CreateExperimentTemplateResponseTypeDef
from types_boto3_fis.type_defs import CreateExperimentTemplateRequestTypeDef


session = Session()

client: FISClient = session.client("fis")

kwargs: CreateExperimentTemplateRequestTypeDef = {...}
result: CreateExperimentTemplateResponseTypeDef = client.create_experiment_template(**kwargs)
# ListActionsPaginator usage example with type annotations

from boto3.session import Session

from types_boto3_fis.client import FISClient
from types_boto3_fis.paginator import ListActionsPaginator
from types_boto3_fis.type_defs import ListActionsResponseTypeDef


session = Session()
client: FISClient = session.client("fis")

paginator: ListActionsPaginator = client.get_paginator("list_actions")
for item in paginator.paginate(...):
    item: ListActionsResponseTypeDef
    print(item)