Skip to content

Paginators#

Index > CodeBuild > Paginators

Auto-generated documentation for CodeBuild type annotations stubs module mypy-boto3-codebuild.

DescribeCodeCoveragesPaginator#

Type annotations and code completion for boto3.client("codebuild").get_paginator("describe_code_coverages"). boto3 documentation

# DescribeCodeCoveragesPaginator usage example

from boto3.session import Session

from mypy_boto3_codebuild.paginator import DescribeCodeCoveragesPaginator

def get_describe_code_coverages_paginator() -> DescribeCodeCoveragesPaginator:
    return Session().client("codebuild").get_paginator("describe_code_coverages")
# DescribeCodeCoveragesPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_codebuild.paginator import DescribeCodeCoveragesPaginator

session = Session()

client = Session().client("codebuild")  # (1)
paginator: DescribeCodeCoveragesPaginator = client.get_paginator("describe_code_coverages")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: CodeBuildClient
  2. paginator: DescribeCodeCoveragesPaginator
  3. item: DescribeCodeCoveragesOutputTypeDef

paginate#

Type annotations and code completion for DescribeCodeCoveragesPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    reportArn: str,
    sortOrder: SortOrderTypeType = ...,  # (1)
    sortBy: ReportCodeCoverageSortByTypeType = ...,  # (2)
    minLineCoveragePercentage: float = ...,
    maxLineCoveragePercentage: float = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (3)
) -> _PageIterator[DescribeCodeCoveragesOutputTypeDef]:  # (4)
    ...
  1. See SortOrderTypeType
  2. See ReportCodeCoverageSortByTypeType
  3. See PaginatorConfigTypeDef
  4. See DescribeCodeCoveragesOutputTypeDef
# paginate method usage example with argument unpacking

kwargs: DescribeCodeCoveragesInputDescribeCodeCoveragesPaginateTypeDef = {  # (1)
    "reportArn": ...,
}

parent.paginate(**kwargs)
  1. See DescribeCodeCoveragesInputDescribeCodeCoveragesPaginateTypeDef

DescribeTestCasesPaginator#

Type annotations and code completion for boto3.client("codebuild").get_paginator("describe_test_cases"). boto3 documentation

# DescribeTestCasesPaginator usage example

from boto3.session import Session

from mypy_boto3_codebuild.paginator import DescribeTestCasesPaginator

def get_describe_test_cases_paginator() -> DescribeTestCasesPaginator:
    return Session().client("codebuild").get_paginator("describe_test_cases")
# DescribeTestCasesPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_codebuild.paginator import DescribeTestCasesPaginator

session = Session()

client = Session().client("codebuild")  # (1)
paginator: DescribeTestCasesPaginator = client.get_paginator("describe_test_cases")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: CodeBuildClient
  2. paginator: DescribeTestCasesPaginator
  3. item: DescribeTestCasesOutputTypeDef

paginate#

Type annotations and code completion for DescribeTestCasesPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    reportArn: str,
    filter: TestCaseFilterTypeDef = ...,  # (1)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (2)
) -> _PageIterator[DescribeTestCasesOutputTypeDef]:  # (3)
    ...
  1. See TestCaseFilterTypeDef
  2. See PaginatorConfigTypeDef
  3. See DescribeTestCasesOutputTypeDef
# paginate method usage example with argument unpacking

kwargs: DescribeTestCasesInputDescribeTestCasesPaginateTypeDef = {  # (1)
    "reportArn": ...,
}

parent.paginate(**kwargs)
  1. See DescribeTestCasesInputDescribeTestCasesPaginateTypeDef

ListBuildBatchesPaginator#

Type annotations and code completion for boto3.client("codebuild").get_paginator("list_build_batches"). boto3 documentation

# ListBuildBatchesPaginator usage example

from boto3.session import Session

from mypy_boto3_codebuild.paginator import ListBuildBatchesPaginator

