SetDataValues Transformation

  • A builder for creating TransformationSettings that configure a SetDataValues transformer.

    This builder lets you define operations that copy values between paths in the dispatch payload or set constant values at specific destinations.

    Example:

    let settings = SetDataValuesSettingsBuilder(id: "my-transform")
        .setFrom(.key("source"), to: .key("dest"))
        .setConstant("hello", to: .key("greeting"))
        .setScope(.afterCollectors)
        .build()
    
    See more

    Declaration

    Swift

    public class SetDataValuesSettingsBuilder : TransformationSettingsBuilder