Paginators#
Auto-generated documentation for Proton type annotations stubs module mypy-boto3-proton.
ListComponentOutputsPaginator#
Type annotations and code completion for boto3.client("proton").get_paginator("list_component_outputs")
.
boto3 documentation
# ListComponentOutputsPaginator usage example
from boto3.session import Session
from mypy_boto3_proton.paginator import ListComponentOutputsPaginator
def get_list_component_outputs_paginator() -> ListComponentOutputsPaginator:
return Session().client("proton").get_paginator("list_component_outputs")
# ListComponentOutputsPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_proton.paginator import ListComponentOutputsPaginator
session = Session()
client = Session().client("proton") # (1)
paginator: ListComponentOutputsPaginator = client.get_paginator("list_component_outputs") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: ProtonClient
- paginator: ListComponentOutputsPaginator
- item: ListComponentOutputsOutputTypeDef
paginate#
Type annotations and code completion for ListComponentOutputsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
componentName: str,
deploymentId: str = ...,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListComponentOutputsOutputTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListComponentOutputsInputListComponentOutputsPaginateTypeDef = { # (1)
"componentName": ...,
}
parent.paginate(**kwargs)
ListComponentProvisionedResourcesPaginator#
Type annotations and code completion for boto3.client("proton").get_paginator("list_component_provisioned_resources")
.
boto3 documentation
# ListComponentProvisionedResourcesPaginator usage example
from boto3.session import Session
from mypy_boto3_proton.paginator import ListComponentProvisionedResourcesPaginator
def get_list_component_provisioned_resources_paginator() -> ListComponentProvisionedResourcesPaginator:
return Session().client("proton").get_paginator("list_component_provisioned_resources")
# ListComponentProvisionedResourcesPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_proton.paginator import ListComponentProvisionedResourcesPaginator
session = Session()
client = Session().client("proton") # (1)
paginator: ListComponentProvisionedResourcesPaginator = client.get_paginator("list_component_provisioned_resources") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: ProtonClient
- paginator: ListComponentProvisionedResourcesPaginator
- item: ListComponentProvisionedResourcesOutputTypeDef
paginate#
Type annotations and code completion for ListComponentProvisionedResourcesPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
componentName: str,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListComponentProvisionedResourcesOutputTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListComponentProvisionedResourcesInputListComponentProvisionedResourcesPaginateTypeDef = { # (1)
"componentName": ...,
}
parent.paginate(**kwargs)
ListComponentsPaginator#
Type annotations and code completion for boto3.client("proton").get_paginator("list_components")
.
boto3 documentation
# ListComponentsPaginator usage example
from boto3.session import Session
from mypy_boto3_proton.paginator import ListComponentsPaginator
def get_list_components_paginator() -> ListComponentsPaginator:
return Session().client("proton").get_paginator("list_components")
# ListComponentsPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_proton.paginator import ListComponentsPaginator
session = Session()
client = Session().client("proton") # (1)
paginator: ListComponentsPaginator = client.get_paginator("list_components") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: ProtonClient
- paginator: ListComponentsPaginator
- item: ListComponentsOutputTypeDef
paginate#
Type annotations and code completion for ListComponentsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
environmentName: str = ...,
serviceInstanceName: str = ...,
serviceName: str = ...,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListComponentsOutputTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListComponentsInputListComponentsPaginateTypeDef = { # (1)
"environmentName": ...,
}
parent.paginate(**kwargs)
ListDeploymentsPaginator#
Type annotations and code completion for boto3.client("proton").get_paginator("list_deployments")
.
boto3 documentation
# ListDeploymentsPaginator usage example
from boto3.session import Session
from mypy_boto3_proton.paginator import ListDeploymentsPaginator
def get_list_deployments_paginator() -> ListDeploymentsPaginator:
return Session().client("proton").get_paginator("list_deployments")
# ListDeploymentsPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_proton.paginator import ListDeploymentsPaginator
session = Session()
client = Session().client("proton") # (1)
paginator: ListDeploymentsPaginator = client.get_paginator("list_deployments") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: ProtonClient
- paginator: ListDeploymentsPaginator
- item: ListDeploymentsOutputTypeDef
paginate#
Type annotations and code completion for ListDeploymentsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
componentName: str = ...,
environmentName: str = ...,
serviceInstanceName: str = ...,
serviceName: str = ...,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListDeploymentsOutputTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListDeploymentsInputListDeploymentsPaginateTypeDef = { # (1)
"componentName": ...,
}
parent.paginate(**kwargs)
ListEnvironmentAccountConnectionsPaginator#
Type annotations and code completion for boto3.client("proton").get_paginator("list_environment_account_connections")
.