Paginators#
Auto-generated documentation for Bedrock type annotations stubs module types-boto3-bedrock.
ListAutomatedReasoningPoliciesPaginator#
Type annotations and code completion for boto3.client("bedrock").get_paginator("list_automated_reasoning_policies").
 boto3 documentation
# ListAutomatedReasoningPoliciesPaginator usage example
from boto3.session import Session
from types_boto3_bedrock.paginator import ListAutomatedReasoningPoliciesPaginator
def get_list_automated_reasoning_policies_paginator() -> ListAutomatedReasoningPoliciesPaginator:
    return Session().client("bedrock").get_paginator("list_automated_reasoning_policies")# ListAutomatedReasoningPoliciesPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_bedrock.paginator import ListAutomatedReasoningPoliciesPaginator
session = Session()
client = Session().client("bedrock")  # (1)
paginator: ListAutomatedReasoningPoliciesPaginator = client.get_paginator("list_automated_reasoning_policies")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: BedrockClient
- paginator: ListAutomatedReasoningPoliciesPaginator
- item: PageIterator[ListAutomatedReasoningPoliciesResponseTypeDef]
paginate#
Type annotations and code completion for ListAutomatedReasoningPoliciesPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    policyArn: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListAutomatedReasoningPoliciesResponseTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListAutomatedReasoningPoliciesResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListAutomatedReasoningPoliciesRequestPaginateTypeDef = {  # (1)
    "policyArn": ...,
}
parent.paginate(**kwargs)ListAutomatedReasoningPolicyBuildWorkflowsPaginator#
Type annotations and code completion for boto3.client("bedrock").get_paginator("list_automated_reasoning_policy_build_workflows").
 boto3 documentation
# ListAutomatedReasoningPolicyBuildWorkflowsPaginator usage example
from boto3.session import Session
from types_boto3_bedrock.paginator import ListAutomatedReasoningPolicyBuildWorkflowsPaginator
def get_list_automated_reasoning_policy_build_workflows_paginator() -> ListAutomatedReasoningPolicyBuildWorkflowsPaginator:
    return Session().client("bedrock").get_paginator("list_automated_reasoning_policy_build_workflows")# ListAutomatedReasoningPolicyBuildWorkflowsPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_bedrock.paginator import ListAutomatedReasoningPolicyBuildWorkflowsPaginator
session = Session()
client = Session().client("bedrock")  # (1)
paginator: ListAutomatedReasoningPolicyBuildWorkflowsPaginator = client.get_paginator("list_automated_reasoning_policy_build_workflows")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: BedrockClient
- paginator: ListAutomatedReasoningPolicyBuildWorkflowsPaginator
- item: PageIterator[ListAutomatedReasoningPolicyBuildWorkflowsResponseTypeDef]
paginate#
Type annotations and code completion for ListAutomatedReasoningPolicyBuildWorkflowsPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    policyArn: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListAutomatedReasoningPolicyBuildWorkflowsResponseTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListAutomatedReasoningPolicyBuildWorkflowsResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListAutomatedReasoningPolicyBuildWorkflowsRequestPaginateTypeDef = {  # (1)
    "policyArn": ...,
}
parent.paginate(**kwargs)ListAutomatedReasoningPolicyTestCasesPaginator#
Type annotations and code completion for boto3.client("bedrock").get_paginator("list_automated_reasoning_policy_test_cases").
 boto3 documentation
# ListAutomatedReasoningPolicyTestCasesPaginator usage example
from boto3.session import Session
from types_boto3_bedrock.paginator import ListAutomatedReasoningPolicyTestCasesPaginator
def get_list_automated_reasoning_policy_test_cases_paginator() -> ListAutomatedReasoningPolicyTestCasesPaginator:
    return Session().client("bedrock").get_paginator("list_automated_reasoning_policy_test_cases")# ListAutomatedReasoningPolicyTestCasesPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_bedrock.paginator import ListAutomatedReasoningPolicyTestCasesPaginator
