Skip to main content

Type annotations for boto3.Chime 1.17.101 service, generated by mypy-boto3-buider 4.20.0

Project description

mypy-boto3-chime

PyPI - mypy-boto3-chime PyPI - Python Version Docs PyPI - Downloads

boto3.typed

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

Generated by mypy-boto3-buider 4.20.0.

More information can be found on boto3-stubs page and in mypy-boto3-chime docs

See how it helps to find and fix potential bugs:

boto3-stubs demo

How to install

Install boto3-stubs for Chime service.

python -m pip install boto3-stubs[chime]

Usage

VSCode

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

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

PyCharm

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

Both type checking and auto-complete should work for Chime 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[chime] in your environment: python -m pip install 'boto3-stubs[chime]'
  • Run mypy as usual

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

pyright

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

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

Explicit type annotations

Client annotations

ChimeClient provides annotations for boto3.client("chime").

import boto3

from mypy_boto3_chime import ChimeClient

client: ChimeClient = boto3.client("chime")

# 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: ChimeClient = session.client("chime")

Paginators annotations

mypy_boto3_chime.paginator module contains type annotations for all paginators.

from mypy_boto3_chime import ChimeClient
from mypy_boto3_chime.paginator import (
    ListAccountsPaginator,
    ListUsersPaginator,
)

client: ChimeClient = boto3.client("chime")

# Explicit type annotations are optional here
# Type should be correctly discovered by mypy and IDEs
# VSCode requires explicit type annotations
list_accounts_paginator: ListAccountsPaginator = client.get_paginator("list_accounts")
list_users_paginator: ListUsersPaginator = client.get_paginator("list_users")

Literals

mypy_boto3_chime.literals module contains literals extracted from shapes that can be used in user code for type checking.

from mypy_boto3_chime.literals import (
    AccountTypeType,
    AppInstanceDataTypeType,
    BotTypeType,
    CallingNameStatusType,
    CapabilityType,
    ChannelMembershipTypeType,
    ChannelMessagePersistenceTypeType,
    ChannelMessageTypeType,
    ChannelModeType,
    ChannelPrivacyType,
    EmailStatusType,
    ErrorCodeType,
    GeoMatchLevelType,
    InviteStatusType,
    LicenseType,
    ListAccountsPaginatorName,
    ListUsersPaginatorName,
    MemberTypeType,
    NotificationTargetType,
    NumberSelectionBehaviorType,
    OrderedPhoneNumberStatusType,
    OriginationRouteProtocolType,
    PhoneNumberAssociationNameType,
    PhoneNumberOrderStatusType,
    PhoneNumberProductTypeType,
    PhoneNumberStatusType,
    PhoneNumberTypeType,
    ProxySessionStatusType,
    RegistrationStatusType,
    RoomMembershipRoleType,
    SipRuleTriggerTypeType,
    SortOrderType,
    UserTypeType,
    VoiceConnectorAwsRegionType,
)

def check_value(value: AccountTypeType) -> bool:
    ...

Typed dictionaries

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

