Skip to main content

Type annotations for boto3.ConnectWisdomService 1.20.49 service generated by mypy-boto3-builder 6.4.2

Project description

mypy-boto3-wisdom

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

boto3.typed

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

Generated by mypy-boto3-builder 6.4.2.

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

See how it helps to find and fix potential bugs:

boto3-stubs demo

How to install

VSCode extension

Add AWS Boto3 extension to your VSCode and run AWS boto3: Quick Start command.

Click Modify and select boto3 common and ConnectWisdomService.

From PyPI with pip

Install boto3-stubs for ConnectWisdomService service.

# install with boto3 type annotations
python -m pip install 'boto3-stubs[wisdom]'

# Lite version does not provide session.client/resource overloads
# it is more RAM-friendly, but requires explicit type annotations
python -m pip install 'boto3-stubs-lite[wisdom]'

# standalone installation
python -m pip install mypy-boto3-wisdom

Usage

VSCode

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

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

PyCharm

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

Both type checking and auto-complete should work for ConnectWisdomService 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 supports mypy or pyright, everything should work.

mypy

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

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

pyright

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

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

Explicit type annotations

Client annotations

ConnectWisdomServiceClient provides annotations for boto3.client("wisdom").

from boto3.session import Session

from mypy_boto3_wisdom import ConnectWisdomServiceClient

client: ConnectWisdomServiceClient = Session().client("wisdom")

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

Paginators annotations

mypy_boto3_wisdom.paginator module contains type annotations for all paginators.

from boto3.session import Session

from mypy_boto3_wisdom import ConnectWisdomServiceClient
from mypy_boto3_wisdom.paginator import (
    ListAssistantAssociationsPaginator,
    ListAssistantsPaginator,
    ListContentsPaginator,
    ListKnowledgeBasesPaginator,
    QueryAssistantPaginator,
    SearchContentPaginator,
    SearchSessionsPaginator,
)

client: ConnectWisdomServiceClient = Session().client("wisdom")

# Explicit type annotations are optional here
# Type should be correctly discovered by mypy and IDEs
# VSCode requires explicit type annotations
list_assistant_associations_paginator: ListAssistantAssociationsPaginator = client.get_paginator("list_assistant_associations")
list_assistants_paginator: ListAssistantsPaginator = client.get_paginator("list_assistants")
list_contents_paginator: ListContentsPaginator = client.get_paginator("list_contents")
list_knowledge_bases_paginator: ListKnowledgeBasesPaginator = client.get_paginator("list_knowledge_bases")
query_assistant_paginator: QueryAssistantPaginator = client.get_paginator("query_assistant")
search_content_paginator: SearchContentPaginator = client.get_paginator("search_content")
search_sessions_paginator: SearchSessionsPaginator = client.get_paginator("search_sessions")

Literals

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

from mypy_boto3_wisdom.literals import (
    AssistantStatusType,
    AssistantTypeType,
    AssociationTypeType,
    ContentStatusType,
    FilterFieldType,
    FilterOperatorType,
    KnowledgeBaseStatusType,
    KnowledgeBaseTypeType,
    ListAssistantAssociationsPaginatorName,
    ListAssistantsPaginatorName,
    ListContentsPaginatorName,
    ListKnowledgeBasesPaginatorName,
    QueryAssistantPaginatorName,
    RelevanceLevelType,
    SearchContentPaginatorName,
    SearchSessionsPaginatorName,
    ServiceName,
    PaginatorName,
)

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

Typed dictionaries

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

