mypy-boto3-sqs

1.42.3 · active · verified Wed Apr 08

mypy-boto3-sqs provides type annotations for the AWS SQS service in boto3, enhancing code completion and type checking. The current version is 1.42.3, released on December 4, 2025. The library is actively maintained, with regular updates to align with boto3 releases.

Warnings

Install

Imports

Quickstart

Demonstrates sending a message to an SQS queue with type annotations

from mypy_boto3_sqs import SQSClient
import boto3

client: SQSClient = boto3.client('sqs')
response = client.send_message(
    QueueUrl='https://sqs.us-east-1.amazonaws.com/123456789012/MyQueue',
    MessageBody='Hello, World!'
)
print(response['MessageId'])

view raw JSON →