Skip to main content

Type annotations for boto3.ECR 1.20.49 service generated by mypy-boto3-builder 6.4.2

Project description

mypy-boto3-ecr

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

boto3.typed

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

Generated by mypy-boto3-builder 6.4.2.

More information can be found on boto3-stubs page and in mypy-boto3-ecr docs

See how it helps to find and fix potential bugs:

boto3-stubs demo

How to install

VSCode extension

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

Click Modify and select boto3 common and ECR.

From PyPI with pip

Install boto3-stubs for ECR service.

# install with boto3 type annotations
python -m pip install 'boto3-stubs[ecr]'

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

# standalone installation
python -m pip install mypy-boto3-ecr

Usage

VSCode

  • Install Python extension
  • Install Pylance extension
  • Set Pylance as your Python Language Server
  • Install boto3-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 boto3-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 supports mypy or pyright, everything should work.

mypy

  • Install mypy: python -m pip install mypy
  • Install boto3-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 boto3-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").

from boto3.session import Session

from mypy_boto3_ecr import ECRClient

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

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

Paginators annotations

mypy_boto3_ecr.paginator module contains type annotations for all paginators.

from boto3.session import Session

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

client: ECRClient = Session().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_pull_through_cache_rules_paginator: DescribePullThroughCacheRulesPaginator = client.get_paginator("describe_pull_through_cache_rules")
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 boto3.session import Session

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

client: ECRClient = Session().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")

Literals

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

from mypy_boto3_ecr.literals import (
    DescribeImageScanFindingsPaginatorName,
    DescribeImagesPaginatorName,
    DescribePullThroughCacheRulesPaginatorName,
    DescribeRepositoriesPaginatorName,
    EncryptionTypeType,
    FindingSeverityType,
    GetLifecyclePolicyPreviewPaginatorName,
    ImageActionTypeType,
    ImageFailureCodeType,
    ImageScanCompleteWaiterName,
    ImageTagMutabilityType,
    LayerAvailabilityType,
    LayerFailureCodeType,
    LifecyclePolicyPreviewCompleteWaiterName,
    LifecyclePolicyPreviewStatusType,
    ListImagesPaginatorName,
    ReplicationStatusType,
    RepositoryFilterTypeType,
    ScanFrequencyType,
    ScanStatusType,
    ScanTypeType,
    ScanningConfigurationFailureCodeType,
    ScanningRepositoryFilterTypeType,
    TagStatusType,
    ServiceName,
    PaginatorName,
    WaiterName,
)

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