from mypy_boto3_chime.type_defs import (
    AccountSettingsTypeDef,
    AccountTypeDef,
    AlexaForBusinessMetadataTypeDef,
    AppInstanceAdminSummaryTypeDef,
    AppInstanceAdminTypeDef,
    AppInstanceRetentionSettingsTypeDef,
    AppInstanceStreamingConfigurationTypeDef,
    AppInstanceSummaryTypeDef,
    AppInstanceTypeDef,
    AppInstanceUserMembershipSummaryTypeDef,
    AppInstanceUserSummaryTypeDef,
    AppInstanceUserTypeDef,
    AssociatePhoneNumberWithUserRequestTypeDef,
    AssociatePhoneNumbersWithVoiceConnectorGroupRequestTypeDef,
    AssociatePhoneNumbersWithVoiceConnectorGroupResponseResponseTypeDef,
    AssociatePhoneNumbersWithVoiceConnectorRequestTypeDef,
    AssociatePhoneNumbersWithVoiceConnectorResponseResponseTypeDef,
    AssociateSigninDelegateGroupsWithAccountRequestTypeDef,
    AttendeeTypeDef,
    BatchChannelMembershipsTypeDef,
    BatchCreateAttendeeRequestTypeDef,
    BatchCreateAttendeeResponseResponseTypeDef,
    BatchCreateChannelMembershipErrorTypeDef,
    BatchCreateChannelMembershipRequestTypeDef,
    BatchCreateChannelMembershipResponseResponseTypeDef,
    BatchCreateRoomMembershipRequestTypeDef,
    BatchCreateRoomMembershipResponseResponseTypeDef,
    BatchDeletePhoneNumberRequestTypeDef,
    BatchDeletePhoneNumberResponseResponseTypeDef,
    BatchSuspendUserRequestTypeDef,
    BatchSuspendUserResponseResponseTypeDef,
    BatchUnsuspendUserRequestTypeDef,
    BatchUnsuspendUserResponseResponseTypeDef,
    BatchUpdatePhoneNumberRequestTypeDef,
    BatchUpdatePhoneNumberResponseResponseTypeDef,
    BatchUpdateUserRequestTypeDef,
    BatchUpdateUserResponseResponseTypeDef,
    BotTypeDef,
    BusinessCallingSettingsTypeDef,
    ChannelBanSummaryTypeDef,
    ChannelBanTypeDef,
    ChannelMembershipForAppInstanceUserSummaryTypeDef,
    ChannelMembershipSummaryTypeDef,
    ChannelMembershipTypeDef,
    ChannelMessageSummaryTypeDef,
    ChannelMessageTypeDef,
    ChannelModeratedByAppInstanceUserSummaryTypeDef,
    ChannelModeratorSummaryTypeDef,
    ChannelModeratorTypeDef,
    ChannelRetentionSettingsTypeDef,
    ChannelSummaryTypeDef,
    ChannelTypeDef,
    ConversationRetentionSettingsTypeDef,
    CreateAccountRequestTypeDef,
    CreateAccountResponseResponseTypeDef,
    CreateAppInstanceAdminRequestTypeDef,
    CreateAppInstanceAdminResponseResponseTypeDef,
    CreateAppInstanceRequestTypeDef,
    CreateAppInstanceResponseResponseTypeDef,
    CreateAppInstanceUserRequestTypeDef,
    CreateAppInstanceUserResponseResponseTypeDef,
    CreateAttendeeErrorTypeDef,
    CreateAttendeeRequestItemTypeDef,
    CreateAttendeeRequestTypeDef,
    CreateAttendeeResponseResponseTypeDef,
    CreateBotRequestTypeDef,
    CreateBotResponseResponseTypeDef,
    CreateChannelBanRequestTypeDef,
    CreateChannelBanResponseResponseTypeDef,
    CreateChannelMembershipRequestTypeDef,
    CreateChannelMembershipResponseResponseTypeDef,
    CreateChannelModeratorRequestTypeDef,
    CreateChannelModeratorResponseResponseTypeDef,
    CreateChannelRequestTypeDef,
    CreateChannelResponseResponseTypeDef,
    CreateMeetingDialOutRequestTypeDef,
    CreateMeetingDialOutResponseResponseTypeDef,
    CreateMeetingRequestTypeDef,
    CreateMeetingResponseResponseTypeDef,
    CreateMeetingWithAttendeesRequestTypeDef,
    CreateMeetingWithAttendeesResponseResponseTypeDef,
    CreatePhoneNumberOrderRequestTypeDef,
    CreatePhoneNumberOrderResponseResponseTypeDef,
    CreateProxySessionRequestTypeDef,
    CreateProxySessionResponseResponseTypeDef,
    CreateRoomMembershipRequestTypeDef,
    CreateRoomMembershipResponseResponseTypeDef,
    CreateRoomRequestTypeDef,
    CreateRoomResponseResponseTypeDef,
    CreateSipMediaApplicationCallRequestTypeDef,
    CreateSipMediaApplicationCallResponseResponseTypeDef,
    CreateSipMediaApplicationRequestTypeDef,
    CreateSipMediaApplicationResponseResponseTypeDef,
    CreateSipRuleRequestTypeDef,
    CreateSipRuleResponseResponseTypeDef,
    CreateUserRequestTypeDef,
    CreateUserResponseResponseTypeDef,
    CreateVoiceConnectorGroupRequestTypeDef,
    CreateVoiceConnectorGroupResponseResponseTypeDef,
    CreateVoiceConnectorRequestTypeDef,
    CreateVoiceConnectorResponseResponseTypeDef,
    CredentialTypeDef,
    DNISEmergencyCallingConfigurationTypeDef,
    DeleteAccountRequestTypeDef,
    DeleteAppInstanceAdminRequestTypeDef,
    DeleteAppInstanceRequestTypeDef,
    DeleteAppInstanceStreamingConfigurationsRequestTypeDef,
    DeleteAppInstanceUserRequestTypeDef,
    DeleteAttendeeRequestTypeDef,
    DeleteChannelBanRequestTypeDef,
    DeleteChannelMembershipRequestTypeDef,
    DeleteChannelMessageRequestTypeDef,
    DeleteChannelModeratorRequestTypeDef,
    DeleteChannelRequestTypeDef,
    DeleteEventsConfigurationRequestTypeDef,
    DeleteMeetingRequestTypeDef,
    DeletePhoneNumberRequestTypeDef,
    DeleteProxySessionRequestTypeDef,
    DeleteRoomMembershipRequestTypeDef,
    DeleteRoomRequestTypeDef,
    DeleteSipMediaApplicationRequestTypeDef,
    DeleteSipRuleRequestTypeDef,
    DeleteVoiceConnectorEmergencyCallingConfigurationRequestTypeDef,
    DeleteVoiceConnectorGroupRequestTypeDef,
    DeleteVoiceConnectorOriginationRequestTypeDef,
    DeleteVoiceConnectorProxyRequestTypeDef,
    DeleteVoiceConnectorRequestTypeDef,
    DeleteVoiceConnectorStreamingConfigurationRequestTypeDef,
    DeleteVoiceConnectorTerminationCredentialsRequestTypeDef,
    DeleteVoiceConnectorTerminationRequestTypeDef,
    DescribeAppInstanceAdminRequestTypeDef,
    DescribeAppInstanceAdminResponseResponseTypeDef,
    DescribeAppInstanceRequestTypeDef,
    DescribeAppInstanceResponseResponseTypeDef,
    DescribeAppInstanceUserRequestTypeDef,
    DescribeAppInstanceUserResponseResponseTypeDef,
    DescribeChannelBanRequestTypeDef,
    DescribeChannelBanResponseResponseTypeDef,
    DescribeChannelMembershipForAppInstanceUserRequestTypeDef,
    DescribeChannelMembershipForAppInstanceUserResponseResponseTypeDef,
    DescribeChannelMembershipRequestTypeDef,
    DescribeChannelMembershipResponseResponseTypeDef,
    DescribeChannelModeratedByAppInstanceUserRequestTypeDef,
    DescribeChannelModeratedByAppInstanceUserResponseResponseTypeDef,
    DescribeChannelModeratorRequestTypeDef,
    DescribeChannelModeratorResponseResponseTypeDef,
    DescribeChannelRequestTypeDef,
    DescribeChannelResponseResponseTypeDef,
    DisassociatePhoneNumberFromUserRequestTypeDef,
    DisassociatePhoneNumbersFromVoiceConnectorGroupRequestTypeDef,
    DisassociatePhoneNumbersFromVoiceConnectorGroupResponseResponseTypeDef,
    DisassociatePhoneNumbersFromVoiceConnectorRequestTypeDef,
    DisassociatePhoneNumbersFromVoiceConnectorResponseResponseTypeDef,
    DisassociateSigninDelegateGroupsFromAccountRequestTypeDef,
    EmergencyCallingConfigurationTypeDef,
    EventsConfigurationTypeDef,
    GeoMatchParamsTypeDef,
    GetAccountRequestTypeDef,
    GetAccountResponseResponseTypeDef,
    GetAccountSettingsRequestTypeDef,
    GetAccountSettingsResponseResponseTypeDef,
    GetAppInstanceRetentionSettingsRequestTypeDef,
    GetAppInstanceRetentionSettingsResponseResponseTypeDef,
    GetAppInstanceStreamingConfigurationsRequestTypeDef,
    GetAppInstanceStreamingConfigurationsResponseResponseTypeDef,
    GetAttendeeRequestTypeDef,
    GetAttendeeResponseResponseTypeDef,
    GetBotRequestTypeDef,
    GetBotResponseResponseTypeDef,
    GetChannelMessageRequestTypeDef,
    GetChannelMessageResponseResponseTypeDef,
    GetEventsConfigurationRequestTypeDef,
    GetEventsConfigurationResponseResponseTypeDef,
    GetGlobalSettingsResponseResponseTypeDef,
    GetMeetingRequestTypeDef,
    GetMeetingResponseResponseTypeDef,
    GetMessagingSessionEndpointResponseResponseTypeDef,
    GetPhoneNumberOrderRequestTypeDef,
    GetPhoneNumberOrderResponseResponseTypeDef,
    GetPhoneNumberRequestTypeDef,
    GetPhoneNumberResponseResponseTypeDef,
    GetPhoneNumberSettingsResponseResponseTypeDef,
    GetProxySessionRequestTypeDef,
    GetProxySessionResponseResponseTypeDef,
    GetRetentionSettingsRequestTypeDef,
    GetRetentionSettingsResponseResponseTypeDef,
    GetRoomRequestTypeDef,
    GetRoomResponseResponseTypeDef,
    GetSipMediaApplicationLoggingConfigurationRequestTypeDef,
    GetSipMediaApplicationLoggingConfigurationResponseResponseTypeDef,
    GetSipMediaApplicationRequestTypeDef,
    GetSipMediaApplicationResponseResponseTypeDef,
    GetSipRuleRequestTypeDef,
    GetSipRuleResponseResponseTypeDef,
    GetUserRequestTypeDef,
    GetUserResponseResponseTypeDef,
    GetUserSettingsRequestTypeDef,
    GetUserSettingsResponseResponseTypeDef,
    GetVoiceConnectorEmergencyCallingConfigurationRequestTypeDef,
    GetVoiceConnectorEmergencyCallingConfigurationResponseResponseTypeDef,
    GetVoiceConnectorGroupRequestTypeDef,
    GetVoiceConnectorGroupResponseResponseTypeDef,
    GetVoiceConnectorLoggingConfigurationRequestTypeDef,
    GetVoiceConnectorLoggingConfigurationResponseResponseTypeDef,
    GetVoiceConnectorOriginationRequestTypeDef,
    GetVoiceConnectorOriginationResponseResponseTypeDef,
    GetVoiceConnectorProxyRequestTypeDef,
    GetVoiceConnectorProxyResponseResponseTypeDef,
    GetVoiceConnectorRequestTypeDef,
    GetVoiceConnectorResponseResponseTypeDef,
    GetVoiceConnectorStreamingConfigurationRequestTypeDef,
    GetVoiceConnectorStreamingConfigurationResponseResponseTypeDef,
    GetVoiceConnectorTerminationHealthRequestTypeDef,
    GetVoiceConnectorTerminationHealthResponseResponseTypeDef,
    GetVoiceConnectorTerminationRequestTypeDef,
    GetVoiceConnectorTerminationResponseResponseTypeDef,
    IdentityTypeDef,
    InviteTypeDef,
    InviteUsersRequestTypeDef,
    InviteUsersResponseResponseTypeDef,
    ListAccountsRequestTypeDef,
    ListAccountsResponseResponseTypeDef,
    ListAppInstanceAdminsRequestTypeDef,
    ListAppInstanceAdminsResponseResponseTypeDef,
    ListAppInstanceUsersRequestTypeDef,
    ListAppInstanceUsersResponseResponseTypeDef,
    ListAppInstancesRequestTypeDef,
    ListAppInstancesResponseResponseTypeDef,
    ListAttendeeTagsRequestTypeDef,
    ListAttendeeTagsResponseResponseTypeDef,
    ListAttendeesRequestTypeDef,
    ListAttendeesResponseResponseTypeDef,
    ListBotsRequestTypeDef,
    ListBotsResponseResponseTypeDef,
    ListChannelBansRequestTypeDef,
    ListChannelBansResponseResponseTypeDef,
    ListChannelMembershipsForAppInstanceUserRequestTypeDef,
    ListChannelMembershipsForAppInstanceUserResponseResponseTypeDef,
    ListChannelMembershipsRequestTypeDef,
    ListChannelMembershipsResponseResponseTypeDef,
    ListChannelMessagesRequestTypeDef,
    ListChannelMessagesResponseResponseTypeDef,
    ListChannelModeratorsRequestTypeDef,
    ListChannelModeratorsResponseResponseTypeDef,
    ListChannelsModeratedByAppInstanceUserRequestTypeDef,
    ListChannelsModeratedByAppInstanceUserResponseResponseTypeDef,
    ListChannelsRequestTypeDef,
    ListChannelsResponseResponseTypeDef,
    ListMeetingTagsRequestTypeDef,
    ListMeetingTagsResponseResponseTypeDef,
    ListMeetingsRequestTypeDef,
    ListMeetingsResponseResponseTypeDef,
    ListPhoneNumberOrdersRequestTypeDef,
    ListPhoneNumberOrdersResponseResponseTypeDef,
    ListPhoneNumbersRequestTypeDef,
    ListPhoneNumbersResponseResponseTypeDef,
    ListProxySessionsRequestTypeDef,
    ListProxySessionsResponseResponseTypeDef,
    ListRoomMembershipsRequestTypeDef,
    ListRoomMembershipsResponseResponseTypeDef,
    ListRoomsRequestTypeDef,
    ListRoomsResponseResponseTypeDef,
    ListSipMediaApplicationsRequestTypeDef,
    ListSipMediaApplicationsResponseResponseTypeDef,
    ListSipRulesRequestTypeDef,
    ListSipRulesResponseResponseTypeDef,
    ListSupportedPhoneNumberCountriesRequestTypeDef,
    ListSupportedPhoneNumberCountriesResponseResponseTypeDef,
    ListTagsForResourceRequestTypeDef,
    ListTagsForResourceResponseResponseTypeDef,
    ListUsersRequestTypeDef,
    ListUsersResponseResponseTypeDef,
    ListVoiceConnectorGroupsRequestTypeDef,
    ListVoiceConnectorGroupsResponseResponseTypeDef,
    ListVoiceConnectorTerminationCredentialsRequestTypeDef,
    ListVoiceConnectorTerminationCredentialsResponseResponseTypeDef,
    ListVoiceConnectorsRequestTypeDef,
    ListVoiceConnectorsResponseResponseTypeDef,
    LoggingConfigurationTypeDef,
    LogoutUserRequestTypeDef,
    MediaPlacementTypeDef,
    MeetingNotificationConfigurationTypeDef,
    MeetingTypeDef,
    MemberErrorTypeDef,
    MemberTypeDef,
    MembershipItemTypeDef,
    MessagingSessionEndpointTypeDef,
    OrderedPhoneNumberTypeDef,
    OriginationRouteTypeDef,
    OriginationTypeDef,
    PaginatorConfigTypeDef,
    ParticipantTypeDef,
    PhoneNumberAssociationTypeDef,
    PhoneNumberCapabilitiesTypeDef,
    PhoneNumberCountryTypeDef,
    PhoneNumberErrorTypeDef,
    PhoneNumberOrderTypeDef,
    PhoneNumberTypeDef,
    ProxySessionTypeDef,
    ProxyTypeDef,
    PutAppInstanceRetentionSettingsRequestTypeDef,
    PutAppInstanceRetentionSettingsResponseResponseTypeDef,
    PutAppInstanceStreamingConfigurationsRequestTypeDef,
    PutAppInstanceStreamingConfigurationsResponseResponseTypeDef,
    PutEventsConfigurationRequestTypeDef,
    PutEventsConfigurationResponseResponseTypeDef,
    PutRetentionSettingsRequestTypeDef,
    PutRetentionSettingsResponseResponseTypeDef,
    PutSipMediaApplicationLoggingConfigurationRequestTypeDef,
    PutSipMediaApplicationLoggingConfigurationResponseResponseTypeDef,
    PutVoiceConnectorEmergencyCallingConfigurationRequestTypeDef,
    PutVoiceConnectorEmergencyCallingConfigurationResponseResponseTypeDef,
    PutVoiceConnectorLoggingConfigurationRequestTypeDef,
    PutVoiceConnectorLoggingConfigurationResponseResponseTypeDef,
    PutVoiceConnectorOriginationRequestTypeDef,
    PutVoiceConnectorOriginationResponseResponseTypeDef,
    PutVoiceConnectorProxyRequestTypeDef,
    PutVoiceConnectorProxyResponseResponseTypeDef,
    PutVoiceConnectorStreamingConfigurationRequestTypeDef,
    PutVoiceConnectorStreamingConfigurationResponseResponseTypeDef,
    PutVoiceConnectorTerminationCredentialsRequestTypeDef,
    PutVoiceConnectorTerminationRequestTypeDef,
    PutVoiceConnectorTerminationResponseResponseTypeDef,
    RedactChannelMessageRequestTypeDef,
    RedactChannelMessageResponseResponseTypeDef,
    RedactConversationMessageRequestTypeDef,
    RedactRoomMessageRequestTypeDef,
    RegenerateSecurityTokenRequestTypeDef,
    RegenerateSecurityTokenResponseResponseTypeDef,
    ResetPersonalPINRequestTypeDef,
    ResetPersonalPINResponseResponseTypeDef,
    ResponseMetadataTypeDef,
    RestorePhoneNumberRequestTypeDef,
    RestorePhoneNumberResponseResponseTypeDef,
    RetentionSettingsTypeDef,
    RoomMembershipTypeDef,
    RoomRetentionSettingsTypeDef,
    RoomTypeDef,
    SearchAvailablePhoneNumbersRequestTypeDef,
    SearchAvailablePhoneNumbersResponseResponseTypeDef,
    SendChannelMessageRequestTypeDef,
    SendChannelMessageResponseResponseTypeDef,
    SigninDelegateGroupTypeDef,
    SipMediaApplicationCallTypeDef,
    SipMediaApplicationEndpointTypeDef,
    SipMediaApplicationLoggingConfigurationTypeDef,
    SipMediaApplicationTypeDef,
    SipRuleTargetApplicationTypeDef,
    SipRuleTypeDef,
    StreamingConfigurationTypeDef,
    StreamingNotificationTargetTypeDef,
    TagAttendeeRequestTypeDef,
    TagMeetingRequestTypeDef,
    TagResourceRequestTypeDef,
    TagTypeDef,
    TelephonySettingsTypeDef,
    TerminationHealthTypeDef,
    TerminationTypeDef,
    UntagAttendeeRequestTypeDef,
    UntagMeetingRequestTypeDef,
    UntagResourceRequestTypeDef,
    UpdateAccountRequestTypeDef,
    UpdateAccountResponseResponseTypeDef,
    UpdateAccountSettingsRequestTypeDef,
    UpdateAppInstanceRequestTypeDef,
    UpdateAppInstanceResponseResponseTypeDef,
    UpdateAppInstanceUserRequestTypeDef,
    UpdateAppInstanceUserResponseResponseTypeDef,
    UpdateBotRequestTypeDef,
    UpdateBotResponseResponseTypeDef,
    UpdateChannelMessageRequestTypeDef,
    UpdateChannelMessageResponseResponseTypeDef,
    UpdateChannelReadMarkerRequestTypeDef,
    UpdateChannelReadMarkerResponseResponseTypeDef,
    UpdateChannelRequestTypeDef,
    UpdateChannelResponseResponseTypeDef,
    UpdateGlobalSettingsRequestTypeDef,
    UpdatePhoneNumberRequestItemTypeDef,
    UpdatePhoneNumberRequestTypeDef,
    UpdatePhoneNumberResponseResponseTypeDef,
    UpdatePhoneNumberSettingsRequestTypeDef,
    UpdateProxySessionRequestTypeDef,
    UpdateProxySessionResponseResponseTypeDef,
    UpdateRoomMembershipRequestTypeDef,
    UpdateRoomMembershipResponseResponseTypeDef,
    UpdateRoomRequestTypeDef,
    UpdateRoomResponseResponseTypeDef,
    UpdateSipMediaApplicationCallRequestTypeDef,
    UpdateSipMediaApplicationCallResponseResponseTypeDef,
    UpdateSipMediaApplicationRequestTypeDef,
    UpdateSipMediaApplicationResponseResponseTypeDef,
    UpdateSipRuleRequestTypeDef,
    UpdateSipRuleResponseResponseTypeDef,
    UpdateUserRequestItemTypeDef,
    UpdateUserRequestTypeDef,
    UpdateUserResponseResponseTypeDef,
    UpdateUserSettingsRequestTypeDef,
    UpdateVoiceConnectorGroupRequestTypeDef,
    UpdateVoiceConnectorGroupResponseResponseTypeDef,
    UpdateVoiceConnectorRequestTypeDef,
    UpdateVoiceConnectorResponseResponseTypeDef,
    UserErrorTypeDef,
    UserSettingsTypeDef,
    UserTypeDef,
    VoiceConnectorGroupTypeDef,
    VoiceConnectorItemTypeDef,
    VoiceConnectorSettingsTypeDef,
    VoiceConnectorTypeDef,
)

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