session = Session()
client = Session().client("bedrock")  # (1)
paginator: ListAutomatedReasoningPolicyTestCasesPaginator = client.get_paginator("list_automated_reasoning_policy_test_cases")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: BedrockClient
- paginator: ListAutomatedReasoningPolicyTestCasesPaginator
- item: PageIterator[ListAutomatedReasoningPolicyTestCasesResponseTypeDef]
paginate#
Type annotations and code completion for ListAutomatedReasoningPolicyTestCasesPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    policyArn: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListAutomatedReasoningPolicyTestCasesResponseTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListAutomatedReasoningPolicyTestCasesResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListAutomatedReasoningPolicyTestCasesRequestPaginateTypeDef = {  # (1)
    "policyArn": ...,
}
parent.paginate(**kwargs)ListAutomatedReasoningPolicyTestResultsPaginator#
Type annotations and code completion for boto3.client("bedrock").get_paginator("list_automated_reasoning_policy_test_results").
 boto3 documentation
# ListAutomatedReasoningPolicyTestResultsPaginator usage example
from boto3.session import Session
from types_boto3_bedrock.paginator import ListAutomatedReasoningPolicyTestResultsPaginator
def get_list_automated_reasoning_policy_test_results_paginator() -> ListAutomatedReasoningPolicyTestResultsPaginator:
    return Session().client("bedrock").get_paginator("list_automated_reasoning_policy_test_results")# ListAutomatedReasoningPolicyTestResultsPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_bedrock.paginator import ListAutomatedReasoningPolicyTestResultsPaginator
session = Session()
client = Session().client("bedrock")  # (1)
paginator: ListAutomatedReasoningPolicyTestResultsPaginator = client.get_paginator("list_automated_reasoning_policy_test_results")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: BedrockClient
- paginator: ListAutomatedReasoningPolicyTestResultsPaginator
- item: PageIterator[ListAutomatedReasoningPolicyTestResultsResponseTypeDef]
paginate#
Type annotations and code completion for ListAutomatedReasoningPolicyTestResultsPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    policyArn: str,
    buildWorkflowId: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListAutomatedReasoningPolicyTestResultsResponseTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListAutomatedReasoningPolicyTestResultsResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListAutomatedReasoningPolicyTestResultsRequestPaginateTypeDef = {  # (1)
    "policyArn": ...,
    "buildWorkflowId": ...,
}
parent.paginate(**kwargs)ListCustomModelDeploymentsPaginator#
Type annotations and code completion for boto3.client("bedrock").get_paginator("list_custom_model_deployments").
 boto3 documentation
# ListCustomModelDeploymentsPaginator usage example
from boto3.session import Session
from types_boto3_bedrock.paginator import ListCustomModelDeploymentsPaginator
def get_list_custom_model_deployments_paginator() -> ListCustomModelDeploymentsPaginator:
    return Session().client("bedrock").get_paginator("list_custom_model_deployments")# ListCustomModelDeploymentsPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_bedrock.paginator import ListCustomModelDeploymentsPaginator
session = Session()
client = Session().client("bedrock")  # (1)
paginator: ListCustomModelDeploymentsPaginator = client.get_paginator("list_custom_model_deployments")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: BedrockClient
- paginator: ListCustomModelDeploymentsPaginator
- item: PageIterator[ListCustomModelDeploymentsResponseTypeDef]
paginate#
Type annotations and code completion for ListCustomModelDeploymentsPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    createdBefore: TimestampTypeDef = ...,
    createdAfter: TimestampTypeDef = ...,
    nameContains: str = ...,
    sortBy: SortModelsByType = ...,  # (1)
    sortOrder: SortOrderType = ...,  # (2)
    statusEquals: CustomModelDeploymentStatusType = ...,  # (3)
    modelArnEquals: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (4)
) -> botocore.paginate.PageIterator[ListCustomModelDeploymentsResponseTypeDef]:  # (5)
    ...- See SortModelsByType
