Skip to main content

Type annotations for boto3 ECS 1.38.36 service generated with mypy-boto3-builder 8.11.0

Project description

types-boto3-ecs

PyPI - types-boto3-ecs PyPI - Python Version Docs PyPI - Downloads

boto3.typed

Type annotations for boto3 ECS 1.38.36 compatible with VSCode, PyCharm, Emacs, Sublime Text, mypy, pyright and other tools.

Generated with mypy-boto3-builder 8.11.0.

More information can be found on types-boto3 page and in types-boto3-ecs docs.

See how it helps you find and fix potential bugs:

types-boto3 demo

How to install

Generate locally (recommended)

You can generate type annotations for boto3 package locally with mypy-boto3-builder. Use uv for build isolation.

  1. Run mypy-boto3-builder in your package root directory: uvx --with 'boto3==1.38.36' mypy-boto3-builder
  2. Select boto3 AWS SDK.
  3. Add ECS service.
  4. Use provided commands to install generated packages.

VSCode extension

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

Click Modify and select boto3 common and ECS.

From PyPI with pip

Install types-boto3 for ECS service.

# install with boto3 type annotations
python -m pip install 'types-boto3[ecs]'

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

# standalone installation
python -m pip install types-boto3-ecs

How to uninstall

python -m pip uninstall -y types-boto3-ecs

Usage

VSCode

python -m pip install 'types-boto3[ecs]'

Both type checking and code completion should now work. No explicit type annotations required, write your boto3 code as usual.

PyCharm

⚠️ Due to slow PyCharm performance on Literal overloads (issue PY-40997), it is recommended to use types-boto3-lite until the issue is resolved.

⚠️ If you experience slow performance and high CPU usage, try to disable PyCharm type checker and use mypy or pyright instead.

⚠️ To continue using PyCharm type checker, you can try to replace types-boto3 with types-boto3-lite:

pip uninstall types-boto3
pip install types-boto3-lite

Install types-boto3[ecs] in your environment:

python -m pip install 'types-boto3[ecs]'

Both type checking and code completion should now work.

Emacs

  • Install types-boto3 with services you use in your environment:
