Skip to content

Examples#

Index > FMS > Examples

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

Client#

Implicit type annotations#

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

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

Client method usage example#

# FMSClient usage example

from boto3.session import Session


session = Session()

client = session.client("fms")  # (1)
result = client.associate_admin_account()  # (2)
  1. client: FMSClient
  2. result: EmptyResponseMetadataTypeDef

Paginator usage example#

# ListAdminAccountsForOrganizationPaginator usage example

from boto3.session import Session


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

paginator = client.get_paginator("list_admin_accounts_for_organization")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: FMSClient
  2. paginator: ListAdminAccountsForOrganizationPaginator
  3. item: ListAdminAccountsForOrganizationResponseTypeDef

Explicit type annotations#

With types-boto3-lite[fms] or a standalone types_boto3_fms package, you have to explicitly specify client: FMSClient 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 method usage example#

# FMSClient usage example with type annotations

from boto3.session import Session

from types_boto3_fms.client import FMSClient
from types_boto3_fms.type_defs import EmptyResponseMetadataTypeDef
from types_boto3_fms.type_defs import AssociateAdminAccountRequestTypeDef


session = Session()

client: FMSClient = session.client("fms")

kwargs: AssociateAdminAccountRequestTypeDef = {...}
result: EmptyResponseMetadataTypeDef = client.associate_admin_account(**kwargs)

Paginator usage example#

# ListAdminAccountsForOrganizationPaginator usage example with type annotations

from boto3.session import Session

from types_boto3_fms.client import FMSClient
from types_boto3_fms.paginator import ListAdminAccountsForOrganizationPaginator
from types_boto3_fms.type_defs import ListAdminAccountsForOrganizationResponseTypeDef


session = Session()
client: FMSClient = session.client("fms")

paginator: ListAdminAccountsForOrganizationPaginator = client.get_paginator("list_admin_accounts_for_organization")
for item in paginator.paginate(...):
    item: ListAdminAccountsForOrganizationResponseTypeDef
    print(item)