def get_list_build_batches_paginator() -> ListBuildBatchesPaginator:
    return Session().client("codebuild").get_paginator("list_build_batches")
# ListBuildBatchesPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_codebuild.paginator import ListBuildBatchesPaginator

session = Session()

client = Session().client("codebuild")  # (1)
paginator: ListBuildBatchesPaginator = client.get_paginator("list_build_batches")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: CodeBuildClient
  2. paginator: ListBuildBatchesPaginator
  3. item: ListBuildBatchesOutputTypeDef

paginate#

Type annotations and code completion for ListBuildBatchesPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    filter: BuildBatchFilterTypeDef = ...,  # (1)
    sortOrder: SortOrderTypeType = ...,  # (2)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (3)
) -> _PageIterator[ListBuildBatchesOutputTypeDef]:  # (4)
    ...
  1. See BuildBatchFilterTypeDef
  2. See SortOrderTypeType
  3. See PaginatorConfigTypeDef
  4. See ListBuildBatchesOutputTypeDef
# paginate method usage example with argument unpacking

kwargs: ListBuildBatchesInputListBuildBatchesPaginateTypeDef = {  # (1)
    "filter": ...,
}

parent.paginate(**kwargs)
  1. See ListBuildBatchesInputListBuildBatchesPaginateTypeDef

ListBuildBatchesForProjectPaginator#

Type annotations and code completion for boto3.client("codebuild").get_paginator("list_build_batches_for_project"). boto3 documentation

# ListBuildBatchesForProjectPaginator usage example

from boto3.session import Session

from mypy_boto3_codebuild.paginator import ListBuildBatchesForProjectPaginator

def get_list_build_batches_for_project_paginator() -> ListBuildBatchesForProjectPaginator:
    return Session().client("codebuild").get_paginator("list_build_batches_for_project")
# ListBuildBatchesForProjectPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_codebuild.paginator import ListBuildBatchesForProjectPaginator

session = Session()

client = Session().client("codebuild")  # (1)
paginator: ListBuildBatchesForProjectPaginator = client.get_paginator("list_build_batches_for_project")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: CodeBuildClient
  2. paginator: ListBuildBatchesForProjectPaginator
  3. item: ListBuildBatchesForProjectOutputTypeDef

paginate#

Type annotations and code completion for ListBuildBatchesForProjectPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    projectName: str = ...,
    filter: BuildBatchFilterTypeDef = ...,  # (1)
    sortOrder: SortOrderTypeType = ...,  # (2)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (3)
) -> _PageIterator[ListBuildBatchesForProjectOutputTypeDef]:  # (4)
    ...
  1. See BuildBatchFilterTypeDef
  2. See SortOrderTypeType
  3. See PaginatorConfigTypeDef
  4. See ListBuildBatchesForProjectOutputTypeDef
# paginate method usage example with argument unpacking

kwargs: ListBuildBatchesForProjectInputListBuildBatchesForProjectPaginateTypeDef = {  # (1)
    "projectName": ...,
}

parent.paginate(**kwargs)
  1. See ListBuildBatchesForProjectInputListBuildBatchesForProjectPaginateTypeDef

ListBuildsPaginator#

Type annotations and code completion for boto3.client("codebuild").get_paginator("list_builds"). boto3 documentation

# ListBuildsPaginator usage example

from boto3.session import Session

from mypy_boto3_codebuild.paginator import ListBuildsPaginator

def get_list_builds_paginator() -> ListBuildsPaginator:
    return Session().client("codebuild").get_paginator("list_builds")
# ListBuildsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_codebuild.paginator import ListBuildsPaginator

session = Session()

client = Session().client("codebuild")  # (1)
paginator: ListBuildsPaginator = client.get_paginator("list_builds")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: CodeBuildClient
  2. paginator: ListBuildsPaginator
  3. item: ListBuildsOutputTypeDef

paginate#

