Skip to main content

Type annotations for boto3.AlexaForBusiness 1.17.51 service, generated by mypy-boto3-buider 4.5.0

Project description

mypy-boto3-alexaforbusiness

PyPI - mypy-boto3-alexaforbusiness PyPI - Python Version Docs

boto3.typed

Type annotations for boto3.AlexaForBusiness 1.17.51 service compatible with VSCode, PyCharm, Emacs, Sublime Text, mypy, pyright and other tools.

Generated by mypy-boto3-buider 4.5.0.

More information can be found on boto3-stubs page.

See how it helps to find and fix potential bugs:

boto3-stubs demo

How to install

Install boto3-stubs for AlexaForBusiness service.

python -m pip install boto3-stubs[alexaforbusiness]

Usage

VSCode

  • Install Python extension
  • Install Pylance extension
  • Set Pylance as your Python Language Server
  • Install boto-stubs[alexaforbusiness] in your environment: python -m pip install 'boto3-stubs[alexaforbusiness]'

Both type checking and auto-complete should work for AlexaForBusiness service. No explicit type annotations required, write your boto3 code as usual.

PyCharm

  • Install boto-stubs[alexaforbusiness] in your environment: python -m pip install 'boto3-stubs[alexaforbusiness]'

Both type checking and auto-complete should work for AlexaForBusiness service. No explicit type annotations required, write your boto3 code as usual. Auto-complete can be slow on big projects or if you have a lot of installed boto3-stubs submodules.

Other IDEs

Not tested, but as long as your IDE support mypy or pyright, everything should work.

mypy

  • Install mypy: python -m pip install mypy
  • Install boto-stubs[alexaforbusiness] in your environment: python -m pip install 'boto3-stubs[alexaforbusiness]'
  • Run mypy as usual

Type checking should work for AlexaForBusiness service. No explicit type annotations required, write your boto3 code as usual.

pyright

  • Install pyright: yarn global add pyright
  • Install boto-stubs[alexaforbusiness] in your environment: python -m pip install 'boto3-stubs[alexaforbusiness]'
  • Optionally, you can install boto3-stubs to typings folder.

Type checking should work for AlexaForBusiness service. No explicit type annotations required, write your boto3 code as usual.

Explicit type annotations

Client annotations

AlexaForBusinessClient provides annotations for boto3.client("alexaforbusiness").

import boto3

from mypy_boto3_alexaforbusiness import AlexaForBusinessClient

client: AlexaForBusinessClient = boto3.client("alexaforbusiness")

# now client usage is checked by mypy and IDE should provide code auto-complete

# works for session as well
session = boto3.session.Session(region="us-west-1")
session_client: AlexaForBusinessClient = session.client("alexaforbusiness")

Paginators annotations

mypy_boto3_alexaforbusiness.paginator module contains type annotations for all paginators.

from mypy_boto3_alexaforbusiness import AlexaForBusinessClient
from mypy_boto3_alexaforbusiness.paginator import (
    ListBusinessReportSchedulesPaginator,
    ListConferenceProvidersPaginator,
    ListDeviceEventsPaginator,
    ListSkillsPaginator,
    ListSkillsStoreCategoriesPaginator,
    ListSkillsStoreSkillsByCategoryPaginator,
    ListSmartHomeAppliancesPaginator,
    ListTagsPaginator,
    SearchDevicesPaginator,
    SearchProfilesPaginator,
    SearchRoomsPaginator,
    SearchSkillGroupsPaginator,
    SearchUsersPaginator,
)

client: AlexaForBusinessClient = boto3.client("alexaforbusiness")

# Explicit type annotations are optional here
# Type should be correctly discovered by mypy and IDEs
# VSCode requires explicit type annotations
list_business_report_schedules_paginator: ListBusinessReportSchedulesPaginator = client.get_paginator("list_business_report_schedules")
list_conference_providers_paginator: ListConferenceProvidersPaginator = client.get_paginator("list_conference_providers")
list_device_events_paginator: ListDeviceEventsPaginator = client.get_paginator("list_device_events")
list_skills_paginator: ListSkillsPaginator = client.get_paginator("list_skills")
list_skills_store_categories_paginator: ListSkillsStoreCategoriesPaginator = client.get_paginator("list_skills_store_categories")
list_skills_store_skills_by_category_paginator: ListSkillsStoreSkillsByCategoryPaginator = client.get_paginator("list_skills_store_skills_by_category")
list_smart_home_appliances_paginator: ListSmartHomeAppliancesPaginator = client.get_paginator("list_smart_home_appliances")
list_tags_paginator: ListTagsPaginator = client.get_paginator("list_tags")
search_devices_paginator: SearchDevicesPaginator = client.get_paginator("search_devices")
search_profiles_paginator: SearchProfilesPaginator = client.get_paginator("search_profiles")
search_rooms_paginator: SearchRoomsPaginator = client.get_paginator("search_rooms")
search_skill_groups_paginator: SearchSkillGroupsPaginator = client.get_paginator("search_skill_groups")
search_users_paginator: SearchUsersPaginator = client.get_paginator("search_users")

Typed dictionations

mypy_boto3_alexaforbusiness.type_defs module contains structures and shapes assembled to typed dictionaries for additional type checking.

