@patternmeshjs/streams
    Preparing search index...

    Interface DynamoDBAttributeValue

    Minimal DynamoDB stream record shapes.

    These are intentionally inlined (and not imported from aws-lambda) so that consumers do not need @types/aws-lambda to use this package. The shapes are structurally compatible with the aws-lambda types, so you can pass a value typed as DynamoDBStreamEvent from aws-lambda directly to this package.

    interface DynamoDBAttributeValue {
        B?: string;
        BOOL?: boolean;
        BS?: readonly string[];
        L?: readonly DynamoDBAttributeValue[];
        M?: { readonly [key: string]: DynamoDBAttributeValue };
        N?: string;
        NS?: readonly string[];
        NULL?: boolean;
        S?: string;
        SS?: readonly string[];
    }
    Index

    Properties

    Properties

    B?: string
    BOOL?: boolean
    BS?: readonly string[]
    L?: readonly DynamoDBAttributeValue[]
    M?: { readonly [key: string]: DynamoDBAttributeValue }
    N?: string
    NS?: readonly string[]
    NULL?: boolean
    S?: string
    SS?: readonly string[]