Type annotations and code completion for ListBuildsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    sortOrder: SortOrderTypeType = ...,  # (1)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (2)
) -> _PageIterator[ListBuildsOutputTypeDef]:  # (3)
    ...
  1. See SortOrderTypeType
  2. See PaginatorConfigTypeDef
  3. See ListBuildsOutputTypeDef
# paginate method usage example with argument unpacking

kwargs: ListBuildsInputListBuildsPaginateTypeDef = {  # (1)
    "sortOrder": ...,
}

parent.paginate(**kwargs)
  1. See ListBuildsInputListBuildsPaginateTypeDef

ListBuildsForProjectPaginator#

Type annotations and code completion for boto3.client("codebuild").get_paginator("list_builds_for_project"). boto3 documentation

# ListBuildsForProjectPaginator usage example

from boto3.session import Session

from mypy_boto3_codebuild.paginator import ListBuildsForProjectPaginator

def get_list_builds_for_project_paginator() -> ListBuildsForProjectPaginator:
    return Session().client("codebuild").get_paginator("list_builds_for_project")
# ListBuildsForProjectPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_codebuild.paginator import ListBuildsForProjectPaginator

session = Session()

client = Session().client("codebuild")  # (1)
paginator: ListBuildsForProjectPaginator = client.get_paginator("list_builds_for_project")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: CodeBuildClient
  2. paginator: ListBuildsForProjectPaginator
  3. item: ListBuildsForProjectOutputTypeDef

paginate#

Type annotations and code completion for ListBuildsForProjectPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    projectName: str,
    sortOrder: SortOrderTypeType = ...,  # (1)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (2)
) -> _PageIterator[ListBuildsForProjectOutputTypeDef]:  # (3)
    ...
  1. See SortOrderTypeType
  2. See PaginatorConfigTypeDef
  3. See ListBuildsForProjectOutputTypeDef
# paginate method usage example with argument unpacking

kwargs: ListBuildsForProjectInputListBuildsForProjectPaginateTypeDef = {  # (1)
    "projectName": ...,
}

parent.paginate(**kwargs)
  1. See ListBuildsForProjectInputListBuildsForProjectPaginateTypeDef

ListProjectsPaginator#

Type annotations and code completion for boto3.client("codebuild").get_paginator("list_projects"). boto3 documentation

# ListProjectsPaginator usage example

from boto3.session import Session

from mypy_boto3_codebuild.paginator import ListProjectsPaginator

def get_list_projects_paginator() -> ListProjectsPaginator:
    return Session().client("codebuild").get_paginator("list_projects")
# ListProjectsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_codebuild.paginator import ListProjectsPaginator

session = Session()

client = Session().client("codebuild")  # (1)
paginator: ListProjectsPaginator = client.get_paginator("list_projects")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: CodeBuildClient
  2. paginator: ListProjectsPaginator
  3. item: ListProjectsOutputTypeDef

paginate#

Type annotations and code completion for ListProjectsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    sortBy: ProjectSortByTypeType = ...,  # (1)
    sortOrder: SortOrderTypeType = ...,  # (2)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (3)
) -> _PageIterator[ListProjectsOutputTypeDef]:  # (4)
    ...
  1. See ProjectSortByTypeType
  2. See SortOrderTypeType
  3. See PaginatorConfigTypeDef
  4. See ListProjectsOutputTypeDef
# paginate method usage example with argument unpacking

kwargs: ListProjectsInputListProjectsPaginateTypeDef = {  # (1)
    "sortBy": ...,
}

parent.paginate(**kwargs)
  1. See ListProjectsInputListProjectsPaginateTypeDef

ListReportGroupsPaginator#

Type annotations and code completion for boto3.client("codebuild").get_paginator("list_report_groups"). boto3 documentation

# ListReportGroupsPaginator usage example

from boto3.session import Session

from mypy_boto3_codebuild.paginator import ListReportGroupsPaginator