from mypy_boto3_alexaforbusiness.type_defs import (
    AddressBookDataTypeDef,
    AddressBookTypeDef,
    AudioTypeDef,
    BusinessReportContentRangeTypeDef,
    BusinessReportRecurrenceTypeDef,
    BusinessReportS3LocationTypeDef,
    BusinessReportScheduleTypeDef,
    BusinessReportTypeDef,
    CategoryTypeDef,
    ConferencePreferenceTypeDef,
    ConferenceProviderTypeDef,
    ContactDataTypeDef,
    ContactTypeDef,
    CreateEndOfMeetingReminderTypeDef,
    CreateInstantBookingTypeDef,
    CreateRequireCheckInTypeDef,
    DeveloperInfoTypeDef,
    DeviceDataTypeDef,
    DeviceEventTypeDef,
    DeviceNetworkProfileInfoTypeDef,
    DeviceStatusDetailTypeDef,
    DeviceStatusInfoTypeDef,
    DeviceTypeDef,
    EndOfMeetingReminderTypeDef,
    GatewayGroupSummaryTypeDef,
    GatewayGroupTypeDef,
    GatewaySummaryTypeDef,
    GatewayTypeDef,
    IPDialInTypeDef,
    InstantBookingTypeDef,
    MeetingRoomConfigurationTypeDef,
    MeetingSettingTypeDef,
    NetworkProfileDataTypeDef,
    NetworkProfileTypeDef,
    PSTNDialInTypeDef,
    PhoneNumberTypeDef,
    ProfileDataTypeDef,
    ProfileTypeDef,
    RequireCheckInTypeDef,
    RoomDataTypeDef,
    RoomSkillParameterTypeDef,
    RoomTypeDef,
    SipAddressTypeDef,
    SkillDetailsTypeDef,
    SkillGroupDataTypeDef,
    SkillGroupTypeDef,
    SkillSummaryTypeDef,
    SkillsStoreSkillTypeDef,
    SmartHomeApplianceTypeDef,
    SsmlTypeDef,
    TagTypeDef,
    TextTypeDef,
    UpdateEndOfMeetingReminderTypeDef,
    UpdateInstantBookingTypeDef,
    UpdateRequireCheckInTypeDef,
    UserDataTypeDef,
    ContentTypeDef,
    CreateAddressBookResponseTypeDef,
    CreateBusinessReportScheduleResponseTypeDef,
    CreateConferenceProviderResponseTypeDef,
    CreateContactResponseTypeDef,
    CreateGatewayGroupResponseTypeDef,
    CreateMeetingRoomConfigurationTypeDef,
    CreateNetworkProfileResponseTypeDef,
    CreateProfileResponseTypeDef,
    CreateRoomResponseTypeDef,
    CreateSkillGroupResponseTypeDef,
    CreateUserResponseTypeDef,
    FilterTypeDef,
    GetAddressBookResponseTypeDef,
    GetConferencePreferenceResponseTypeDef,
    GetConferenceProviderResponseTypeDef,
    GetContactResponseTypeDef,
    GetDeviceResponseTypeDef,
    GetGatewayGroupResponseTypeDef,
    GetGatewayResponseTypeDef,
    GetInvitationConfigurationResponseTypeDef,
    GetNetworkProfileResponseTypeDef,
    GetProfileResponseTypeDef,
    GetRoomResponseTypeDef,
    GetRoomSkillParameterResponseTypeDef,
    GetSkillGroupResponseTypeDef,
    ListBusinessReportSchedulesResponseTypeDef,
    ListConferenceProvidersResponseTypeDef,
    ListDeviceEventsResponseTypeDef,
    ListGatewayGroupsResponseTypeDef,
    ListGatewaysResponseTypeDef,
    ListSkillsResponseTypeDef,
    ListSkillsStoreCategoriesResponseTypeDef,
    ListSkillsStoreSkillsByCategoryResponseTypeDef,
    ListSmartHomeAppliancesResponseTypeDef,
    ListTagsResponseTypeDef,
    PaginatorConfigTypeDef,
    RegisterAVSDeviceResponseTypeDef,
    ResolveRoomResponseTypeDef,
    SearchAddressBooksResponseTypeDef,
    SearchContactsResponseTypeDef,
    SearchDevicesResponseTypeDef,
    SearchNetworkProfilesResponseTypeDef,
    SearchProfilesResponseTypeDef,
    SearchRoomsResponseTypeDef,
    SearchSkillGroupsResponseTypeDef,
    SearchUsersResponseTypeDef,
    SendAnnouncementResponseTypeDef,
    SortTypeDef,
    UpdateMeetingRoomConfigurationTypeDef,
)

def get_structure() -> AddressBookDataTypeDef:
    return {
      ...
    }

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mypy-boto3-alexaforbusiness-1.17.51.0.tar.gz (22.2 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file mypy-boto3-alexaforbusiness-1.17.51.0.tar.gz.

File metadata

  • Download URL: mypy-boto3-alexaforbusiness-1.17.51.0.tar.gz
  • Upload date:
  • Size: 22.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for mypy-boto3-alexaforbusiness-1.17.51.0.tar.gz
Algorithm Hash digest
SHA256 4d89649d2453ea8b1b40c8b6ada9922215f565510ab824a8ac1ded88e48d893d
MD5 6b1d86953a61d5aade3a75e655f52f17
BLAKE2b-256 ed60272a7034c03b591574d30687d5b3bd2c8fb3f1dd18b745a2985d1b2808d7

See more details on using hashes here.

File details

Details for the file mypy_boto3_alexaforbusiness-1.17.51.0-py3-none-any.whl.

File metadata

  • Download URL: mypy_boto3_alexaforbusiness-1.17.51.0-py3-none-any.whl
  • Upload date:
  • Size: 28.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for mypy_boto3_alexaforbusiness-1.17.51.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c1e4a5979b427fb2814e1c9532704bb33f378b416d85ceb7d48a580ba4e1c3b1
MD5 cd371ea5f475f4805e2e52f1964714c9
BLAKE2b-256 775a4f556f40e031eacd904283e8c254d94797079691dc517d2e19ddebd16661

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page