Skip to main content

Type annotations for boto3.ECR 1.17.41 service, generated by mypy-boto3-buider 4.4.0

Project description

mypy-boto3-ecr

PyPI - mypy-boto3-ecr PyPI - Python Version Docs

boto3.typed

Type annotations for boto3.ECR 1.17.41 service compatible with VSCode, PyCharm, Emacs, Sublime Text, mypy, pyright and other tools.

Generated by mypy-boto3-buider 4.4.0.

More information can be found on boto3-stubs page.

See how it helps to find and fix potential bugs:

boto3-stubs demo

How to install

Install boto3-stubs for ECR service.

python -m pip install boto3-stubs[ecr]

Usage

VSCode

  • Install Python extension
  • Install Pylance extension
  • Set Pylance as your Python Language Server
  • Install boto-stubs[ecr] in your environment: python -m pip install 'boto3-stubs[ecr]'

Both type checking and auto-complete should work for ECR service. No explicit type annotations required, write your boto3 code as usual.

PyCharm

  • Install boto-stubs[ecr] in your environment: python -m pip install 'boto3-stubs[ecr]'

Both type checking and auto-complete should work for ECR service. No explicit type annotations required, write your boto3 code as usual. Auto-complete can be slow on big projects or if you have a lot of installed boto3-stubs submodules.

Other IDEs

Not tested, but as long as your IDE support mypy or pyright, everything should work.

mypy

  • Install mypy: python -m pip install mypy
  • Install boto-stubs[ecr] in your environment: python -m pip install 'boto3-stubs[ecr]'
  • Run mypy as usual

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

pyright

  • Install pyright: yarn global add pyright
  • Install boto-stubs[ecr] in your environment: python -m pip install 'boto3-stubs[ecr]'
  • Optionally, you can install boto3-stubs to typings folder.

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

Explicit type annotations

Client annotations

ECRClient provides annotations for boto3.client("ecr").

import boto3

from mypy_boto3_ecr import ECRClient

client: ECRClient = boto3.client("ecr")

# now client usage is checked by mypy and IDE should provide code auto-complete

# works for session as well
session = boto3.session.Session(region="us-west-1")
session_client: ECRClient = session.client("ecr")

Paginators annotations

mypy_boto3_ecr.paginator module contains type annotations for all paginators.

from mypy_boto3_ecr import ECRClient
from mypy_boto3_ecr.paginator import (
    DescribeImageScanFindingsPaginator,
    DescribeImagesPaginator,
    DescribeRepositoriesPaginator,
    GetLifecyclePolicyPreviewPaginator,
    ListImagesPaginator,
)

client: ECRClient = boto3.client("ecr")

# Explicit type annotations are optional here
# Type should be correctly discovered by mypy and IDEs
# VSCode requires explicit type annotations
describe_image_scan_findings_paginator: DescribeImageScanFindingsPaginator = client.get_paginator("describe_image_scan_findings")
describe_images_paginator: DescribeImagesPaginator = client.get_paginator("describe_images")
describe_repositories_paginator: DescribeRepositoriesPaginator = client.get_paginator("describe_repositories")
get_lifecycle_policy_preview_paginator: GetLifecyclePolicyPreviewPaginator = client.get_paginator("get_lifecycle_policy_preview")
list_images_paginator: ListImagesPaginator = client.get_paginator("list_images")

Waiters annotations

mypy_boto3_ecr.waiter module contains type annotations for all waiters.

from mypy_boto3_ecr import ECRClient
from mypy_boto3_ecr.waiter import (
    ImageScanCompleteWaiter,
    LifecyclePolicyPreviewCompleteWaiter,
)

client: ECRClient = boto3.client("ecr")

# Explicit type annotations are optional here
# Type should be correctly discovered by mypy and IDEs
# VSCode requires explicit type annotations
image_scan_complete_waiter: ImageScanCompleteWaiter = client.get_waiter("image_scan_complete")
lifecycle_policy_preview_complete_waiter: LifecyclePolicyPreviewCompleteWaiter = client.get_waiter("lifecycle_policy_preview_complete")

Typed dictionations

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