- See SortOrderType
- See CustomModelDeploymentStatusType
- See PaginatorConfigTypeDef
- See PageIterator[ListCustomModelDeploymentsResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListCustomModelDeploymentsRequestPaginateTypeDef = {  # (1)
    "createdBefore": ...,
}
parent.paginate(**kwargs)ListCustomModelsPaginator#
Type annotations and code completion for boto3.client("bedrock").get_paginator("list_custom_models").
 boto3 documentation
# ListCustomModelsPaginator usage example
from boto3.session import Session
from types_boto3_bedrock.paginator import ListCustomModelsPaginator
def get_list_custom_models_paginator() -> ListCustomModelsPaginator:
    return Session().client("bedrock").get_paginator("list_custom_models")# ListCustomModelsPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_bedrock.paginator import ListCustomModelsPaginator
session = Session()
client = Session().client("bedrock")  # (1)
paginator: ListCustomModelsPaginator = client.get_paginator("list_custom_models")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: BedrockClient
- paginator: ListCustomModelsPaginator
- item: PageIterator[ListCustomModelsResponseTypeDef]
paginate#
Type annotations and code completion for ListCustomModelsPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    creationTimeBefore: TimestampTypeDef = ...,
    creationTimeAfter: TimestampTypeDef = ...,
    nameContains: str = ...,
    baseModelArnEquals: str = ...,
    foundationModelArnEquals: str = ...,
    sortBy: SortModelsByType = ...,  # (1)
    sortOrder: SortOrderType = ...,  # (2)
    isOwned: bool = ...,
    modelStatus: ModelStatusType = ...,  # (3)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (4)
) -> botocore.paginate.PageIterator[ListCustomModelsResponseTypeDef]:  # (5)
    ...- See SortModelsByType
- See SortOrderType
- See ModelStatusType
- See PaginatorConfigTypeDef
- See PageIterator[ListCustomModelsResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListCustomModelsRequestPaginateTypeDef = {  # (1)
    "creationTimeBefore": ...,
}
parent.paginate(**kwargs)ListEvaluationJobsPaginator#
Type annotations and code completion for boto3.client("bedrock").get_paginator("list_evaluation_jobs").
 boto3 documentation
# ListEvaluationJobsPaginator usage example
from boto3.session import Session
from types_boto3_bedrock.paginator import ListEvaluationJobsPaginator
def get_list_evaluation_jobs_paginator() -> ListEvaluationJobsPaginator:
    return Session().client("bedrock").get_paginator("list_evaluation_jobs")# ListEvaluationJobsPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_bedrock.paginator import ListEvaluationJobsPaginator
session = Session()
client = Session().client("bedrock")  # (1)
paginator: ListEvaluationJobsPaginator = client.get_paginator("list_evaluation_jobs")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: BedrockClient
- paginator: ListEvaluationJobsPaginator
- item: PageIterator[ListEvaluationJobsResponseTypeDef]
paginate#
Type annotations and code completion for ListEvaluationJobsPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    creationTimeAfter: TimestampTypeDef = ...,
    creationTimeBefore: TimestampTypeDef = ...,
    statusEquals: EvaluationJobStatusType = ...,  # (1)
    applicationTypeEquals: ApplicationTypeType = ...,  # (2)
    nameContains: str = ...,
    sortBy: SortJobsByType = ...,  # (3)
    sortOrder: SortOrderType = ...,  # (4)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (5)
) -> botocore.paginate.PageIterator[ListEvaluationJobsResponseTypeDef]:  # (6)
    ...- See EvaluationJobStatusType
