TranscodeAttributeTypeMap<T>: {
    [P in keyof Exactify<T> as T[P] extends string
        ? never
        : P]?: ScalarAttributeType
}

Maps non-string transcodes to a DynamoDB ScalarAttributeType.

Type Parameters