CCC Docs
    Preparing search index...

    Type Alias UdtConfigLike

    Configuration object type for UDT instances. This type defines the optional configuration parameters that can be passed when creating a UDT instance to customize its behavior.

    type UdtConfigLike = {
        executor?: Executor | null;
        filter?: ClientIndexerSearchKeyFilterLike | null;
    }
    Index

    Properties

    Properties

    executor?: Executor | null

    Optional SSRI executor instance for advanced UDT operations. When provided, enables SSRI-compliant features like metadata queries and advanced transfer operations.

    Optional custom search filter for finding UDT cells. If not provided, a default filter will be created that matches cells with the UDT's type script and valid output data length.