- See ApplicationTypeType
- See SortJobsByType
- See SortOrderType
- See PaginatorConfigTypeDef
- See PageIterator[ListEvaluationJobsResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListEvaluationJobsRequestPaginateTypeDef = {  # (1)
    "creationTimeAfter": ...,
}
parent.paginate(**kwargs)ListGuardrailsPaginator#
Type annotations and code completion for boto3.client("bedrock").get_paginator("list_guardrails").
 boto3 documentation
# ListGuardrailsPaginator usage example
from boto3.session import Session
from types_boto3_bedrock.paginator import ListGuardrailsPaginator
def get_list_guardrails_paginator() -> ListGuardrailsPaginator:
    return Session().client("bedrock").get_paginator("list_guardrails")# ListGuardrailsPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_bedrock.paginator import ListGuardrailsPaginator
session = Session()
client = Session().client("bedrock")  # (1)
paginator: ListGuardrailsPaginator = client.get_paginator("list_guardrails")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: BedrockClient
- paginator: ListGuardrailsPaginator
- item: PageIterator[ListGuardrailsResponseTypeDef]
paginate#
Type annotations and code completion for ListGuardrailsPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    guardrailIdentifier: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListGuardrailsResponseTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListGuardrailsResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListGuardrailsRequestPaginateTypeDef = {  # (1)
    "guardrailIdentifier": ...,
}
parent.paginate(**kwargs)ListImportedModelsPaginator#
Type annotations and code completion for boto3.client("bedrock").get_paginator("list_imported_models").
 boto3 documentation
# ListImportedModelsPaginator usage example
from boto3.session import Session
from types_boto3_bedrock.paginator import ListImportedModelsPaginator
def get_list_imported_models_paginator() -> ListImportedModelsPaginator:
    return Session().client("bedrock").get_paginator("list_imported_models")# ListImportedModelsPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_bedrock.paginator import ListImportedModelsPaginator
session = Session()
client = Session().client("bedrock")  # (1)
paginator: ListImportedModelsPaginator = client.get_paginator("list_imported_models")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: BedrockClient
- paginator: ListImportedModelsPaginator
- item: PageIterator[ListImportedModelsResponseTypeDef]
paginate#
Type annotations and code completion for ListImportedModelsPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    creationTimeBefore: TimestampTypeDef = ...,
    creationTimeAfter: TimestampTypeDef = ...,
    nameContains: str = ...,
    sortBy: SortModelsByType = ...,  # (1)
    sortOrder: SortOrderType = ...,  # (2)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (3)
) -> botocore.paginate.PageIterator[ListImportedModelsResponseTypeDef]:  # (4)
    ...- See SortModelsByType
- See SortOrderType
- See PaginatorConfigTypeDef
- See PageIterator[ListImportedModelsResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListImportedModelsRequestPaginateTypeDef = {  # (1)
    "creationTimeBefore": ...,
}
parent.paginate(**kwargs)ListInferenceProfilesPaginator#
Type annotations and code completion for boto3.client("bedrock").get_paginator("list_inference_profiles").
 boto3 documentation
# ListInferenceProfilesPaginator usage example
from boto3.session import Session
from types_boto3_bedrock.paginator import ListInferenceProfilesPaginator
def get_list_inference_profiles_paginator() -> ListInferenceProfilesPaginator:
    return Session().client("bedrock").get_paginator("list_inference_profiles")# ListInferenceProfilesPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_bedrock.paginator import ListInferenceProfilesPaginator
session = Session()
client = Session().client("bedrock")  # (1)
paginator: ListInferenceProfilesPaginator = client.get_paginator("list_inference_profiles")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: BedrockClient
- paginator: ListInferenceProfilesPaginator
- item: PageIterator[ListInferenceProfilesResponseTypeDef]
paginate#
Type annotations and code completion for ListInferenceProfilesPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    typeEquals: InferenceProfileTypeType = ...,  # (1)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (2)
) -> botocore.paginate.PageIterator[ListInferenceProfilesResponseTypeDef]:  # (3)
    ...- See InferenceProfileTypeType
