Skip to main content

Type annotations for aiobotocore.SNS 2.1.0 service generated by mypy-boto3-builder 6.4.2

Project description

mypy-boto3-sns

PyPI - types-aiobotocore-sns PyPI - Python Version Docs PyPI - Downloads

boto3.typed

Type annotations for boto3.SNS 1.20.47 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 types-aiobotocore-sns 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 SNS.

From PyPI with pip

Install types-aiobotocore for SNS service.

python -m pip install types-aiobotocore[sns]

Usage

VSCode

  • Install Python extension
  • Install Pylance extension
  • Set Pylance as your Python Language Server
  • Install types-aiobotocore[sns] in your environment: python -m pip install 'types-aiobotocore[sns]'

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

PyCharm

  • Install types-aiobotocore[sns] in your environment: python -m pip install 'types-aiobotocore[sns]'

Both type checking and auto-complete should work for SNS service. No explicit type annotations required, write your aiobotocore code as usual. Auto-complete can be slow on big projects or if you have a lot of installed types-aiobotocore 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 types-aiobotocore[sns] in your environment: python -m pip install 'types-aiobotocore[sns]'
  • Run mypy as usual

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

pyright

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

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

Explicit type annotations

Client annotations

SNSClient provides annotations for session.create_client("sns").

from aiobotocore.session import get_session

from types_aiobotocore_sns import SNSClient

session = get_session()
with async session.create_client("sns") as client:
    client: SNSClient
    # now client usage is checked by mypy and IDE should provide code auto-complete

Paginators annotations

types_aiobotocore_sns.paginator module contains type annotations for all paginators.

from aiobotocore.session import get_session

from types_aiobotocore_sns import SNSClient
from types_aiobotocore_sns.paginator import (
    ListEndpointsByPlatformApplicationPaginator,
    ListOriginationNumbersPaginator,
    ListPhoneNumbersOptedOutPaginator,
    ListPlatformApplicationsPaginator,
    ListSMSSandboxPhoneNumbersPaginator,
    ListSubscriptionsPaginator,
    ListSubscriptionsByTopicPaginator,
    ListTopicsPaginator,
)

session = get_session()
with async session.create_client("sns") as client:
    client: SNSClient

    # Explicit type annotations are optional here
    # Type should be correctly discovered by mypy and IDEs
    # VSCode requires explicit type annotations
        list_endpoints_by_platform_application_paginator: ListEndpointsByPlatformApplicationPaginator = client.get_paginator("list_endpoints_by_platform_application")
        list_origination_numbers_paginator: ListOriginationNumbersPaginator = client.get_paginator("list_origination_numbers")
        list_phone_numbers_opted_out_paginator: ListPhoneNumbersOptedOutPaginator = client.get_paginator("list_phone_numbers_opted_out")
        list_platform_applications_paginator: ListPlatformApplicationsPaginator = client.get_paginator("list_platform_applications")
        list_sms_sandbox_phone_numbers_paginator: ListSMSSandboxPhoneNumbersPaginator = client.get_paginator("list_sms_sandbox_phone_numbers")
        list_subscriptions_paginator: ListSubscriptionsPaginator = client.get_paginator("list_subscriptions")
        list_subscriptions_by_topic_paginator: ListSubscriptionsByTopicPaginator = client.get_paginator("list_subscriptions_by_topic")
        list_topics_paginator: ListTopicsPaginator = client.get_paginator("list_topics")
    ```




### Service Resource annotations

`SNSServiceResource` provides annotations for `aiobotocore.resource("sns")`.

```python
from aiobotocore.session import get_session

from types_aiobotocore_sns import SNSServiceResource

session = get_session()
with async session.resource("sns") as resource:
    resource: SNSServiceResource
    # now resource usage is checked by mypy and IDE should provide code auto-complete

Other resources annotations

types_aiobotocore_sns.service_resource module contains type annotations for all resources.

from aiobotocore.session import get_session

from types_aiobotocore_sns import SNSServiceResource
from types_aiobotocore_sns.service_resource import (
    PlatformApplication,
    PlatformEndpoint,
    Subscription,
    Topic,
)

session = get_session()
with async session.resource("sns") as resource:
    resource: SNSServiceResource

<a id="explicit-type-annotations-are-optional-here"></a>

# Explicit type annotations are optional here
<a id="type-should-be-correctly-discovered-by-mypy-and-ides"></a>

