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-aioboto3 for SNS service.

# install with aioboto3 type annotations
python -m pip install 'types-aioboto3[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-aioboto3-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.client("sns") as SNSClient boto3 documentation

Usage example
from aioboto3.session import Session

from types_aiobotocore_sns.client import SNSClient


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

Paginators

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

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

Usage example
from types_aiobotocore_sns.service_resource import SNSServiceResource

Collections

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

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").*.

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.

Usage example
from types_aiobotocore_sns.literals import LanguageCodeStringType

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

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from types_aiobotocore_sns.type_defs import AddPermissionInputRequestTypeDef

def get_value() -> AddPermissionInputRequestTypeDef:
    return {
        "TopicArn": ...,
        "Label": ...,
        "AWSAccountId": ...,
        "ActionName": ...,
    }