Skip to content

SNS module#

Index > SNS

Auto-generated documentation for SNS type annotations stubs module types-aiobotocore-sns.

How to install#

From PyPI with pip#

Install types-aiobotocore for SNS service.

# install with aiobotocore type annotations
python -m pip install 'types-aiobotocore[sns]'


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


# standalone installation
python -m pip install types-aiobotocore-sns

How to uninstall#

python -m pip uninstall -y types-aiobotocore-sns

Usage#

Code samples can be found in Examples.

SNSClient#

Type annotations and code completion for session.create_client("sns") as SNSClient boto3 documentation

# SNSClient usage example

from aiobotocore.session import get_session

from types_aiobotocore_sns.client import SNSClient


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

Paginators#

Type annotations and code completion for paginators from session.create_client("sns").get_paginator("...").

# ListEndpointsByPlatformApplicationPaginator usage example

from types_aiobotocore_sns.paginator import ListEndpointsByPlatformApplicationPaginator

def get_list_endpoints_by_platform_application_paginator() -> ListEndpointsByPlatformApplicationPaginator:
    return client.get_paginator("list_endpoints_by_platform_application"))

SNSServiceResource#

Type annotations and code completion for session.resource("sns") as SNSServiceResource boto3 documentation

# SNSServiceResource usage example

from types_aiobotocore_sns.service_resource import SNSServiceResource

Collections#

Type annotations and code completion for collections from session.resource("sns").*.

# ServiceResourcePlatformApplicationsCollection usage example

from types_aiobotocore_sns.service_resource import ServiceResourcePlatformApplicationsCollection

def get_collection() -> ServiceResourcePlatformApplicationsCollection:
    return resource.platform_applications

Resources#

Type annotations and code completion for additional resources from session.resource("sns").*.

# PlatformApplication usage example

from types_aiobotocore_sns.service_resource import PlatformApplication

def get_resource() -> PlatformApplication:
    return resource.PlatformApplication(...)

Literals#

Type annotations for literals used in methods and schema.

# LanguageCodeStringType usage example

from types_aiobotocore_sns.literals import LanguageCodeStringType

def get_value() -> LanguageCodeStringType:
    return "de-DE"

Type definitions#

Type annotations for type definitions used in methods and schema.