Skip to content

Paginators#

Index > RedshiftServerless > Paginators

Auto-generated documentation for RedshiftServerless type annotations stubs module mypy-boto3-redshift-serverless.

ListCustomDomainAssociationsPaginator#

Type annotations and code completion for boto3.client("redshift-serverless").get_paginator("list_custom_domain_associations"). boto3 documentation

# ListCustomDomainAssociationsPaginator usage example

from boto3.session import Session

from mypy_boto3_redshift_serverless.paginator import ListCustomDomainAssociationsPaginator

def get_list_custom_domain_associations_paginator() -> ListCustomDomainAssociationsPaginator:
    return Session().client("redshift-serverless").get_paginator("list_custom_domain_associations")
# ListCustomDomainAssociationsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_redshift_serverless.paginator import ListCustomDomainAssociationsPaginator

session = Session()

client = Session().client("redshift-serverless")  # (1)
paginator: ListCustomDomainAssociationsPaginator = client.get_paginator("list_custom_domain_associations")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: RedshiftServerlessClient
  2. paginator: ListCustomDomainAssociationsPaginator
  3. item: ListCustomDomainAssociationsResponseTypeDef

paginate#

Type annotations and code completion for ListCustomDomainAssociationsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    customDomainCertificateArn: str = ...,
    customDomainName: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> _PageIterator[ListCustomDomainAssociationsResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListCustomDomainAssociationsResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: ListCustomDomainAssociationsRequestListCustomDomainAssociationsPaginateTypeDef = {  # (1)
    "customDomainCertificateArn": ...,
}

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

ListEndpointAccessPaginator#

Type annotations and code completion for boto3.client("redshift-serverless").get_paginator("list_endpoint_access"). boto3 documentation

# ListEndpointAccessPaginator usage example

from boto3.session import Session

from mypy_boto3_redshift_serverless.paginator import ListEndpointAccessPaginator

def get_list_endpoint_access_paginator() -> ListEndpointAccessPaginator:
    return Session().client("redshift-serverless").get_paginator("list_endpoint_access")
# ListEndpointAccessPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_redshift_serverless.paginator import ListEndpointAccessPaginator

session = Session()

client = Session().client("redshift-serverless")  # (1)
paginator: ListEndpointAccessPaginator = client.get_paginator("list_endpoint_access")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: RedshiftServerlessClient
  2. paginator: ListEndpointAccessPaginator
  3. item: ListEndpointAccessResponseTypeDef

paginate#

Type annotations and code completion for ListEndpointAccessPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    ownerAccount: str = ...,
    vpcId: str = ...,
    workgroupName: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> _PageIterator[ListEndpointAccessResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListEndpointAccessResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: ListEndpointAccessRequestListEndpointAccessPaginateTypeDef = {  # (1)
    "ownerAccount": ...,
}

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

ListNamespacesPaginator#

Type annotations and code completion for boto3.client("redshift-serverless").get_paginator("list_namespaces"). boto3 documentation

# ListNamespacesPaginator usage example

from boto3.session import Session

from mypy_boto3_redshift_serverless.paginator import ListNamespacesPaginator

def get_list_namespaces_paginator() -> ListNamespacesPaginator:
    return Session().client("redshift-serverless").get_paginator("list_namespaces")
# ListNamespacesPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_redshift_serverless.paginator import ListNamespacesPaginator

session = Session()

client = Session().client("redshift-serverless")  # (1)
paginator: ListNamespacesPaginator = client.get_paginator("list_namespaces")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: RedshiftServerlessClient
  2. paginator: ListNamespacesPaginator
  3. item: ListNamespacesResponseTypeDef

paginate#

Type annotations and code completion for ListNamespacesPaginator.paginate method.

# paginate method definition

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

kwargs: ListNamespacesRequestListNamespacesPaginateTypeDef = {  # (1)
    "PaginationConfig": ...,
}

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

ListRecoveryPointsPaginator#

Type annotations and code completion for boto3.client("redshift-serverless").get_paginator("list_recovery_points"). boto3 documentation

# ListRecoveryPointsPaginator usage example

from boto3.session import Session

from mypy_boto3_redshift_serverless.paginator import ListRecoveryPointsPaginator

def get_list_recovery_points_paginator() -> ListRecoveryPointsPaginator:
    return Session().client("redshift-serverless").get_paginator("list_recovery_points")
# ListRecoveryPointsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_redshift_serverless.paginator import ListRecoveryPointsPaginator

session = Session()

client = Session().client("redshift-serverless")  # (1)
paginator: ListRecoveryPointsPaginator = client.get_paginator("list_recovery_points")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: RedshiftServerlessClient
  2. paginator: ListRecoveryPointsPaginator
  3. item: ListRecoveryPointsResponseTypeDef

paginate#

Type annotations and code completion for ListRecoveryPointsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    endTime: Union[datetime, str] = ...,
    namespaceArn: str = ...,
    namespaceName: str = ...,
    startTime: Union[datetime, str] = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> _PageIterator[ListRecoveryPointsResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListRecoveryPointsResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: ListRecoveryPointsRequestListRecoveryPointsPaginateTypeDef = {  # (1)
    "endTime": ...,
}

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

ListScheduledActionsPaginator#

Type annotations and code completion for boto3.client("redshift-serverless").get_paginator("list_scheduled_actions"). boto3 documentation

# ListScheduledActionsPaginator usage example

from boto3.session import Session

from mypy_boto3_redshift_serverless.paginator import ListScheduledActionsPaginator

def get_list_scheduled_actions_paginator() -> ListScheduledActionsPaginator:
    return Session().client("redshift-serverless").get_paginator("list_scheduled_actions")
# ListScheduledActionsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_redshift_serverless.paginator import ListScheduledActionsPaginator

session = Session()

client = Session().client("redshift-serverless")  # (1)
paginator: ListScheduledActionsPaginator = client.get_paginator("list_scheduled_actions")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: RedshiftServerlessClient
  2. paginator: ListScheduledActionsPaginator
  3. item: ListScheduledActionsResponseTypeDef

paginate#

Type annotations and code completion for ListScheduledActionsPaginator.paginate method.

# paginate method definition

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

kwargs: ListScheduledActionsRequestListScheduledActionsPaginateTypeDef = {  # (1)
    "namespaceName": ...,
}

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

ListSnapshotCopyConfigurationsPaginator#

Type annotations and code completion for boto3.client("redshift-serverless").get_paginator("list_snapshot_copy_configurations"). boto3 documentation

# ListSnapshotCopyConfigurationsPaginator usage example

from boto3.session import Session

from mypy_boto3_redshift_serverless.paginator import ListSnapshotCopyConfigurationsPaginator

def get_list_snapshot_copy_configurations_paginator() -> ListSnapshotCopyConfigurationsPaginator:
    return Session().client("redshift-serverless").get_paginator("list_snapshot_copy_configurations")
# ListSnapshotCopyConfigurationsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_redshift_serverless.paginator import ListSnapshotCopyConfigurationsPaginator

session = Session()

client = Session().client("redshift-serverless")  # (1)
paginator: ListSnapshotCopyConfigurationsPaginator = client.get_paginator("list_snapshot_copy_configurations")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: RedshiftServerlessClient
  2. paginator: ListSnapshotCopyConfigurationsPaginator
  3. item: ListSnapshotCopyConfigurationsResponseTypeDef

paginate#

Type annotations and code completion for ListSnapshotCopyConfigurationsPaginator.paginate method.

# paginate method definition

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

kwargs: ListSnapshotCopyConfigurationsRequestListSnapshotCopyConfigurationsPaginateTypeDef = {  # (1)
    "namespaceName": ...,
}

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

ListSnapshotsPaginator#

Type annotations and code completion for boto3.client("redshift-serverless").get_paginator("list_snapshots"). boto3 documentation

# ListSnapshotsPaginator usage example

from boto3.session import Session

from mypy_boto3_redshift_serverless.paginator import ListSnapshotsPaginator

def get_list_snapshots_paginator() -> ListSnapshotsPaginator:
    return Session().client("redshift-serverless").get_paginator("list_snapshots")
# ListSnapshotsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_redshift_serverless.paginator import ListSnapshotsPaginator

session = Session()

client = Session().client("redshift-serverless")  # (1)
paginator: ListSnapshotsPaginator = client.get_paginator("list_snapshots")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: RedshiftServerlessClient
  2. paginator: ListSnapshotsPaginator
  3. item: ListSnapshotsResponseTypeDef

paginate#

Type annotations and code completion for ListSnapshotsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    endTime: Union[datetime, str] = ...,
    namespaceArn: str = ...,
    namespaceName: str = ...,
    ownerAccount: str = ...,
    startTime: Union[datetime, str] = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> _PageIterator[ListSnapshotsResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListSnapshotsResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: ListSnapshotsRequestListSnapshotsPaginateTypeDef = {  # (1)
    "endTime": ...,
}

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

ListTableRestoreStatusPaginator#

Type annotations and code completion for boto3.client("redshift-serverless").get_paginator("list_table_restore_status"). boto3 documentation

# ListTableRestoreStatusPaginator usage example

from boto3.session import Session

from mypy_boto3_redshift_serverless.paginator import ListTableRestoreStatusPaginator

def get_list_table_restore_status_paginator() -> ListTableRestoreStatusPaginator:
    return Session().client("redshift-serverless").get_paginator("list_table_restore_status")
# ListTableRestoreStatusPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_redshift_serverless.paginator import ListTableRestoreStatusPaginator

session = Session()

client = Session().client("redshift-serverless")  # (1)
paginator: ListTableRestoreStatusPaginator = client.get_paginator("list_table_restore_status")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: RedshiftServerlessClient
  2. paginator: ListTableRestoreStatusPaginator
  3. item: ListTableRestoreStatusResponseTypeDef

paginate#

Type annotations and code completion for ListTableRestoreStatusPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    namespaceName: str = ...,
    workgroupName: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> _PageIterator[ListTableRestoreStatusResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListTableRestoreStatusResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: ListTableRestoreStatusRequestListTableRestoreStatusPaginateTypeDef = {  # (1)
    "namespaceName": ...,
}

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

ListUsageLimitsPaginator#

Type annotations and code completion for boto3.client("redshift-serverless").get_paginator("list_usage_limits"). boto3 documentation

# ListUsageLimitsPaginator usage example

from boto3.session import Session

from mypy_boto3_redshift_serverless.paginator import ListUsageLimitsPaginator

def get_list_usage_limits_paginator() -> ListUsageLimitsPaginator:
    return Session().client("redshift-serverless").get_paginator("list_usage_limits")
# ListUsageLimitsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_redshift_serverless.paginator import ListUsageLimitsPaginator

session = Session()

client = Session().client("redshift-serverless")  # (1)
paginator: ListUsageLimitsPaginator = client.get_paginator("list_usage_limits")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: RedshiftServerlessClient
  2. paginator: ListUsageLimitsPaginator
  3. item: ListUsageLimitsResponseTypeDef

paginate#

Type annotations and code completion for ListUsageLimitsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    resourceArn: str = ...,
    usageType: UsageLimitUsageTypeType = ...,  # (1)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (2)
) -> _PageIterator[ListUsageLimitsResponseTypeDef]:  # (3)
    ...
  1. See UsageLimitUsageTypeType
  2. See PaginatorConfigTypeDef
  3. See ListUsageLimitsResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: ListUsageLimitsRequestListUsageLimitsPaginateTypeDef = {  # (1)
    "resourceArn": ...,
}

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

ListWorkgroupsPaginator#

Type annotations and code completion for boto3.client("redshift-serverless").get_paginator("list_workgroups"). boto3 documentation

# ListWorkgroupsPaginator usage example

from boto3.session import Session

from mypy_boto3_redshift_serverless.paginator import ListWorkgroupsPaginator

def get_list_workgroups_paginator() -> ListWorkgroupsPaginator:
    return Session().client("redshift-serverless").get_paginator("list_workgroups")
# ListWorkgroupsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_redshift_serverless.paginator import ListWorkgroupsPaginator

session = Session()

client = Session().client("redshift-serverless")  # (1)
paginator: ListWorkgroupsPaginator = client.get_paginator("list_workgroups")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: RedshiftServerlessClient
  2. paginator: ListWorkgroupsPaginator
  3. item: ListWorkgroupsResponseTypeDef

paginate#

Type annotations and code completion for ListWorkgroupsPaginator.paginate method.

# paginate method definition

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

kwargs: ListWorkgroupsRequestListWorkgroupsPaginateTypeDef = {  # (1)
    "ownerAccount": ...,
}

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