Skip to content

DynamoDBStreamsClient

Index > DynamoDBStreams > DynamoDBStreamsClient

Auto-generated documentation for DynamoDBStreams type annotations stubs module types-aiobotocore-dynamodbstreams.

DynamoDBStreamsClient

Type annotations and code completion for session.client("dynamodbstreams") boto3 documentation

Usage example
from aioboto3.session import Session
from types_aiobotocore_dynamodbstreams.client import DynamoDBStreamsClient

session = Session()
async with session.client("dynamodbstreams") as client:
    client: DynamoDBStreamsClient

Exceptions

aioboto3 client exceptions are generated in runtime. This class provides code completion for session.client("dynamodbstreams").exceptions structure.

Usage example
async with session.client("dynamodbstreams") as client:
    try:
        do_something(client)
    except (
            client.ClientError,
        client.ExpiredIteratorException,
        client.InternalServerError,
        client.LimitExceededException,
        client.ResourceNotFoundException,
        client.TrimmedDataAccessException,
    ) as e:
        print(e)
Type checking example
from types_aiobotocore_dynamodbstreams.client import Exceptions

def handle_error(exc: Exceptions.ClientError) -> None:
    ...

Methods

can_paginate

Check if an operation can be paginated.

Type annotations and code completion for session.client("dynamodbstreams").can_paginate method. boto3 documentation

Method definition
def can_paginate(
    self,
    operation_name: str,
) -> bool:
    ...

close

Closes underlying endpoint connections.

Type annotations and code completion for session.client("dynamodbstreams").close method. boto3 documentation

Method definition
await def close(
    self,
) -> None:
    ...

describe_stream

Returns information about a stream, including the current status of the stream, its Amazon Resource Name (ARN), the composition of its shards, and its corresponding DynamoDB table.

Type annotations and code completion for session.client("dynamodbstreams").describe_stream method. boto3 documentation

Method definition
await def describe_stream(
    self,
    *,
    StreamArn: str,
    Limit: int = ...,
    ExclusiveStartShardId: str = ...,
) -> DescribeStreamOutputTypeDef:  # (1)
    ...
  1. See DescribeStreamOutputTypeDef
Usage example with kwargs
kwargs: DescribeStreamInputRequestTypeDef = {  # (1)
    "StreamArn": ...,
}

parent.describe_stream(**kwargs)
  1. See DescribeStreamInputRequestTypeDef

generate_presigned_url

Generate a presigned url given a client, its method, and arguments.

Type annotations and code completion for session.client("dynamodbstreams").generate_presigned_url method. boto3 documentation

Method definition
await def generate_presigned_url(
    self,
    ClientMethod: str,
    Params: Mapping[str, Any] = ...,
    ExpiresIn: int = 3600,
    HttpMethod: str = ...,
) -> str:
    ...

get_records

Retrieves the stream records from a given shard.

Type annotations and code completion for session.client("dynamodbstreams").get_records method. boto3 documentation

Method definition
await def get_records(
    self,
    *,
    ShardIterator: str,
    Limit: int = ...,
) -> GetRecordsOutputTypeDef:  # (1)
    ...
  1. See GetRecordsOutputTypeDef
Usage example with kwargs
kwargs: GetRecordsInputRequestTypeDef = {  # (1)
    "ShardIterator": ...,
}

parent.get_records(**kwargs)
  1. See GetRecordsInputRequestTypeDef

get_shard_iterator

Returns a shard iterator.

Type annotations and code completion for session.client("dynamodbstreams").get_shard_iterator method. boto3 documentation

Method definition
await def get_shard_iterator(
    self,
    *,
    StreamArn: str,
    ShardId: str,
    ShardIteratorType: ShardIteratorTypeType,  # (1)
    SequenceNumber: str = ...,
) -> GetShardIteratorOutputTypeDef:  # (2)
    ...
  1. See ShardIteratorTypeType
  2. See GetShardIteratorOutputTypeDef
Usage example with kwargs
kwargs: GetShardIteratorInputRequestTypeDef = {  # (1)
    "StreamArn": ...,
    "ShardId": ...,
    "ShardIteratorType": ...,
}

parent.get_shard_iterator(**kwargs)
  1. See GetShardIteratorInputRequestTypeDef

list_streams

Returns an array of stream ARNs associated with the current account and endpoint.

Type annotations and code completion for session.client("dynamodbstreams").list_streams method. boto3 documentation

Method definition
await def list_streams(
    self,
    *,
    TableName: str = ...,
    Limit: int = ...,
    ExclusiveStartStreamArn: str = ...,
) -> ListStreamsOutputTypeDef:  # (1)
    ...
  1. See ListStreamsOutputTypeDef
Usage example with kwargs
kwargs: ListStreamsInputRequestTypeDef = {  # (1)
    "TableName": ...,
}

parent.list_streams(**kwargs)
  1. See ListStreamsInputRequestTypeDef

__aenter__

Type annotations and code completion for session.client("dynamodbstreams").__aenter__ method. boto3 documentation

Method definition
await def __aenter__(
    self,
) -> DynamoDBStreamsClient:
    ...

__aexit__

Type annotations and code completion for session.client("dynamodbstreams").__aexit__ method. boto3 documentation

Method definition
await def __aexit__(
    self,
    exc_type: Any,
    exc_val: Any,
    exc_tb: Any,
) -> Any:
    ...