Examples#
Index > LicenseManager > Examples
Auto-generated documentation for LicenseManager type annotations stubs module types-boto3-license-manager.
Client#
Implicit type annotations#
Can be used with types-boto3[license-manager]
package installed.
Write your LicenseManager
code as usual,
type checking and code completion should work out of the box.
Client method usage example#
# LicenseManagerClient usage example
from boto3.session import Session
session = Session()
client = session.client("license-manager") # (1)
result = client.accept_grant() # (2)
- client: LicenseManagerClient
- result: AcceptGrantResponseTypeDef
Paginator usage example#
# ListAssociationsForLicenseConfigurationPaginator usage example
from boto3.session import Session
session = Session()
client = session.client("license-manager") # (1)
paginator = client.get_paginator("list_associations_for_license_configuration") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: LicenseManagerClient
- paginator: ListAssociationsForLicenseConfigurationPaginator
- item: ListAssociationsForLicenseConfigurationResponseTypeDef
Explicit type annotations#
With types-boto3-lite[license-manager]
or a standalone types_boto3_license_manager
package, you have to explicitly specify client: LicenseManagerClient
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#
# LicenseManagerClient usage example with type annotations
from boto3.session import Session
from types_boto3_license_manager.client import LicenseManagerClient
from types_boto3_license_manager.type_defs import AcceptGrantResponseTypeDef
from types_boto3_license_manager.type_defs import AcceptGrantRequestTypeDef
session = Session()
client: LicenseManagerClient = session.client("license-manager")
kwargs: AcceptGrantRequestTypeDef = {...}
result: AcceptGrantResponseTypeDef = client.accept_grant(**kwargs)
Paginator usage example#
# ListAssociationsForLicenseConfigurationPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_license_manager.client import LicenseManagerClient
from types_boto3_license_manager.paginator import ListAssociationsForLicenseConfigurationPaginator
from types_boto3_license_manager.type_defs import ListAssociationsForLicenseConfigurationResponseTypeDef
session = Session()
client: LicenseManagerClient = session.client("license-manager")
paginator: ListAssociationsForLicenseConfigurationPaginator = client.get_paginator("list_associations_for_license_configuration")
for item in paginator.paginate(...):
item: ListAssociationsForLicenseConfigurationResponseTypeDef
print(item)