def get_list_report_groups_paginator() -> ListReportGroupsPaginator:
    return Session().client("codebuild").get_paginator("list_report_groups")
# ListReportGroupsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_codebuild.paginator import ListReportGroupsPaginator

session = Session()

client = Session().client("codebuild")  # (1)
paginator: ListReportGroupsPaginator = client.get_paginator("list_report_groups")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: CodeBuildClient
  2. paginator: ListReportGroupsPaginator
  3. item: ListReportGroupsOutputTypeDef

paginate#

Type annotations and code completion for ListReportGroupsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    sortOrder: SortOrderTypeType = ...,  # (1)
    sortBy: ReportGroupSortByTypeType = ...,  # (2)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (3)
) -> _PageIterator[ListReportGroupsOutputTypeDef]:  # (4)
    ...
  1. See SortOrderTypeType
  2. See ReportGroupSortByTypeType
  3. See PaginatorConfigTypeDef
  4. See ListReportGroupsOutputTypeDef
# paginate method usage example with argument unpacking

kwargs: ListReportGroupsInputListReportGroupsPaginateTypeDef = {  # (1)
    "sortOrder": ...,
}

parent.paginate(**kwargs)
  1. See ListReportGroupsInputListReportGroupsPaginateTypeDef

ListReportsPaginator#

Type annotations and code completion for boto3.client("codebuild").get_paginator("list_reports"). boto3 documentation

# ListReportsPaginator usage example

from boto3.session import Session

from mypy_boto3_codebuild.paginator import ListReportsPaginator

def get_list_reports_paginator() -> ListReportsPaginator:
    return Session().client("codebuild").get_paginator("list_reports")
# ListReportsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_codebuild.paginator import ListReportsPaginator

session = Session()

client = Session().client("codebuild")  # (1)
paginator: ListReportsPaginator = client.get_paginator("list_reports")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: CodeBuildClient
  2. paginator: ListReportsPaginator
  3. item: ListReportsOutputTypeDef

paginate#

Type annotations and code completion for ListReportsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    sortOrder: SortOrderTypeType = ...,  # (1)
    filter: ReportFilterTypeDef = ...,  # (2)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (3)
) -> _PageIterator[ListReportsOutputTypeDef]:  # (4)
    ...
  1. See SortOrderTypeType
  2. See ReportFilterTypeDef
  3. See PaginatorConfigTypeDef
  4. See ListReportsOutputTypeDef
# paginate method usage example with argument unpacking

kwargs: ListReportsInputListReportsPaginateTypeDef = {  # (1)
    "sortOrder": ...,
}

parent.paginate(**kwargs)
  1. See ListReportsInputListReportsPaginateTypeDef

ListReportsForReportGroupPaginator#

Type annotations and code completion for boto3.client("codebuild").get_paginator("list_reports_for_report_group"). boto3 documentation

# ListReportsForReportGroupPaginator usage example

from boto3.session import Session

from mypy_boto3_codebuild.paginator import ListReportsForReportGroupPaginator

def get_list_reports_for_report_group_paginator() -> ListReportsForReportGroupPaginator:
    return Session().client("codebuild").get_paginator("list_reports_for_report_group")
# ListReportsForReportGroupPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_codebuild.paginator import ListReportsForReportGroupPaginator

session = Session()

client = Session().client("codebuild")  # (1)
paginator: ListReportsForReportGroupPaginator = client.get_paginator("list_reports_for_report_group")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: CodeBuildClient
  2. paginator: ListReportsForReportGroupPaginator
  3. item: ListReportsForReportGroupOutputTypeDef

paginate#

Type annotations and code completion for ListReportsForReportGroupPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    reportGroupArn: str,
    sortOrder: SortOrderTypeType = ...,  # (1)
    filter: ReportFilterTypeDef = ...,  # (2)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (3)
) -> _PageIterator[ListReportsForReportGroupOutputTypeDef]:  # (4)
    ...
  1. See SortOrderTypeType
  2. See ReportFilterTypeDef
  3. See PaginatorConfigTypeDef
  4. See ListReportsForReportGroupOutputTypeDef
