Skip to content

Examples#

Index > ECR > Examples

Auto-generated documentation for ECR type annotations stubs module types-boto3-ecr.

Client#

Implicit type annotations#

Can be used with types-boto3[ecr] package installed.

Write your ECR code as usual, type checking and code completion should work out of the box.

Client method usage example#

# ECRClient usage example

from boto3.session import Session


session = Session()

client = session.client("ecr")  # (1)
result = client.batch_check_layer_availability()  # (2)
  1. client: ECRClient
  2. result: BatchCheckLayerAvailabilityResponseTypeDef

Paginator usage example#

# DescribeImageScanFindingsPaginator usage example

from boto3.session import Session


session = Session()
client = session.client("ecr")  # (1)

paginator = client.get_paginator("describe_image_scan_findings")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: ECRClient
  2. paginator: DescribeImageScanFindingsPaginator
  3. item: DescribeImageScanFindingsResponseTypeDef

Waiter usage example#

# ImageScanCompleteWaiter usage example

from boto3.session import Session


session = Session()
client = session.client("ecr")  # (1)

waiter = client.get_waiter("image_scan_complete")  # (2)
waiter.wait(...)
  1. client: ECRClient
  2. waiter: ImageScanCompleteWaiter

Explicit type annotations#

With types-boto3-lite[ecr] or a standalone types_boto3_ecr package, you have to explicitly specify client: ECRClient type annotation.

All other type annotations are optional, as types should be discovered automatically. However, these type annotations can be helpful in your functions and methods.

Client method usage example#

# ECRClient usage example with type annotations

from boto3.session import Session

from types_boto3_ecr.client import ECRClient
from types_boto3_ecr.type_defs import BatchCheckLayerAvailabilityResponseTypeDef
from types_boto3_ecr.type_defs import BatchCheckLayerAvailabilityRequestTypeDef


session = Session()

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

kwargs: BatchCheckLayerAvailabilityRequestTypeDef = {...}
result: BatchCheckLayerAvailabilityResponseTypeDef = client.batch_check_layer_availability(**kwargs)

Paginator usage example#

# DescribeImageScanFindingsPaginator usage example with type annotations

from boto3.session import Session

from types_boto3_ecr.client import ECRClient
from types_boto3_ecr.paginator import DescribeImageScanFindingsPaginator
from types_boto3_ecr.type_defs import DescribeImageScanFindingsResponseTypeDef


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

paginator: DescribeImageScanFindingsPaginator = client.get_paginator("describe_image_scan_findings")
for item in paginator.paginate(...):
    item: DescribeImageScanFindingsResponseTypeDef
    print(item)

Waiter usage example#

# ImageScanCompleteWaiter usage example with type annotations

from boto3.session import Session

from types_boto3_ecr.client import ECRClient
from types_boto3_ecr.waiter import ImageScanCompleteWaiter

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

waiter: ImageScanCompleteWaiter = client.get_waiter("image_scan_complete")
waiter.wait(...)