- See PaginatorConfigTypeDef
- See PageIterator[ListInferenceProfilesResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListInferenceProfilesRequestPaginateTypeDef = {  # (1)
    "typeEquals": ...,
}
parent.paginate(**kwargs)ListMarketplaceModelEndpointsPaginator#
Type annotations and code completion for boto3.client("bedrock").get_paginator("list_marketplace_model_endpoints").
 boto3 documentation
# ListMarketplaceModelEndpointsPaginator usage example
from boto3.session import Session
from types_boto3_bedrock.paginator import ListMarketplaceModelEndpointsPaginator
def get_list_marketplace_model_endpoints_paginator() -> ListMarketplaceModelEndpointsPaginator:
    return Session().client("bedrock").get_paginator("list_marketplace_model_endpoints")# ListMarketplaceModelEndpointsPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_bedrock.paginator import ListMarketplaceModelEndpointsPaginator
session = Session()
client = Session().client("bedrock")  # (1)
paginator: ListMarketplaceModelEndpointsPaginator = client.get_paginator("list_marketplace_model_endpoints")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: BedrockClient
- paginator: ListMarketplaceModelEndpointsPaginator
- item: PageIterator[ListMarketplaceModelEndpointsResponseTypeDef]
paginate#
Type annotations and code completion for ListMarketplaceModelEndpointsPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    modelSourceEquals: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListMarketplaceModelEndpointsResponseTypeDef]:  # (2)
    ...- See PaginatorConfigTypeDef
- See PageIterator[ListMarketplaceModelEndpointsResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListMarketplaceModelEndpointsRequestPaginateTypeDef = {  # (1)
    "modelSourceEquals": ...,
}
parent.paginate(**kwargs)ListModelCopyJobsPaginator#
Type annotations and code completion for boto3.client("bedrock").get_paginator("list_model_copy_jobs").
 boto3 documentation
# ListModelCopyJobsPaginator usage example
from boto3.session import Session
from types_boto3_bedrock.paginator import ListModelCopyJobsPaginator
def get_list_model_copy_jobs_paginator() -> ListModelCopyJobsPaginator:
    return Session().client("bedrock").get_paginator("list_model_copy_jobs")# ListModelCopyJobsPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_bedrock.paginator import ListModelCopyJobsPaginator
session = Session()
client = Session().client("bedrock")  # (1)
paginator: ListModelCopyJobsPaginator = client.get_paginator("list_model_copy_jobs")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: BedrockClient
- paginator: ListModelCopyJobsPaginator
- item: PageIterator[ListModelCopyJobsResponseTypeDef]
paginate#
Type annotations and code completion for ListModelCopyJobsPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    creationTimeAfter: TimestampTypeDef = ...,
    creationTimeBefore: TimestampTypeDef = ...,
    statusEquals: ModelCopyJobStatusType = ...,  # (1)
    sourceAccountEquals: str = ...,
    sourceModelArnEquals: str = ...,
    targetModelNameContains: str = ...,
    sortBy: SortJobsByType = ...,  # (2)
    sortOrder: SortOrderType = ...,  # (3)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (4)
) -> botocore.paginate.PageIterator[ListModelCopyJobsResponseTypeDef]:  # (5)
    ...- See ModelCopyJobStatusType
- See SortJobsByType
- See SortOrderType
- See PaginatorConfigTypeDef
- See PageIterator[ListModelCopyJobsResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListModelCopyJobsRequestPaginateTypeDef = {  # (1)
    "creationTimeAfter": ...,
}
parent.paginate(**kwargs)ListModelCustomizationJobsPaginator#
Type annotations and code completion for boto3.client("bedrock").get_paginator("list_model_customization_jobs").
 boto3 documentation
# ListModelCustomizationJobsPaginator usage example
from boto3.session import Session
from types_boto3_bedrock.paginator import ListModelCustomizationJobsPaginator
def get_list_model_customization_jobs_paginator() -> ListModelCustomizationJobsPaginator:
    return Session().client("bedrock").get_paginator("list_model_customization_jobs")# ListModelCustomizationJobsPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_bedrock.paginator import ListModelCustomizationJobsPaginator
session = Session()
client = Session().client("bedrock")  # (1)
paginator: ListModelCustomizationJobsPaginator = client.get_paginator("list_model_customization_jobs")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: BedrockClient
- paginator: ListModelCustomizationJobsPaginator
- item: PageIterator[ListModelCustomizationJobsResponseTypeDef]
paginate#
Type annotations and code completion for ListModelCustomizationJobsPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    creationTimeAfter: TimestampTypeDef = ...,
    creationTimeBefore: TimestampTypeDef = ...,
    statusEquals: FineTuningJobStatusType = ...,  # (1)
    nameContains: str = ...,
    sortBy: SortJobsByType = ...,  # (2)
    sortOrder: SortOrderType = ...,  # (3)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (4)
) -> botocore.paginate.PageIterator[ListModelCustomizationJobsResponseTypeDef]:  # (5)
    ...- See FineTuningJobStatusType