Typed dictionaries

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,
    AwsEcrContainerImageDetailsTypeDef,
    BatchCheckLayerAvailabilityRequestRequestTypeDef,
    BatchCheckLayerAvailabilityResponseTypeDef,
    BatchDeleteImageRequestRequestTypeDef,
    BatchDeleteImageResponseTypeDef,
    BatchGetImageRequestRequestTypeDef,
    BatchGetImageResponseTypeDef,
    BatchGetRepositoryScanningConfigurationRequestRequestTypeDef,
    BatchGetRepositoryScanningConfigurationResponseTypeDef,
    CompleteLayerUploadRequestRequestTypeDef,
    CompleteLayerUploadResponseTypeDef,
    CreatePullThroughCacheRuleRequestRequestTypeDef,
    CreatePullThroughCacheRuleResponseTypeDef,
    CreateRepositoryRequestRequestTypeDef,
    CreateRepositoryResponseTypeDef,
    CvssScoreAdjustmentTypeDef,
    CvssScoreDetailsTypeDef,
    CvssScoreTypeDef,
    DeleteLifecyclePolicyRequestRequestTypeDef,
    DeleteLifecyclePolicyResponseTypeDef,
    DeletePullThroughCacheRuleRequestRequestTypeDef,
    DeletePullThroughCacheRuleResponseTypeDef,
    DeleteRegistryPolicyResponseTypeDef,
    DeleteRepositoryPolicyRequestRequestTypeDef,
    DeleteRepositoryPolicyResponseTypeDef,
    DeleteRepositoryRequestRequestTypeDef,
    DeleteRepositoryResponseTypeDef,
    DescribeImageReplicationStatusRequestRequestTypeDef,
    DescribeImageReplicationStatusResponseTypeDef,
    DescribeImageScanFindingsRequestRequestTypeDef,
    DescribeImageScanFindingsResponseTypeDef,
    DescribeImagesFilterTypeDef,
    DescribeImagesRequestRequestTypeDef,
    DescribeImagesResponseTypeDef,
    DescribePullThroughCacheRulesRequestRequestTypeDef,
    DescribePullThroughCacheRulesResponseTypeDef,
    DescribeRegistryResponseTypeDef,
    DescribeRepositoriesRequestRequestTypeDef,
    DescribeRepositoriesResponseTypeDef,
    EncryptionConfigurationTypeDef,
    EnhancedImageScanFindingTypeDef,
    GetAuthorizationTokenRequestRequestTypeDef,
    GetAuthorizationTokenResponseTypeDef,
    GetDownloadUrlForLayerRequestRequestTypeDef,
    GetDownloadUrlForLayerResponseTypeDef,
    GetLifecyclePolicyPreviewRequestRequestTypeDef,
    GetLifecyclePolicyPreviewResponseTypeDef,
    GetLifecyclePolicyRequestRequestTypeDef,
    GetLifecyclePolicyResponseTypeDef,
    GetRegistryPolicyResponseTypeDef,
    GetRegistryScanningConfigurationResponseTypeDef,
    GetRepositoryPolicyRequestRequestTypeDef,
    GetRepositoryPolicyResponseTypeDef,
    ImageDetailTypeDef,
    ImageFailureTypeDef,
    ImageIdentifierTypeDef,
    ImageReplicationStatusTypeDef,
    ImageScanFindingTypeDef,
    ImageScanFindingsSummaryTypeDef,
    ImageScanFindingsTypeDef,
    ImageScanStatusTypeDef,
    ImageScanningConfigurationTypeDef,
    ImageTypeDef,
    InitiateLayerUploadRequestRequestTypeDef,
    InitiateLayerUploadResponseTypeDef,
    LayerFailureTypeDef,
    LayerTypeDef,
    LifecyclePolicyPreviewFilterTypeDef,
    LifecyclePolicyPreviewResultTypeDef,
    LifecyclePolicyPreviewSummaryTypeDef,
    LifecyclePolicyRuleActionTypeDef,
    ListImagesFilterTypeDef,
    ListImagesRequestRequestTypeDef,
    ListImagesResponseTypeDef,
    ListTagsForResourceRequestRequestTypeDef,
    ListTagsForResourceResponseTypeDef,
    PackageVulnerabilityDetailsTypeDef,
    PaginatorConfigTypeDef,
    PullThroughCacheRuleTypeDef,
    PutImageRequestRequestTypeDef,
    PutImageResponseTypeDef,
    PutImageScanningConfigurationRequestRequestTypeDef,
    PutImageScanningConfigurationResponseTypeDef,
    PutImageTagMutabilityRequestRequestTypeDef,
    PutImageTagMutabilityResponseTypeDef,
    PutLifecyclePolicyRequestRequestTypeDef,
    PutLifecyclePolicyResponseTypeDef,
    PutRegistryPolicyRequestRequestTypeDef,
    PutRegistryPolicyResponseTypeDef,
    PutRegistryScanningConfigurationRequestRequestTypeDef,
    PutRegistryScanningConfigurationResponseTypeDef,
    PutReplicationConfigurationRequestRequestTypeDef,
    PutReplicationConfigurationResponseTypeDef,
    RecommendationTypeDef,
    RegistryScanningConfigurationTypeDef,
    RegistryScanningRuleTypeDef,
    RemediationTypeDef,
    ReplicationConfigurationTypeDef,
    ReplicationDestinationTypeDef,
    ReplicationRuleTypeDef,
    RepositoryFilterTypeDef,
    RepositoryScanningConfigurationFailureTypeDef,
    RepositoryScanningConfigurationTypeDef,
    RepositoryTypeDef,
    ResourceDetailsTypeDef,
    ResourceTypeDef,
    ResponseMetadataTypeDef,
    ScanningRepositoryFilterTypeDef,
    ScoreDetailsTypeDef,
    SetRepositoryPolicyRequestRequestTypeDef,
    SetRepositoryPolicyResponseTypeDef,
    StartImageScanRequestRequestTypeDef,
    StartImageScanResponseTypeDef,
    StartLifecyclePolicyPreviewRequestRequestTypeDef,
    StartLifecyclePolicyPreviewResponseTypeDef,
    TagResourceRequestRequestTypeDef,
    TagTypeDef,
    UntagResourceRequestRequestTypeDef,
    UploadLayerPartRequestRequestTypeDef,
    UploadLayerPartResponseTypeDef,
    VulnerablePackageTypeDef,
    WaiterConfigTypeDef,
)

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

Versioning

mypy-boto3-ecr version is the same as related boto3 version and follows PEP 440 format.

Documentation

All type annotations can be found in mypy-boto3-ecr docs

Support and contributing

This package is auto-generated. Please reports any bugs or request new features in mypy-boto3-builder repository.

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.20.49.tar.gz (29.0 kB view details)

Uploaded Source

Built Distribution

mypy_boto3_ecr-1.20.49-py3-none-any.whl (35.1 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: mypy-boto3-ecr-1.20.49.tar.gz
  • Upload date:
  • Size: 29.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for mypy-boto3-ecr-1.20.49.tar.gz
Algorithm Hash digest
SHA256 5c98be9f84c63e71341c18d7512d4f753e953f3a3036ad21e4233db1181184c9
MD5 6dd49aede0e0c7ffb5dfbd373e8f6ed5
BLAKE2b-256 0938053d4d553ec7ed4fa9ff69a2187d9f6770333813e51e642ea785ba233de8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mypy_boto3_ecr-1.20.49-py3-none-any.whl
  • Upload date:
  • Size: 35.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for mypy_boto3_ecr-1.20.49-py3-none-any.whl
Algorithm Hash digest
SHA256 a84b4249b5cdb401e61e89cc27e0597a03ab28e3ec283f52d9d998718be5f800
MD5 c1a13797cf8e9c59acea135b46a91b81
BLAKE2b-256 b2ce744dd1a0db7ec2b0c8c85802c6e6a60fb0f8f543713739fa3ce73d6a4fdb

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