# Type should be correctly discovered by mypy and IDEs
    my_platform_application: PlatformApplication = resource.PlatformApplication(...)
    my_platform_endpoint: PlatformEndpoint = resource.PlatformEndpoint(...)
    my_subscription: Subscription = resource.Subscription(...)
    my_topic: Topic = resource.Topic(...)

Collections annotations

types_aiobotocore_sns.service_resource module contains type annotations for all SNSServiceResource collections.

from aiobotocore.session import get_session

from types_aiobotocore_sns import SNSServiceResource
from types_aiobotocore_sns.service_resource import (
    ServiceResourcePlatformApplicationsCollection,
    ServiceResourceSubscriptionsCollection,
    ServiceResourceTopicsCollection,
)

session = get_session()
with async session.resource("sns") as resource:
    resource: SNSServiceResource

<a id="explicit-type-annotations-are-optional-here"></a>

# Explicit type annotations are optional here
<a id="type-should-be-correctly-discovered-by-mypy-and-ides"></a>

# Type should be correctly discovered by mypy and IDEs
    platform_applications: sns_resources.ServiceResourcePlatformApplicationsCollection = resource.platform_applications
    subscriptions: sns_resources.ServiceResourceSubscriptionsCollection = resource.subscriptions
    topics: sns_resources.ServiceResourceTopicsCollection = resource.topics

Literals

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

from types_aiobotocore_sns.literals import (
    LanguageCodeStringType,
    ListEndpointsByPlatformApplicationPaginatorName,
    ListOriginationNumbersPaginatorName,
    ListPhoneNumbersOptedOutPaginatorName,
    ListPlatformApplicationsPaginatorName,
    ListSMSSandboxPhoneNumbersPaginatorName,
    ListSubscriptionsByTopicPaginatorName,
    ListSubscriptionsPaginatorName,
    ListTopicsPaginatorName,
    NumberCapabilityType,
    RouteTypeType,
    SMSSandboxPhoneNumberVerificationStatusType,
    ServiceName,
    PaginatorName,
)

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

Typed dictionaries

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

