Member Junction
    Preparing search index...

    Action that transforms JSON data using JSONPath or JMESPath expressions Enables powerful querying and transformation of JSON structures

    // Extract values using JSONPath
    await runAction({
    ActionName: 'JSON Transform',
    Params: [{
    Name: 'InputData',
    Value: { users: [{ name: 'John', age: 30 }, { name: 'Jane', age: 25 }] }
    }, {
    Name: 'Expression',
    Value: '$.users[?(@.age > 26)].name'
    }]
    });

    // Transform using JMESPath
    await runAction({
    ActionName: 'JSON Transform',
    Params: [{
    Name: 'InputData',
    Value: { items: [{ price: 10, qty: 2 }, { price: 20, qty: 1 }] }
    }, {
    Name: 'Expression',
    Value: 'items[].{total: price * qty}'
    }, {
    Name: 'TransformType',
    Value: 'JMESPath'
    }]
    });

    Hierarchy (View Summary)

    Index

    Constructors

    Methods

    Constructors

    Methods