from mypy_boto3_ecr.type_defs import (
    AttributeTypeDef,
    AuthorizationDataTypeDef,
    EncryptionConfigurationTypeDef,
    ImageDetailTypeDef,
    ImageFailureTypeDef,
    ImageIdentifierTypeDef,
    ImageScanFindingTypeDef,
    ImageScanFindingsSummaryTypeDef,
    ImageScanFindingsTypeDef,
    ImageScanStatusTypeDef,
    ImageScanningConfigurationTypeDef,
    ImageTypeDef,
    LayerFailureTypeDef,
    LayerTypeDef,
    LifecyclePolicyPreviewResultTypeDef,
    LifecyclePolicyPreviewSummaryTypeDef,
    LifecyclePolicyRuleActionTypeDef,
    ReplicationConfigurationTypeDef,
    ReplicationDestinationTypeDef,
    ReplicationRuleTypeDef,
    RepositoryTypeDef,
    TagTypeDef,
    BatchCheckLayerAvailabilityResponseTypeDef,
    BatchDeleteImageResponseTypeDef,
    BatchGetImageResponseTypeDef,
    CompleteLayerUploadResponseTypeDef,
    CreateRepositoryResponseTypeDef,
    DeleteLifecyclePolicyResponseTypeDef,
    DeleteRegistryPolicyResponseTypeDef,
    DeleteRepositoryPolicyResponseTypeDef,
    DeleteRepositoryResponseTypeDef,
    DescribeImageScanFindingsResponseTypeDef,
    DescribeImagesFilterTypeDef,
    DescribeImagesResponseTypeDef,
    DescribeRegistryResponseTypeDef,
    DescribeRepositoriesResponseTypeDef,
    GetAuthorizationTokenResponseTypeDef,
    GetDownloadUrlForLayerResponseTypeDef,
    GetLifecyclePolicyPreviewResponseTypeDef,
    GetLifecyclePolicyResponseTypeDef,
    GetRegistryPolicyResponseTypeDef,
    GetRepositoryPolicyResponseTypeDef,
    InitiateLayerUploadResponseTypeDef,
    LifecyclePolicyPreviewFilterTypeDef,
    ListImagesFilterTypeDef,
    ListImagesResponseTypeDef,
    ListTagsForResourceResponseTypeDef,
    PaginatorConfigTypeDef,
    PutImageResponseTypeDef,
    PutImageScanningConfigurationResponseTypeDef,
    PutImageTagMutabilityResponseTypeDef,
    PutLifecyclePolicyResponseTypeDef,
    PutRegistryPolicyResponseTypeDef,
    PutReplicationConfigurationResponseTypeDef,
    SetRepositoryPolicyResponseTypeDef,
    StartImageScanResponseTypeDef,
    StartLifecyclePolicyPreviewResponseTypeDef,
    UploadLayerPartResponseTypeDef,
    WaiterConfigTypeDef,
)

def get_structure() -> AttributeTypeDef:
    return {
      ...
    }

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mypy-boto3-ecr-1.17.41.0.tar.gz (13.0 kB view details)

Uploaded Source

Built Distribution

mypy_boto3_ecr-1.17.41.0-py3-none-any.whl (19.6 kB view details)

Uploaded Python 3

File details

Details for the file mypy-boto3-ecr-1.17.41.0.tar.gz.

File metadata

  • Download URL: mypy-boto3-ecr-1.17.41.0.tar.gz
  • Upload date:
  • Size: 13.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for mypy-boto3-ecr-1.17.41.0.tar.gz
Algorithm Hash digest
SHA256 e8bb8d81eb61f1603d2630cb9ede29228aa1287b9e97754dfb6b1487204057ec
MD5 67b5f62cb8d65fe05b42ab5f67fe7dae
BLAKE2b-256 4763c393294136f87f913946a1dbdadb55f0e504aa247abc591da5479b888076

See more details on using hashes here.

File details

Details for the file mypy_boto3_ecr-1.17.41.0-py3-none-any.whl.

File metadata

  • Download URL: mypy_boto3_ecr-1.17.41.0-py3-none-any.whl
  • Upload date:
  • Size: 19.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for mypy_boto3_ecr-1.17.41.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2c3570fb95f79cc1adca6d63d1f7fa8c253888ea7cf112dce64e8ee74f6de914
MD5 eea6520d7e0590d017f77fc9a2729968
BLAKE2b-256 8486317e487aa1551f72441e2032807483f57edaf62a020d22b9b2db1e55a0d6

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