from types_aiobotocore_sns.type_defs import (
    AddPermissionInputRequestTypeDef,
    AddPermissionInputTopicTypeDef,
    BatchResultErrorEntryTypeDef,
    CheckIfPhoneNumberIsOptedOutInputRequestTypeDef,
    CheckIfPhoneNumberIsOptedOutResponseTypeDef,
    ConfirmSubscriptionInputRequestTypeDef,
    ConfirmSubscriptionInputTopicTypeDef,
    ConfirmSubscriptionResponseTypeDef,
    CreateEndpointResponseTypeDef,
    CreatePlatformApplicationInputRequestTypeDef,
    CreatePlatformApplicationInputServiceResourceTypeDef,
    CreatePlatformApplicationResponseTypeDef,
    CreatePlatformEndpointInputPlatformApplicationTypeDef,
    CreatePlatformEndpointInputRequestTypeDef,
    CreateSMSSandboxPhoneNumberInputRequestTypeDef,
    CreateTopicInputRequestTypeDef,
    CreateTopicInputServiceResourceTypeDef,
    CreateTopicResponseTypeDef,
    DeleteEndpointInputRequestTypeDef,
    DeletePlatformApplicationInputRequestTypeDef,
    DeleteSMSSandboxPhoneNumberInputRequestTypeDef,
    DeleteTopicInputRequestTypeDef,
    EndpointTypeDef,
    GetEndpointAttributesInputRequestTypeDef,
    GetEndpointAttributesResponseTypeDef,
    GetPlatformApplicationAttributesInputRequestTypeDef,
    GetPlatformApplicationAttributesResponseTypeDef,
    GetSMSAttributesInputRequestTypeDef,
    GetSMSAttributesResponseTypeDef,
    GetSMSSandboxAccountStatusResultTypeDef,
    GetSubscriptionAttributesInputRequestTypeDef,
    GetSubscriptionAttributesResponseTypeDef,
    GetTopicAttributesInputRequestTypeDef,
    GetTopicAttributesResponseTypeDef,
    ListEndpointsByPlatformApplicationInputRequestTypeDef,
    ListEndpointsByPlatformApplicationResponseTypeDef,
    ListOriginationNumbersRequestRequestTypeDef,
    ListOriginationNumbersResultTypeDef,
    ListPhoneNumbersOptedOutInputRequestTypeDef,
    ListPhoneNumbersOptedOutResponseTypeDef,
    ListPlatformApplicationsInputRequestTypeDef,
    ListPlatformApplicationsResponseTypeDef,
    ListSMSSandboxPhoneNumbersInputRequestTypeDef,
    ListSMSSandboxPhoneNumbersResultTypeDef,
    ListSubscriptionsByTopicInputRequestTypeDef,
    ListSubscriptionsByTopicResponseTypeDef,
    ListSubscriptionsInputRequestTypeDef,
    ListSubscriptionsResponseTypeDef,
    ListTagsForResourceRequestRequestTypeDef,
    ListTagsForResourceResponseTypeDef,
    ListTopicsInputRequestTypeDef,
    ListTopicsResponseTypeDef,
    MessageAttributeValueTypeDef,
    OptInPhoneNumberInputRequestTypeDef,
    PaginatorConfigTypeDef,
    PhoneNumberInformationTypeDef,
    PlatformApplicationTypeDef,
    PublishBatchInputRequestTypeDef,
    PublishBatchRequestEntryTypeDef,
    PublishBatchResponseTypeDef,
    PublishBatchResultEntryTypeDef,
    PublishInputPlatformEndpointTypeDef,
    PublishInputRequestTypeDef,
    PublishInputTopicTypeDef,
    PublishResponseTypeDef,
    RemovePermissionInputRequestTypeDef,
    RemovePermissionInputTopicTypeDef,
    ResponseMetadataTypeDef,
    SMSSandboxPhoneNumberTypeDef,
    ServiceResourcePlatformApplicationRequestTypeDef,
    ServiceResourcePlatformEndpointRequestTypeDef,
    ServiceResourceSubscriptionRequestTypeDef,
    ServiceResourceTopicRequestTypeDef,
    SetEndpointAttributesInputPlatformEndpointTypeDef,
    SetEndpointAttributesInputRequestTypeDef,
    SetPlatformApplicationAttributesInputPlatformApplicationTypeDef,
    SetPlatformApplicationAttributesInputRequestTypeDef,
    SetSMSAttributesInputRequestTypeDef,
    SetSubscriptionAttributesInputRequestTypeDef,
    SetSubscriptionAttributesInputSubscriptionTypeDef,
    SetTopicAttributesInputRequestTypeDef,
    SetTopicAttributesInputTopicTypeDef,
    SubscribeInputRequestTypeDef,
    SubscribeInputTopicTypeDef,
    SubscribeResponseTypeDef,
    SubscriptionTypeDef,
    TagResourceRequestRequestTypeDef,
    TagTypeDef,
    TopicTypeDef,
    UnsubscribeInputRequestTypeDef,
    UntagResourceRequestRequestTypeDef,
    VerifySMSSandboxPhoneNumberInputRequestTypeDef,
)

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

Versioning

types-aiobotocore-sns version is the same as related boto3 version and follows PEP 440 format.

Documentation

All type annotations can be found in types-aiobotocore-sns docs

Support and contributing

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

Project details


Download files

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

Source Distribution

types-aiobotocore-sns-2.1.0.tar.gz (28.0 kB view details)

Uploaded Source

Built Distribution

types_aiobotocore_sns-2.1.0-py3-none-any.whl (36.4 kB view details)

Uploaded Python 3

File details

Details for the file types-aiobotocore-sns-2.1.0.tar.gz.

File metadata

  • Download URL: types-aiobotocore-sns-2.1.0.tar.gz
  • Upload date:
  • Size: 28.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 types-aiobotocore-sns-2.1.0.tar.gz
Algorithm Hash digest
SHA256 9f0666420a6689be8a533556a35bfea8f027eebc04a01e85f359d84868d3e8b9
MD5 c1eeefffeb92f1450e14d572150de422
BLAKE2b-256 ba5a931a9bb132bf8bb4d0a6354fc9562a7ac765c3434ab9b75fedeeed48d89c

See more details on using hashes here.

File details

Details for the file types_aiobotocore_sns-2.1.0-py3-none-any.whl.

File metadata

  • Download URL: types_aiobotocore_sns-2.1.0-py3-none-any.whl
  • Upload date:
  • Size: 36.4 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 types_aiobotocore_sns-2.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 9cdea34a324a1e679ff1a79f52b4562bfc85dd04b3abe64c2072c5a7b55a4655
MD5 4915cb23e03b868ec6ec024c9fa56e46
BLAKE2b-256 27c4c6026cf26de801204dbe9236b4147b3f6d775b7a071a533880f7f6358e34

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