Skip to main content

Type annotations for aiobotocore.EKS 2.15.2 service generated with mypy-boto3-builder 8.1.2

Project description

types-aiobotocore-eks

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

boto3.typed

Type annotations for aiobotocore.EKS 2.15.2 service compatible with VSCode, PyCharm, Emacs, Sublime Text, mypy, pyright and other tools.

Generated by mypy-boto3-builder 8.1.2.

More information can be found on types-aiobotocore page and in types-aiobotocore-eks docs.

See how it helps to find and fix potential bugs:

boto3-stubs demo

How to install

From PyPI with pip

Install types-aiobotocore for EKS service.

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


# 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[eks]'


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

How to uninstall

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

Usage

VSCode

python -m pip install 'types-aiobotocore[eks]'

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

PyCharm

Install types-aiobotocore-lite[eks] in your environment:

python -m pip install 'types-aiobotocore-lite[eks]'`

Both type checking and code completion should now work. Explicit type annotations are required.

Use types-aiobotocore package instead for implicit type discovery.

Emacs

  • Install types-aiobotocore with services you use in your environment:
python -m pip install 'types-aiobotocore[eks]'
(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-aiobotocore

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

Sublime Text

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

Type checking should now work. No explicit type annotations required, write your aiobotocore 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-aiobotocore[eks] in your environment:
python -m pip install 'types-aiobotocore[eks]'

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

pyright

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

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

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

Explicit type annotations

Client annotations

EKSClient provides annotations for session.create_client("eks").

from aiobotocore.session import get_session

from types_aiobotocore_eks import EKSClient

session = get_session()
async with session.create_client("eks") as client:
    client: EKSClient
    # now client usage is checked by mypy and IDE should provide code completion

Paginators annotations

types_aiobotocore_eks.paginator module contains type annotations for all paginators.

from aiobotocore.session import get_session

from types_aiobotocore_eks import EKSClient
from types_aiobotocore_eks.paginator import (
    DescribeAddonVersionsPaginator,
    ListAccessEntriesPaginator,
    ListAccessPoliciesPaginator,
    ListAddonsPaginator,
    ListAssociatedAccessPoliciesPaginator,
    ListClustersPaginator,
    ListEksAnywhereSubscriptionsPaginator,
    ListFargateProfilesPaginator,
    ListIdentityProviderConfigsPaginator,
    ListInsightsPaginator,
    ListNodegroupsPaginator,
    ListPodIdentityAssociationsPaginator,
    ListUpdatesPaginator,
)

session = get_session()
async with session.create_client("eks") as client:
    client: EKSClient

    # Explicit type annotations are optional here
    # Types should be correctly discovered by mypy and IDEs
    describe_addon_versions_paginator: DescribeAddonVersionsPaginator = client.get_paginator(
        "describe_addon_versions"
    )
    list_access_entries_paginator: ListAccessEntriesPaginator = client.get_paginator(
        "list_access_entries"
    )
    list_access_policies_paginator: ListAccessPoliciesPaginator = client.get_paginator(
        "list_access_policies"
    )
    list_addons_paginator: ListAddonsPaginator = client.get_paginator("list_addons")
    list_associated_access_policies_paginator: ListAssociatedAccessPoliciesPaginator = (
        client.get_paginator("list_associated_access_policies")
    )
    list_clusters_paginator: ListClustersPaginator = client.get_paginator("list_clusters")
    list_eks_anywhere_subscriptions_paginator: ListEksAnywhereSubscriptionsPaginator = (
        client.get_paginator("list_eks_anywhere_subscriptions")
    )
    list_fargate_profiles_paginator: ListFargateProfilesPaginator = client.get_paginator(
        "list_fargate_profiles"
    )
    list_identity_provider_configs_paginator: ListIdentityProviderConfigsPaginator = (
        client.get_paginator("list_identity_provider_configs")
    )
    list_insights_paginator: ListInsightsPaginator = client.get_paginator("list_insights")
    list_nodegroups_paginator: ListNodegroupsPaginator = client.get_paginator("list_nodegroups")
    list_pod_identity_associations_paginator: ListPodIdentityAssociationsPaginator = (
        client.get_paginator("list_pod_identity_associations")
    )
    list_updates_paginator: ListUpdatesPaginator = client.get_paginator("list_updates")

Waiters annotations

types_aiobotocore_eks.waiter module contains type annotations for all waiters.

from aiobotocore.session import get_session

from types_aiobotocore_eks.client import EKSClient
from types_aiobotocore_eks.waiter import (
    AddonActiveWaiter,
    AddonDeletedWaiter,
    ClusterActiveWaiter,
    ClusterDeletedWaiter,
    FargateProfileActiveWaiter,
    FargateProfileDeletedWaiter,
    NodegroupActiveWaiter,
    NodegroupDeletedWaiter,
)

session = get_session()
async with session.create_client("eks") as client:
    client: EKSClient

    # Explicit type annotations are optional here
    # Types should be correctly discovered by mypy and IDEs
    addon_active_waiter: AddonActiveWaiter = client.get_waiter("addon_active")
    addon_deleted_waiter: AddonDeletedWaiter = client.get_waiter("addon_deleted")
    cluster_active_waiter: ClusterActiveWaiter = client.get_waiter("cluster_active")
    cluster_deleted_waiter: ClusterDeletedWaiter = client.get_waiter("cluster_deleted")
    fargate_profile_active_waiter: FargateProfileActiveWaiter = client.get_waiter(
        "fargate_profile_active"
    )
    fargate_profile_deleted_waiter: FargateProfileDeletedWaiter = client.get_waiter(
        "fargate_profile_deleted"
    )
    nodegroup_active_waiter: NodegroupActiveWaiter = client.get_waiter("nodegroup_active")
    nodegroup_deleted_waiter: NodegroupDeletedWaiter = client.get_waiter("nodegroup_deleted")

Literals

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

Full list of EKS Literals can be found in docs.

from types_aiobotocore_eks.literals import AMITypesType


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

Type definitions

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

Full list of EKS TypeDefs can be found in docs.

from types_aiobotocore_eks.type_defs import AccessConfigResponseTypeDef


def get_value() -> AccessConfigResponseTypeDef:
    return {...}

How it works

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

  • All available aiobotocore services are covered.
  • Each public class and method of every aiobotocore 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-aiobotocore-eks version is the same as related aiobotocore version and follows PEP 440 format.

Thank you

Documentation

All services type annotations can be found in aiobotocore 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_eks-2.15.2.tar.gz (40.4 kB view details)

Uploaded Source

Built Distribution

types_aiobotocore_eks-2.15.2-py3-none-any.whl (48.4 kB view details)

Uploaded Python 3

File details

Details for the file types_aiobotocore_eks-2.15.2.tar.gz.

File metadata

File hashes

Hashes for types_aiobotocore_eks-2.15.2.tar.gz
Algorithm Hash digest
SHA256 a8a3a9cb3521768288076e77ce0fe22de072018255b0a319d21cadc18d2453ca
MD5 b022542a90fbf4d5674c63c6351949af
BLAKE2b-256 b22d9fe112bca03dc8d3d5352447ace3916f51b95aa12000dce0efa5350a50c0

See more details on using hashes here.

File details

Details for the file types_aiobotocore_eks-2.15.2-py3-none-any.whl.

File metadata

File hashes

Hashes for types_aiobotocore_eks-2.15.2-py3-none-any.whl
Algorithm Hash digest
SHA256 79c951ec8cd2123889307d1b180a651ac24eac3aaca8b59a47616b7ed49e86b9
MD5 39566d86d94efffe3e846976e497155e
BLAKE2b-256 a6957a8f720903eeed2bc5c1141271f73089d4b010f9c818029ec5b1e336d3f9

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