python -m pip install 'types-boto3[ecs]'
(use-package lsp-pyright
  :ensure t
  :hook (python-mode . (lambda ()
                          (require 'lsp-pyright)
                          (lsp)))  ; or lsp-deferred
  :init (when (executable-find "python3")
          (setq lsp-pyright-python-executable-cmd "python3"))
  )
  • Make sure emacs uses the environment where you have installed types-boto3

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

Sublime Text

  • Install types-boto3[ecs] with services you use in your environment:
python -m pip install 'types-boto3[ecs]'

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

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-boto3[ecs] in your environment:
python -m pip install 'types-boto3[ecs]'

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

pyright

  • Install pyright: npm i -g pyright
  • Install types-boto3[ecs] in your environment:
python -m pip install 'types-boto3[ecs]'

Optionally, you can install types-boto3 to typings directory.

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

Pylint compatibility

It is totally safe to use TYPE_CHECKING flag in order to avoid types-boto3-ecs dependency in production. However, there is an issue in pylint that it complains about undefined variables. To fix it, set all types to object in non-TYPE_CHECKING mode.

from typing import TYPE_CHECKING

if TYPE_CHECKING:
    from types_boto3_ec2 import EC2Client, EC2ServiceResource
    from types_boto3_ec2.waiters import BundleTaskCompleteWaiter
    from types_boto3_ec2.paginators import DescribeVolumesPaginator
else:
    EC2Client = object
    EC2ServiceResource = object
    BundleTaskCompleteWaiter = object
    DescribeVolumesPaginator = object

...

Explicit type annotations

Client annotations

ECSClient provides annotations for boto3.client("ecs").

from boto3.session import Session

from types_boto3_ecs import ECSClient

client: ECSClient = Session().client("ecs")

# now client usage is checked by mypy and IDE should provide code completion

Paginators annotations

types_boto3_ecs.paginator module contains type annotations for all paginators.

from boto3.session import Session

from types_boto3_ecs import ECSClient
from types_boto3_ecs.paginator import (
    ListAccountSettingsPaginator,
    ListAttributesPaginator,
    ListClustersPaginator,
    ListContainerInstancesPaginator,
    ListServicesByNamespacePaginator,
    ListServicesPaginator,
    ListTaskDefinitionFamiliesPaginator,
    ListTaskDefinitionsPaginator,
    ListTasksPaginator,
)

client: ECSClient = Session().client("ecs")

# Explicit type annotations are optional here
# Types should be correctly discovered by mypy and IDEs
list_account_settings_paginator: ListAccountSettingsPaginator = client.get_paginator(
    "list_account_settings"
)
list_attributes_paginator: ListAttributesPaginator = client.get_paginator("list_attributes")
list_clusters_paginator: ListClustersPaginator = client.get_paginator("list_clusters")
list_container_instances_paginator: ListContainerInstancesPaginator = client.get_paginator(
    "list_container_instances"
)
list_services_by_namespace_paginator: ListServicesByNamespacePaginator = client.get_paginator(
    "list_services_by_namespace"
)
list_services_paginator: ListServicesPaginator = client.get_paginator("list_services")
list_task_definition_families_paginator: ListTaskDefinitionFamiliesPaginator = client.get_paginator(
    "list_task_definition_families"
)
list_task_definitions_paginator: ListTaskDefinitionsPaginator = client.get_paginator(
    "list_task_definitions"
)
list_tasks_paginator: ListTasksPaginator = client.get_paginator("list_tasks")

Waiters annotations

types_boto3_ecs.waiter module contains type annotations for all waiters.

from boto3.session import Session

from types_boto3_ecs import ECSClient
from types_boto3_ecs.waiter import (
    ServicesInactiveWaiter,
    ServicesStableWaiter,
    TasksRunningWaiter,
    TasksStoppedWaiter,
)

client: ECSClient = Session().client("ecs")

# Explicit type annotations are optional here
# Types should be correctly discovered by mypy and IDEs
services_inactive_waiter: ServicesInactiveWaiter = client.get_waiter("services_inactive")
services_stable_waiter: ServicesStableWaiter = client.get_waiter("services_stable")
tasks_running_waiter: TasksRunningWaiter = client.get_waiter("tasks_running")
tasks_stopped_waiter: TasksStoppedWaiter = client.get_waiter("tasks_stopped")

Literals

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

Full list of ECS Literals can be found in docs.

from types_boto3_ecs.literals import AgentUpdateStatusType


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

Type definitions

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

Full list of ECS TypeDefs can be found in docs.

# TypedDict usage example
from types_boto3_ecs.type_defs import AttachmentStateChangeTypeDef


def get_value() -> AttachmentStateChangeTypeDef:
    return {
        "attachmentArn": ...,
    }

How it works

Fully automated mypy-boto3-builder carefully generates type annotations for each service, patiently waiting for boto3 updates. It delivers drop-in type annotations for you and makes sure that:

  • All available boto3 services are covered.
  • Each public class and method of every boto3 service gets valid type annotations extracted from botocore schemas.
  • Type annotations include up-to-date documentation.
  • Link to documentation is provided for every method.
  • Code is processed by ruff for readability.

What's new

Implemented features

  • Fully type annotated boto3, botocore, aiobotocore and aioboto3 libraries
  • mypy, pyright, VSCode, PyCharm, Sublime Text and Emacs compatibility
  • Client, ServiceResource, Resource, Waiter Paginator type annotations for each service
  • Generated TypeDefs for each service
  • Generated Literals for each service
  • Auto discovery of types for boto3.client and boto3.resource calls
  • Auto discovery of types for session.client and session.resource calls
  • Auto discovery of types for client.get_waiter and client.get_paginator calls
  • Auto discovery of types for ServiceResource and Resource collections
  • Auto discovery of types for aiobotocore.Session.create_client calls

Latest changes

Builder changelog can be found in Releases.

Versioning

types-boto3-ecs version is the same as related boto3 version and follows Python Packaging version specifiers.

Thank you

Documentation

All services type annotations can be found in boto3 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_boto3_ecs-1.38.36.tar.gz (47.8 kB view details)

Uploaded Source

Built Distribution

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

types_boto3_ecs-1.38.36-py3-none-any.whl (54.6 kB view details)

Uploaded Python 3

File details

Details for the file types_boto3_ecs-1.38.36.tar.gz.

File metadata

  • Download URL: types_boto3_ecs-1.38.36.tar.gz
  • Upload date:
  • Size: 47.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.4

File hashes

Hashes for types_boto3_ecs-1.38.36.tar.gz
Algorithm Hash digest
SHA256 ae45f59b80954e39e10a0a69bab1ff753056049ed6304107858851dfe27743a9
MD5 053636d6dfec2b98e9d4fb5abd4127d0
BLAKE2b-256 5bb89effc7d44b7f4bb320a74c4449ba68f23e71c1faccf3cc96850a3f7b8a62

See more details on using hashes here.

File details

Details for the file types_boto3_ecs-1.38.36-py3-none-any.whl.

File metadata

File hashes

Hashes for types_boto3_ecs-1.38.36-py3-none-any.whl
Algorithm Hash digest
SHA256 2731bf641512802ee4c532234e29c613eab924d8470536478498b1cd5442a0df
MD5 925821d99fd8240bc54756ba02f61243
BLAKE2b-256 0af64355595795a3b12f67ae044b28a0804424e48cc27b26d232bc14bb5cc123

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