Versioning

mypy-boto3-chime version is the same as related boto3 version and follows PEP 440 format.

Documentation

All type annotations can be found in mypy-boto3-chime docs

Support and contributing

This package is auto-generated. Please reports any bugs or request new features in mypy-boto3-builder repository.

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-chime-1.17.101.post1.tar.gz (58.5 kB view details)

Uploaded Source

Built Distribution

mypy_boto3_chime-1.17.101.post1-py3-none-any.whl (58.2 kB view details)

Uploaded Python 3

File details

Details for the file mypy-boto3-chime-1.17.101.post1.tar.gz.

File metadata

  • Download URL: mypy-boto3-chime-1.17.101.post1.tar.gz
  • Upload date:
  • Size: 58.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5

File hashes

Hashes for mypy-boto3-chime-1.17.101.post1.tar.gz
Algorithm Hash digest
SHA256 6f19099821860b979c904a9d17bca756c46231a0de7ec4ce2e804d1096ee21bd
MD5 516af93d11e657cc9645f499f2e6c910
BLAKE2b-256 f65294dfa6c3819a50bd3659d1fe1c51b9089394817624ab6770151e202f9f5a

See more details on using hashes here.

File details

Details for the file mypy_boto3_chime-1.17.101.post1-py3-none-any.whl.

File metadata

  • Download URL: mypy_boto3_chime-1.17.101.post1-py3-none-any.whl
  • Upload date:
  • Size: 58.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5

File hashes

Hashes for mypy_boto3_chime-1.17.101.post1-py3-none-any.whl
Algorithm Hash digest
SHA256 440ffd773a49f7582af51348ae84c8127b23530fcbcaf660e1c323db3298b05b
MD5 8b9c891a4ac745818dced9d263954ef7
BLAKE2b-256 977f39d5cc61d75a48a7a36156e7bd3b1782f0feaeb2008a1ef03650b5a4fb7c

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