- See SortJobsByType
- See SortOrderType
- See PaginatorConfigTypeDef
- See PageIterator[ListModelCustomizationJobsResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListModelCustomizationJobsRequestPaginateTypeDef = {  # (1)
    "creationTimeAfter": ...,
}
parent.paginate(**kwargs)ListModelImportJobsPaginator#
Type annotations and code completion for boto3.client("bedrock").get_paginator("list_model_import_jobs").
 boto3 documentation
# ListModelImportJobsPaginator usage example
from boto3.session import Session
from types_boto3_bedrock.paginator import ListModelImportJobsPaginator
def get_list_model_import_jobs_paginator() -> ListModelImportJobsPaginator:
    return Session().client("bedrock").get_paginator("list_model_import_jobs")# ListModelImportJobsPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_bedrock.paginator import ListModelImportJobsPaginator
session = Session()
client = Session().client("bedrock")  # (1)
paginator: ListModelImportJobsPaginator = client.get_paginator("list_model_import_jobs")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: BedrockClient
- paginator: ListModelImportJobsPaginator
- item: PageIterator[ListModelImportJobsResponseTypeDef]
paginate#
Type annotations and code completion for ListModelImportJobsPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    creationTimeAfter: TimestampTypeDef = ...,
    creationTimeBefore: TimestampTypeDef = ...,
    statusEquals: ModelImportJobStatusType = ...,  # (1)
    nameContains: str = ...,
    sortBy: SortJobsByType = ...,  # (2)
    sortOrder: SortOrderType = ...,  # (3)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (4)
) -> botocore.paginate.PageIterator[ListModelImportJobsResponseTypeDef]:  # (5)
    ...- See ModelImportJobStatusType
- See SortJobsByType
- See SortOrderType
- See PaginatorConfigTypeDef
- See PageIterator[ListModelImportJobsResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListModelImportJobsRequestPaginateTypeDef = {  # (1)
    "creationTimeAfter": ...,
}
parent.paginate(**kwargs)ListModelInvocationJobsPaginator#
Type annotations and code completion for boto3.client("bedrock").get_paginator("list_model_invocation_jobs").
 boto3 documentation
# ListModelInvocationJobsPaginator usage example
from boto3.session import Session
from types_boto3_bedrock.paginator import ListModelInvocationJobsPaginator
def get_list_model_invocation_jobs_paginator() -> ListModelInvocationJobsPaginator:
    return Session().client("bedrock").get_paginator("list_model_invocation_jobs")# ListModelInvocationJobsPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_bedrock.paginator import ListModelInvocationJobsPaginator
session = Session()
client = Session().client("bedrock")  # (1)
paginator: ListModelInvocationJobsPaginator = client.get_paginator("list_model_invocation_jobs")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: BedrockClient
- paginator: ListModelInvocationJobsPaginator
- item: PageIterator[ListModelInvocationJobsResponseTypeDef]
paginate#
Type annotations and code completion for ListModelInvocationJobsPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    submitTimeAfter: TimestampTypeDef = ...,
    submitTimeBefore: TimestampTypeDef = ...,
    statusEquals: ModelInvocationJobStatusType = ...,  # (1)
    nameContains: str = ...,
    sortBy: SortJobsByType = ...,  # (2)
    sortOrder: SortOrderType = ...,  # (3)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (4)
) -> botocore.paginate.PageIterator[ListModelInvocationJobsResponseTypeDef]:  # (5)
    ...- See ModelInvocationJobStatusType