# paginate method usage example with argument unpacking

kwargs: ListReportsForReportGroupInputListReportsForReportGroupPaginateTypeDef = {  # (1)
    "reportGroupArn": ...,
}

parent.paginate(**kwargs)
  1. See ListReportsForReportGroupInputListReportsForReportGroupPaginateTypeDef

ListSharedProjectsPaginator#

Type annotations and code completion for boto3.client("codebuild").get_paginator("list_shared_projects"). boto3 documentation

# ListSharedProjectsPaginator usage example

from boto3.session import Session

from mypy_boto3_codebuild.paginator import ListSharedProjectsPaginator

def get_list_shared_projects_paginator() -> ListSharedProjectsPaginator:
    return Session().client("codebuild").get_paginator("list_shared_projects")
# ListSharedProjectsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_codebuild.paginator import ListSharedProjectsPaginator

session = Session()

client = Session().client("codebuild")  # (1)
paginator: ListSharedProjectsPaginator = client.get_paginator("list_shared_projects")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: CodeBuildClient
  2. paginator: ListSharedProjectsPaginator
  3. item: ListSharedProjectsOutputTypeDef

paginate#

Type annotations and code completion for ListSharedProjectsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    sortBy: SharedResourceSortByTypeType = ...,  # (1)
    sortOrder: SortOrderTypeType = ...,  # (2)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (3)
) -> _PageIterator[ListSharedProjectsOutputTypeDef]:  # (4)
    ...
  1. See SharedResourceSortByTypeType
  2. See SortOrderTypeType
  3. See PaginatorConfigTypeDef
  4. See ListSharedProjectsOutputTypeDef
# paginate method usage example with argument unpacking

kwargs: ListSharedProjectsInputListSharedProjectsPaginateTypeDef = {  # (1)
    "sortBy": ...,
}

parent.paginate(**kwargs)
  1. See ListSharedProjectsInputListSharedProjectsPaginateTypeDef

ListSharedReportGroupsPaginator#

Type annotations and code completion for boto3.client("codebuild").get_paginator("list_shared_report_groups"). boto3 documentation

# ListSharedReportGroupsPaginator usage example

from boto3.session import Session

from mypy_boto3_codebuild.paginator import ListSharedReportGroupsPaginator

def get_list_shared_report_groups_paginator() -> ListSharedReportGroupsPaginator:
    return Session().client("codebuild").get_paginator("list_shared_report_groups")
# ListSharedReportGroupsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_codebuild.paginator import ListSharedReportGroupsPaginator

session = Session()

client = Session().client("codebuild")  # (1)
paginator: ListSharedReportGroupsPaginator = client.get_paginator("list_shared_report_groups")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: CodeBuildClient
  2. paginator: ListSharedReportGroupsPaginator
  3. item: ListSharedReportGroupsOutputTypeDef

paginate#

Type annotations and code completion for ListSharedReportGroupsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    sortOrder: SortOrderTypeType = ...,  # (1)
    sortBy: SharedResourceSortByTypeType = ...,  # (2)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (3)
) -> _PageIterator[ListSharedReportGroupsOutputTypeDef]:  # (4)
    ...
  1. See SortOrderTypeType
  2. See SharedResourceSortByTypeType
  3. See PaginatorConfigTypeDef
  4. See ListSharedReportGroupsOutputTypeDef
# paginate method usage example with argument unpacking

kwargs: ListSharedReportGroupsInputListSharedReportGroupsPaginateTypeDef = {  # (1)
    "sortOrder": ...,
}

parent.paginate(**kwargs)
  1. See ListSharedReportGroupsInputListSharedReportGroupsPaginateTypeDef