Skip to content

Literals#

Index > DynamoDBStreams > Literals

Auto-generated documentation for DynamoDBStreams type annotations stubs module mypy-boto3-dynamodbstreams.

KeyTypeType#

# KeyTypeType usage example

from mypy_boto3_dynamodbstreams.literals import KeyTypeType

def get_value() -> KeyTypeType:
    return "HASH"
# KeyTypeType definition

KeyTypeType = Literal[
    "HASH",
    "RANGE",
]

OperationTypeType#

# OperationTypeType usage example

from mypy_boto3_dynamodbstreams.literals import OperationTypeType

def get_value() -> OperationTypeType:
    return "INSERT"
# OperationTypeType definition

OperationTypeType = Literal[
    "INSERT",
    "MODIFY",
    "REMOVE",
]

ShardIteratorTypeType#