- See SortJobsByType
- See SortOrderType
- See PaginatorConfigTypeDef
- See PageIterator[ListModelInvocationJobsResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListModelInvocationJobsRequestPaginateTypeDef = {  # (1)
    "submitTimeAfter": ...,
}
parent.paginate(**kwargs)ListPromptRoutersPaginator#
Type annotations and code completion for boto3.client("bedrock").get_paginator("list_prompt_routers").
 boto3 documentation
# ListPromptRoutersPaginator usage example
from boto3.session import Session
from types_boto3_bedrock.paginator import ListPromptRoutersPaginator
def get_list_prompt_routers_paginator() -> ListPromptRoutersPaginator:
    return Session().client("bedrock").get_paginator("list_prompt_routers")# ListPromptRoutersPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_bedrock.paginator import ListPromptRoutersPaginator
session = Session()
client = Session().client("bedrock")  # (1)
paginator: ListPromptRoutersPaginator = client.get_paginator("list_prompt_routers")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: BedrockClient
- paginator: ListPromptRoutersPaginator
- item: PageIterator[ListPromptRoutersResponseTypeDef]
paginate#
Type annotations and code completion for ListPromptRoutersPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    type: PromptRouterTypeType = ...,  # (1)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (2)
) -> botocore.paginate.PageIterator[ListPromptRoutersResponseTypeDef]:  # (3)
    ...- See PromptRouterTypeType
- See PaginatorConfigTypeDef
- See PageIterator[ListPromptRoutersResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListPromptRoutersRequestPaginateTypeDef = {  # (1)
    "type": ...,
}
parent.paginate(**kwargs)ListProvisionedModelThroughputsPaginator#
Type annotations and code completion for boto3.client("bedrock").get_paginator("list_provisioned_model_throughputs").
 boto3 documentation
# ListProvisionedModelThroughputsPaginator usage example
from boto3.session import Session
from types_boto3_bedrock.paginator import ListProvisionedModelThroughputsPaginator
def get_list_provisioned_model_throughputs_paginator() -> ListProvisionedModelThroughputsPaginator:
    return Session().client("bedrock").get_paginator("list_provisioned_model_throughputs")# ListProvisionedModelThroughputsPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_bedrock.paginator import ListProvisionedModelThroughputsPaginator
session = Session()
client = Session().client("bedrock")  # (1)
paginator: ListProvisionedModelThroughputsPaginator = client.get_paginator("list_provisioned_model_throughputs")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)- client: BedrockClient
- paginator: ListProvisionedModelThroughputsPaginator
- item: PageIterator[ListProvisionedModelThroughputsResponseTypeDef]
paginate#
Type annotations and code completion for ListProvisionedModelThroughputsPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    creationTimeAfter: TimestampTypeDef = ...,
    creationTimeBefore: TimestampTypeDef = ...,
    statusEquals: ProvisionedModelStatusType = ...,  # (1)
    modelArnEquals: str = ...,
    nameContains: str = ...,
    sortBy: SortByProvisionedModelsType = ...,  # (2)
    sortOrder: SortOrderType = ...,  # (3)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (4)
) -> botocore.paginate.PageIterator[ListProvisionedModelThroughputsResponseTypeDef]:  # (5)
    ...- See ProvisionedModelStatusType
- See SortByProvisionedModelsType
- See SortOrderType
- See PaginatorConfigTypeDef
- See PageIterator[ListProvisionedModelThroughputsResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListProvisionedModelThroughputsRequestPaginateTypeDef = {  # (1)
    "creationTimeAfter": ...,
}
parent.paginate(**kwargs)