from mypy_boto3_wisdom.type_defs import (
    AppIntegrationsConfigurationTypeDef,
    AssistantAssociationDataTypeDef,
    AssistantAssociationInputDataTypeDef,
    AssistantAssociationOutputDataTypeDef,
    AssistantAssociationSummaryTypeDef,
    AssistantDataTypeDef,
    AssistantSummaryTypeDef,
    ContentDataTypeDef,
    ContentReferenceTypeDef,
    ContentSummaryTypeDef,
    CreateAssistantAssociationRequestRequestTypeDef,
    CreateAssistantAssociationResponseTypeDef,
    CreateAssistantRequestRequestTypeDef,
    CreateAssistantResponseTypeDef,
    CreateContentRequestRequestTypeDef,
    CreateContentResponseTypeDef,
    CreateKnowledgeBaseRequestRequestTypeDef,
    CreateKnowledgeBaseResponseTypeDef,
    CreateSessionRequestRequestTypeDef,
    CreateSessionResponseTypeDef,
    DeleteAssistantAssociationRequestRequestTypeDef,
    DeleteAssistantRequestRequestTypeDef,
    DeleteContentRequestRequestTypeDef,
    DeleteKnowledgeBaseRequestRequestTypeDef,
    DocumentTextTypeDef,
    DocumentTypeDef,
    FilterTypeDef,
    GetAssistantAssociationRequestRequestTypeDef,
    GetAssistantAssociationResponseTypeDef,
    GetAssistantRequestRequestTypeDef,
    GetAssistantResponseTypeDef,
    GetContentRequestRequestTypeDef,
    GetContentResponseTypeDef,
    GetContentSummaryRequestRequestTypeDef,
    GetContentSummaryResponseTypeDef,
    GetKnowledgeBaseRequestRequestTypeDef,
    GetKnowledgeBaseResponseTypeDef,
    GetRecommendationsRequestRequestTypeDef,
    GetRecommendationsResponseTypeDef,
    GetSessionRequestRequestTypeDef,
    GetSessionResponseTypeDef,
    HighlightTypeDef,
    KnowledgeBaseAssociationDataTypeDef,
    KnowledgeBaseDataTypeDef,
    KnowledgeBaseSummaryTypeDef,
    ListAssistantAssociationsRequestRequestTypeDef,
    ListAssistantAssociationsResponseTypeDef,
    ListAssistantsRequestRequestTypeDef,
    ListAssistantsResponseTypeDef,
    ListContentsRequestRequestTypeDef,
    ListContentsResponseTypeDef,
    ListKnowledgeBasesRequestRequestTypeDef,
    ListKnowledgeBasesResponseTypeDef,
    ListTagsForResourceRequestRequestTypeDef,
    ListTagsForResourceResponseTypeDef,
    NotifyRecommendationsReceivedErrorTypeDef,
    NotifyRecommendationsReceivedRequestRequestTypeDef,
    NotifyRecommendationsReceivedResponseTypeDef,
    PaginatorConfigTypeDef,
    QueryAssistantRequestRequestTypeDef,
    QueryAssistantResponseTypeDef,
    RecommendationDataTypeDef,
    RemoveKnowledgeBaseTemplateUriRequestRequestTypeDef,
    RenderingConfigurationTypeDef,
    ResponseMetadataTypeDef,
    ResultDataTypeDef,
    SearchContentRequestRequestTypeDef,
    SearchContentResponseTypeDef,
    SearchExpressionTypeDef,
    SearchSessionsRequestRequestTypeDef,
    SearchSessionsResponseTypeDef,
    ServerSideEncryptionConfigurationTypeDef,
    SessionDataTypeDef,
    SessionSummaryTypeDef,
    SourceConfigurationTypeDef,
    StartContentUploadRequestRequestTypeDef,
    StartContentUploadResponseTypeDef,
    TagResourceRequestRequestTypeDef,
    UntagResourceRequestRequestTypeDef,
    UpdateContentRequestRequestTypeDef,
    UpdateContentResponseTypeDef,
    UpdateKnowledgeBaseTemplateUriRequestRequestTypeDef,
    UpdateKnowledgeBaseTemplateUriResponseTypeDef,
)

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

Versioning

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

Documentation

All type annotations can be found in mypy-boto3-wisdom 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-wisdom-1.20.49.tar.gz (18.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mypy_boto3_wisdom-1.20.49-py3-none-any.whl (26.8 kB view details)

Uploaded Python 3

File details

Details for the file mypy-boto3-wisdom-1.20.49.tar.gz.

File metadata

  • Download URL: mypy-boto3-wisdom-1.20.49.tar.gz
  • Upload date:
  • Size: 18.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for mypy-boto3-wisdom-1.20.49.tar.gz
Algorithm Hash digest
SHA256 7d0db93355432a6a367ef5ff60c380189e1a3f227064bd2f1c9801708e9021e2
MD5 92d86e743ec1642add806b142a9e1891
BLAKE2b-256 880623035fca42bfac356695f4745b52c0b88d9e6d39f6ed2505e37affe7ca57

See more details on using hashes here.

File details

Details for the file mypy_boto3_wisdom-1.20.49-py3-none-any.whl.

File metadata

  • Download URL: mypy_boto3_wisdom-1.20.49-py3-none-any.whl
  • Upload date:
  • Size: 26.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for mypy_boto3_wisdom-1.20.49-py3-none-any.whl
Algorithm Hash digest
SHA256 a855b93824d5a946de5221dc2a0dfc8a017ac2ed900b067d3e069dbd0af9f2a3
MD5 5148f8797a5474a4814a80219e6ed229
BLAKE2b-256 64e8aaf7fc620551d787ea770ef16aad998571f42a2521c7b654bdf5cd722788

See more details on using hashes here.

Supported by

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